Source Code
Overview
MON Balance
MON Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
HypXERC20
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
import {IXERC20} from "../interfaces/IXERC20.sol";
import {HypERC20Collateral} from "../HypERC20Collateral.sol";
contract HypXERC20 is HypERC20Collateral {
constructor(
address _xerc20,
uint256 _scale,
address _mailbox
) HypERC20Collateral(_xerc20, _scale, _mailbox) {
_disableInitializers();
}
function _transferFromSender(
uint256 _amountOrId
) internal override returns (bytes memory metadata) {
IXERC20(address(wrappedToken)).burn(msg.sender, _amountOrId);
return "";
}
function _transferTo(
address _recipient,
uint256 _amountOrId,
bytes calldata /*metadata*/
) internal override {
IXERC20(address(wrappedToken)).mint(_recipient, _amountOrId);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;
// adapted from https://github.com/defi-wonderland/xERC20
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IXERC20 is IERC20 {
/**
* @notice Mints tokens for a user
* @dev Can only be called by a minter
* @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 minter
* @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 Updates the limits of any bridge
* @dev Can only be called by the owner
* @param _mintingLimit The updated minting limit we are setting to the bridge
* @param _burningLimit The updated burning limit we are setting to the bridge
* @param _bridge The address of the bridge we are setting the limits too
*/
function setLimits(
address _bridge,
uint256 _mintingLimit,
uint256 _burningLimit
) external;
function owner() external returns (address);
/**
* @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 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 max limit of a minter
*
* @param _minter The minter we are viewing the limits of
* @return _limit The limit the minter has
*/
function mintingMaxLimitOf(
address _minter
) 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);
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
/*@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@ HYPERLANE @@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@*/
// ============ Internal Imports ============
import {TokenMessage} from "./libs/TokenMessage.sol";
import {TokenRouter} from "./libs/TokenRouter.sol";
import {FungibleTokenRouter} from "./libs/FungibleTokenRouter.sol";
import {MovableCollateralRouter} from "./libs/MovableCollateralRouter.sol";
import {ValueTransferBridge} from "./interfaces/ValueTransferBridge.sol";
// ============ External Imports ============
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {Context} from "@openzeppelin/contracts/utils/Context.sol";
import {ContextUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import {Quote} from "../interfaces/ITokenBridge.sol";
/**
* @title Hyperlane ERC20 Token Collateral that wraps an existing ERC20 with remote transfer functionality.
* @author Abacus Works
*/
contract HypERC20Collateral is MovableCollateralRouter {
using SafeERC20 for IERC20;
IERC20 public immutable wrappedToken;
/**
* @notice Constructor
* @param erc20 Address of the token to keep as collateral
*/
constructor(
address erc20,
uint256 _scale,
address _mailbox
) FungibleTokenRouter(_scale, _mailbox) {
require(Address.isContract(erc20), "HypERC20Collateral: invalid token");
wrappedToken = IERC20(erc20);
}
function initialize(
address _hook,
address _interchainSecurityModule,
address _owner
) public virtual initializer {
_MailboxClient_initialize(_hook, _interchainSecurityModule, _owner);
}
function balanceOf(
address _account
) external view override returns (uint256) {
return wrappedToken.balanceOf(_account);
}
function quoteTransferRemote(
uint32 _destinationDomain,
bytes32 _recipient,
uint256 _amount
) external view virtual override returns (Quote[] memory quotes) {
quotes = new Quote[](2);
quotes[0] = Quote({
token: address(0),
amount: _quoteGasPayment(_destinationDomain, _recipient, _amount)
});
quotes[1] = Quote({token: address(wrappedToken), amount: _amount});
}
/**
* @dev Transfers `_amount` of `wrappedToken` from `msg.sender` to this contract.
* @inheritdoc TokenRouter
*/
function _transferFromSender(
uint256 _amount
) internal virtual override returns (bytes memory) {
wrappedToken.safeTransferFrom(msg.sender, address(this), _amount);
return bytes(""); // no metadata
}
/**
* @dev Transfers `_amount` of `wrappedToken` from this contract to `_recipient`.
* @inheritdoc TokenRouter
*/
function _transferTo(
address _recipient,
uint256 _amount,
bytes calldata // no metadata
) internal virtual override {
wrappedToken.safeTransfer(_recipient, _amount);
}
function _rebalance(
uint32 domain,
bytes32 recipient,
uint256 amount,
ValueTransferBridge bridge
) internal override {
wrappedToken.safeApprove({spender: address(bridge), value: amount});
MovableCollateralRouter._rebalance({
domain: domain,
recipient: recipient,
amount: amount,
bridge: bridge
});
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
library TokenMessage {
uint8 internal constant RECIPIENT_OFFSET = 0;
uint8 internal constant AMOUNT_OFFSET = 32;
uint8 internal constant METADATA_OFFSET = 64;
function format(
bytes32 _recipient,
uint256 _amount,
bytes memory _metadata
) internal pure returns (bytes memory) {
return abi.encodePacked(_recipient, _amount, _metadata);
}
function format(
bytes32 _recipient,
uint256 _amount
) internal pure returns (bytes memory) {
return abi.encodePacked(_recipient, _amount);
}
function recipient(bytes calldata message) internal pure returns (bytes32) {
return bytes32(message[RECIPIENT_OFFSET:RECIPIENT_OFFSET + 32]);
}
function amount(bytes calldata message) internal pure returns (uint256) {
return uint256(bytes32(message[AMOUNT_OFFSET:AMOUNT_OFFSET + 32]));
}
// alias for ERC721
function tokenId(bytes calldata message) internal pure returns (uint256) {
return amount(message);
}
function metadata(
bytes calldata message
) internal pure returns (bytes calldata) {
return message[METADATA_OFFSET:];
}
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
// ============ Internal Imports ============
import {TypeCasts} from "../../libs/TypeCasts.sol";
import {GasRouter} from "../../client/GasRouter.sol";
import {TokenMessage} from "./TokenMessage.sol";
import {Quote, ITokenBridge} from "../../interfaces/ITokenBridge.sol";
/**
* @title Hyperlane Token Router that extends Router with abstract token (ERC20/ERC721) remote transfer functionality.
* @author Abacus Works
*/
abstract contract TokenRouter is GasRouter, ITokenBridge {
using TypeCasts for bytes32;
using TypeCasts for address;
using TokenMessage for bytes;
/**
* @dev Emitted on `transferRemote` when a transfer message is dispatched.
* @param destination The identifier of the destination chain.
* @param recipient The address of the recipient on the destination chain.
* @param amount The amount of tokens sent in to the remote recipient.
*/
event SentTransferRemote(
uint32 indexed destination,
bytes32 indexed recipient,
uint256 amount
);
/**
* @dev Emitted on `_handle` when a transfer message is processed.
* @param origin The identifier of the origin chain.
* @param recipient The address of the recipient on the destination chain.
* @param amount The amount of tokens received from the remote sender.
*/
event ReceivedTransferRemote(
uint32 indexed origin,
bytes32 indexed recipient,
uint256 amount
);
constructor(address _mailbox) GasRouter(_mailbox) {}
/**
* @notice Transfers `_amountOrId` token to `_recipient` on `_destination` domain.
* @dev Delegates transfer logic to `_transferFromSender` implementation.
* @dev Emits `SentTransferRemote` event on the origin chain.
* @param _destination The identifier of the destination chain.
* @param _recipient The address of the recipient on the destination chain.
* @param _amountOrId The amount or identifier of tokens to be sent to the remote recipient.
* @return messageId The identifier of the dispatched message.
*/
function transferRemote(
uint32 _destination,
bytes32 _recipient,
uint256 _amountOrId
) external payable virtual returns (bytes32 messageId) {
return
_transferRemote(_destination, _recipient, _amountOrId, msg.value);
}
/**
* @notice Transfers `_amountOrId` token to `_recipient` on `_destination` domain with a specified hook
* @dev Delegates transfer logic to `_transferFromSender` implementation.
* @dev The metadata is the token metadata, and is DIFFERENT than the hook metadata.
* @dev Emits `SentTransferRemote` event on the origin chain.
* @param _destination The identifier of the destination chain.
* @param _recipient The address of the recipient on the destination chain.
* @param _amountOrId The amount or identifier of tokens to be sent to the remote recipient.
* @param _hookMetadata The metadata passed into the hook
* @param _hook The post dispatch hook to be called by the Mailbox
* @return messageId The identifier of the dispatched message.
*/
function transferRemote(
uint32 _destination,
bytes32 _recipient,
uint256 _amountOrId,
bytes calldata _hookMetadata,
address _hook
) external payable virtual returns (bytes32 messageId) {
return
_transferRemote(
_destination,
_recipient,
_amountOrId,
msg.value,
_hookMetadata,
_hook
);
}
function _transferRemote(
uint32 _destination,
bytes32 _recipient,
uint256 _amountOrId,
uint256 _value
) internal returns (bytes32 messageId) {
return
_transferRemote(
_destination,
_recipient,
_amountOrId,
_value,
_GasRouter_hookMetadata(_destination),
address(hook)
);
}
function _transferRemote(
uint32 _destination,
bytes32 _recipient,
uint256 _amountOrId,
uint256 _value,
bytes memory _hookMetadata,
address _hook
) internal virtual returns (bytes32 messageId) {
bytes memory _tokenMetadata = _transferFromSender(_amountOrId);
uint256 outboundAmount = _outboundAmount(_amountOrId);
bytes memory _tokenMessage = TokenMessage.format(
_recipient,
outboundAmount,
_tokenMetadata
);
messageId = _Router_dispatch(
_destination,
_value,
_tokenMessage,
_hookMetadata,
_hook
);
emit SentTransferRemote(_destination, _recipient, outboundAmount);
}
/**
* @dev Should return the amount of tokens to be encoded in the message amount (eg for scaling `_localAmount`).
* @param _localAmount The amount of tokens transferred on this chain in local denomination.
* @return _messageAmount The amount of tokens to be encoded in the message body.
*/
function _outboundAmount(
uint256 _localAmount
) internal view virtual returns (uint256 _messageAmount) {
_messageAmount = _localAmount;
}
/**
* @dev Should return the amount of tokens to be decoded from the message amount.
* @param _messageAmount The amount of tokens received in the message body.
* @return _localAmount The amount of tokens to be transferred on this chain in local denomination.
*/
function _inboundAmount(
uint256 _messageAmount
) internal view virtual returns (uint256 _localAmount) {
_localAmount = _messageAmount;
}
/**
* @dev Should transfer `_amountOrId` of tokens from `msg.sender` to this token router.
* @dev Called by `transferRemote` before message dispatch.
* @dev Optionally returns `metadata` associated with the transfer to be passed in message.
*/
function _transferFromSender(
uint256 _amountOrId
) internal virtual returns (bytes memory metadata);
/**
* @notice Returns the balance of `account` on this token router.
* @param account The address to query the balance of.
* @return The balance of `account`.
*/
function balanceOf(address account) external virtual returns (uint256);
/**
* @notice Returns the gas payment required to dispatch a message to the given domain's router.
* @param _destination The domain of the router.
* @param _recipient The address of the recipient on the destination chain.
* @param _amount The amount of tokens to be sent to the remote recipient.
* @dev This should be overridden for warp routes that require additional fees/approvals.
* @return quotes Indicate how much of each token to approve and/or send.
*/
function quoteTransferRemote(
uint32 _destination,
bytes32 _recipient,
uint256 _amount
) external view virtual override returns (Quote[] memory quotes) {
quotes = new Quote[](1);
quotes[0] = Quote({
token: address(0),
amount: _quoteGasPayment(_destination, _recipient, _amount)
});
}
/**
* DEPRECATED: Use `quoteTransferRemote` instead.
* @notice Returns the gas payment required to dispatch a message to the given domain's router.
* @param _destinationDomain The domain of the router.
* @dev Assumes bytes32(0) recipient and max amount of tokens for quoting.
* @return payment How much native value to send in transferRemote call.
*/
function quoteGasPayment(
uint32 _destinationDomain
) public view virtual override returns (uint256) {
return
_quoteGasPayment(_destinationDomain, bytes32(0), type(uint256).max);
}
function _quoteGasPayment(
uint32 _destinationDomain,
bytes32 _recipient,
uint256 _amount
) internal view returns (uint256) {
return
_GasRouter_quoteDispatch(
_destinationDomain,
TokenMessage.format(_recipient, _amount),
address(hook)
);
}
/**
* @dev Mints tokens to recipient when router receives transfer message.
* @dev Emits `ReceivedTransferRemote` event on the destination chain.
* @param _origin The identifier of the origin chain.
* @param _message The encoded remote transfer message containing the recipient address and amount.
*/
function _handle(
uint32 _origin,
bytes32,
bytes calldata _message
) internal virtual override {
bytes32 recipient = _message.recipient();
uint256 amount = _message.amount();
bytes calldata metadata = _message.metadata();
_transferTo(
recipient.bytes32ToAddress(),
_inboundAmount(amount),
metadata
);
emit ReceivedTransferRemote(_origin, recipient, amount);
}
/**
* @dev Should transfer `_amountOrId` of tokens from this token router to `_recipient`.
* @dev Called by `handle` after message decoding.
* @dev Optionally handles `metadata` associated with transfer passed in message.
*/
function _transferTo(
address _recipient,
uint256 _amountOrId,
bytes calldata metadata
) internal virtual;
}// SPDX-License-Identifier: Apache-2.0
pragma solidity >=0.8.0;
import {TokenRouter} from "./TokenRouter.sol";
/**
* @title Hyperlane Fungible Token Router that extends TokenRouter with scaling logic for fungible tokens with different decimals.
* @author Abacus Works
*/
abstract contract FungibleTokenRouter is TokenRouter {
uint256 public immutable scale;
constructor(uint256 _scale, address _mailbox) TokenRouter(_mailbox) {
scale = _scale;
}
/**
* @dev Scales local amount to message amount (up by scale factor).
* @inheritdoc TokenRouter
*/
function _outboundAmount(
uint256 _localAmount
) internal view virtual override returns (uint256 _messageAmount) {
_messageAmount = _localAmount * scale;
}
/**
* @dev Scales message amount to local amount (down by scale factor).
* @inheritdoc TokenRouter
*/
function _inboundAmount(
uint256 _messageAmount
) internal view virtual override returns (uint256 _localAmount) {
_localAmount = _messageAmount / scale;
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity >=0.8.0;
import {Router} from "../../client/Router.sol";
import {FungibleTokenRouter} from "./FungibleTokenRouter.sol";
import {ValueTransferBridge} from "../interfaces/ValueTransferBridge.sol";
import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
abstract contract MovableCollateralRouter is FungibleTokenRouter {
using SafeERC20 for IERC20;
using EnumerableSet for EnumerableSet.AddressSet;
/// @notice Mapping of domain to allowed rebalance recipient.
/// @dev Keys constrained to a subset of Router.domains()
mapping(uint32 routerDomain => bytes32 recipient) public allowedRecipient;
/// @notice Mapping of domain to allowed rebalance bridges.
/// @dev Keys constrained to a subset of Router.domains()
mapping(uint32 routerDomain => EnumerableSet.AddressSet bridges)
internal _allowedBridges;
/// @notice Set of addresses that are allowed to rebalance.
EnumerableSet.AddressSet internal _allowedRebalancers;
event CollateralMoved(
uint32 indexed domain,
bytes32 recipient,
uint256 amount,
address indexed rebalancer
);
modifier onlyRebalancer() {
require(
_allowedRebalancers.contains(_msgSender()),
"MCR: Only Rebalancer"
);
_;
}
modifier onlyAllowedBridge(uint32 domain, ValueTransferBridge bridge) {
EnumerableSet.AddressSet storage bridges = _allowedBridges[domain];
require(bridges.contains(address(bridge)), "MCR: Not allowed bridge");
_;
}
function allowedRebalancers() external view returns (address[] memory) {
return _allowedRebalancers.values();
}
function allowedBridges(
uint32 domain
) external view returns (address[] memory) {
return _allowedBridges[domain].values();
}
function setRecipient(uint32 domain, bytes32 recipient) external onlyOwner {
// constrain to a subset of Router.domains()
_mustHaveRemoteRouter(domain);
allowedRecipient[domain] = recipient;
}
function removeRecipient(uint32 domain) external onlyOwner {
delete allowedRecipient[domain];
}
function addBridge(
uint32 domain,
ValueTransferBridge bridge
) external onlyOwner {
// constrain to a subset of Router.domains()
_mustHaveRemoteRouter(domain);
_allowedBridges[domain].add(address(bridge));
}
function removeBridge(
uint32 domain,
ValueTransferBridge bridge
) external onlyOwner {
_allowedBridges[domain].remove(address(bridge));
}
/**
* @notice Approves the token for the bridge.
* @param token The token to approve.
* @param bridge The bridge to approve the token for.
* @dev We need this to support bridges that charge fees in ERC20 tokens.
*/
function approveTokenForBridge(
IERC20 token,
ValueTransferBridge bridge
) external onlyOwner {
token.safeApprove(address(bridge), type(uint256).max);
}
function addRebalancer(address rebalancer) external onlyOwner {
_allowedRebalancers.add(rebalancer);
}
function removeRebalancer(address rebalancer) external onlyOwner {
_allowedRebalancers.remove(rebalancer);
}
/**
* @notice Rebalances the collateral between router domains.
* @param domain The domain to rebalance to.
* @param amount The amount of collateral to rebalance.
* @param bridge The bridge to use for the rebalance.
* @dev The caller must be an allowed rebalancer and the bridge must be an allowed bridge for the domain.
* @dev The recipient is the enrolled router if no recipient is set for the domain.
*/
function rebalance(
uint32 domain,
uint256 amount,
ValueTransferBridge bridge
) external payable onlyRebalancer onlyAllowedBridge(domain, bridge) {
address rebalancer = _msgSender();
bytes32 recipient = allowedRecipient[domain];
if (recipient == bytes32(0)) {
recipient = _mustHaveRemoteRouter(domain);
}
_rebalance(domain, recipient, amount, bridge);
emit CollateralMoved({
domain: domain,
recipient: recipient,
amount: amount,
rebalancer: rebalancer
});
}
/// @dev This function in `EnumerableSet` was introduced in OpenZeppelin v5. We are using 4.9
/// See https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v5.3.0-rc.0/contracts/utils/structs/EnumerableSet.sol#L126
function _clear(EnumerableSet.Set storage set) private {
uint256 len = set._values.length;
for (uint256 i = 0; i < len; ++i) {
delete set._indexes[set._values[i]];
}
_unsafeSetLength(set._values, 0);
}
/// @dev A helper for `_clear`. See https://github.com/OpenZeppelin/openzeppelin-contracts/blob/39f5a0284e7eb539354e44b76fcbb69033b22b56/contracts/utils/Arrays.sol#L466
function _unsafeSetLength(bytes32[] storage array, uint256 len) internal {
assembly ("memory-safe") {
sstore(array.slot, len)
}
}
/// @dev Constrains keys of rebalance mappings to Router.domains()
function _unenrollRemoteRouter(uint32 domain) internal override {
delete allowedRecipient[domain];
_clear(_allowedBridges[domain]._inner);
Router._unenrollRemoteRouter(domain);
}
function _rebalance(
uint32 domain,
bytes32 recipient,
uint256 amount,
ValueTransferBridge bridge
) internal virtual {
bridge.transferRemote{value: msg.value}({
destinationDomain: domain,
recipient: recipient,
amountOut: amount
});
}
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
struct Quote {
address token;
uint256 amount;
}
interface ValueTransferBridge {
function quoteTransferRemote(
uint32 destinationDomain,
bytes32 recipient,
uint amountOut
) external view returns (Quote[] memory);
function transferRemote(
uint32 destinationDomain,
bytes32 recipient,
uint256 amountOut
) external payable returns (bytes32 transferId);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
* Revert on invalid signature.
*/
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return
success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
struct Quote {
address token; // address(0) for the native token
uint256 amount;
}
interface ITokenBridge {
/**
* @notice Transfer value to another domain
* @param _destination The destination domain of the message
* @param _recipient The message recipient address on `destination`
* @param _amount The amount to send to the recipient
* @return messageId The identifier of the dispatched message.
*/
function transferRemote(
uint32 _destination,
bytes32 _recipient,
uint256 _amount
) external payable returns (bytes32);
/**
* @notice Provide the value transfer quote
* @param _destination The destination domain of the message
* @param _recipient The message recipient address on `destination`
* @param _amount The amount to send to the recipient
* @return quotes Indicate how much of each token to approve and/or send.
* @dev Good practice is to use the first entry of the quotes for the native currency (i.e. ETH)
*/
function quoteTransferRemote(
uint32 _destination,
bytes32 _recipient,
uint256 _amount
) external view returns (Quote[] memory quotes);
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
library TypeCasts {
// alignment preserving cast
function addressToBytes32(address _addr) internal pure returns (bytes32) {
return bytes32(uint256(uint160(_addr)));
}
// alignment preserving cast
function bytes32ToAddress(bytes32 _buf) internal pure returns (address) {
require(
uint256(_buf) <= uint256(type(uint160).max),
"TypeCasts: bytes32ToAddress overflow"
);
return address(uint160(uint256(_buf)));
}
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
/*@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@ HYPERLANE @@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@*/
// ============ Internal Imports ============
import {Router} from "./Router.sol";
import {StandardHookMetadata} from "../hooks/libs/StandardHookMetadata.sol";
abstract contract GasRouter is Router {
event GasSet(uint32 domain, uint256 gas);
// ============ Mutable Storage ============
mapping(uint32 destinationDomain => uint256 gasLimit) public destinationGas;
struct GasRouterConfig {
uint32 domain;
uint256 gas;
}
constructor(address _mailbox) Router(_mailbox) {}
/**
* @notice Sets the gas amount dispatched for each configured domain.
* @param gasConfigs The array of GasRouterConfig structs
*/
function setDestinationGas(
GasRouterConfig[] calldata gasConfigs
) external onlyOwner {
for (uint256 i = 0; i < gasConfigs.length; i += 1) {
_setDestinationGas(gasConfigs[i].domain, gasConfigs[i].gas);
}
}
/**
* @notice Sets the gas amount dispatched for each configured domain.
* @param domain The destination domain ID
* @param gas The gas limit
*/
function setDestinationGas(uint32 domain, uint256 gas) external onlyOwner {
_setDestinationGas(domain, gas);
}
/**
* @notice Returns the gas payment required to dispatch a message to the given domain's router.
* @param _destinationDomain The domain of the router.
* @return _gasPayment Payment computed by the registered InterchainGasPaymaster.
*/
function quoteGasPayment(
uint32 _destinationDomain
) public view virtual returns (uint256) {
return _GasRouter_quoteDispatch(_destinationDomain, "", address(hook));
}
function _GasRouter_hookMetadata(
uint32 _destination
) internal view returns (bytes memory) {
return
StandardHookMetadata.overrideGasLimit(destinationGas[_destination]);
}
function _setDestinationGas(uint32 domain, uint256 gas) internal {
destinationGas[domain] = gas;
emit GasSet(domain, gas);
}
function _GasRouter_dispatch(
uint32 _destination,
uint256 _value,
bytes memory _messageBody,
address _hook
) internal returns (bytes32) {
return
_Router_dispatch(
_destination,
_value,
_messageBody,
_GasRouter_hookMetadata(_destination),
_hook
);
}
function _GasRouter_quoteDispatch(
uint32 _destination,
bytes memory _messageBody,
address _hook
) internal view returns (uint256) {
return
_Router_quoteDispatch(
_destination,
_messageBody,
_GasRouter_hookMetadata(_destination),
_hook
);
}
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
// ============ Internal Imports ============
import {IMessageRecipient} from "../interfaces/IMessageRecipient.sol";
import {IPostDispatchHook} from "../interfaces/hooks/IPostDispatchHook.sol";
import {MailboxClient} from "./MailboxClient.sol";
import {EnumerableMapExtended} from "../libs/EnumerableMapExtended.sol";
// ============ External Imports ============
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
abstract contract Router is MailboxClient, IMessageRecipient {
using EnumerableMapExtended for EnumerableMapExtended.UintToBytes32Map;
using Strings for uint32;
// ============ Mutable Storage ============
/// @dev Mapping of domain => router. For a given domain we have one router we send/receive messages from.
EnumerableMapExtended.UintToBytes32Map internal _routers;
uint256[48] private __GAP; // gap for upgrade safety
constructor(address _mailbox) MailboxClient(_mailbox) {}
// ============ External functions ============
function domains() external view returns (uint32[] memory) {
return _routers.uint32Keys();
}
/**
* @notice Returns the address of the Router contract for the given domain
* @param _domain The remote domain ID.
* @dev Returns 0 address if no router is enrolled for the given domain
* @return router The address of the Router contract for the given domain
*/
function routers(uint32 _domain) public view virtual returns (bytes32) {
(, bytes32 _router) = _routers.tryGet(_domain);
return _router;
}
/**
* @notice Unregister the domain
* @param _domain The domain of the remote Application Router
*/
function unenrollRemoteRouter(uint32 _domain) external virtual onlyOwner {
_unenrollRemoteRouter(_domain);
}
/**
* @notice Register the address of a Router contract for the same Application on a remote chain
* @param _domain The domain of the remote Application Router
* @param _router The address of the remote Application Router
*/
function enrollRemoteRouter(
uint32 _domain,
bytes32 _router
) external virtual onlyOwner {
_enrollRemoteRouter(_domain, _router);
}
/**
* @notice Batch version of `enrollRemoteRouter`
* @param _domains The domains of the remote Application Routers
* @param _addresses The addresses of the remote Application Routers
*/
function enrollRemoteRouters(
uint32[] calldata _domains,
bytes32[] calldata _addresses
) external virtual onlyOwner {
require(_domains.length == _addresses.length, "!length");
uint256 length = _domains.length;
for (uint256 i = 0; i < length; i += 1) {
_enrollRemoteRouter(_domains[i], _addresses[i]);
}
}
/**
* @notice Batch version of `unenrollRemoteRouter`
* @param _domains The domains of the remote Application Routers
*/
function unenrollRemoteRouters(
uint32[] calldata _domains
) external virtual onlyOwner {
uint256 length = _domains.length;
for (uint256 i = 0; i < length; i += 1) {
_unenrollRemoteRouter(_domains[i]);
}
}
/**
* @notice Handles an incoming message
* @param _origin The origin domain
* @param _sender The sender address
* @param _message The message
*/
function handle(
uint32 _origin,
bytes32 _sender,
bytes calldata _message
) external payable virtual override onlyMailbox {
bytes32 _router = _mustHaveRemoteRouter(_origin);
require(_router == _sender, "Enrolled router does not match sender");
_handle(_origin, _sender, _message);
}
// ============ Virtual functions ============
function _handle(
uint32 _origin,
bytes32 _sender,
bytes calldata _message
) internal virtual;
// ============ Internal functions ============
/**
* @notice Set the router for a given domain
* @param _domain The domain
* @param _address The new router
*/
function _enrollRemoteRouter(
uint32 _domain,
bytes32 _address
) internal virtual {
_routers.set(_domain, _address);
}
/**
* @notice Remove the router for a given domain
* @param _domain The domain
*/
function _unenrollRemoteRouter(uint32 _domain) internal virtual {
require(_routers.remove(_domain), _domainNotFoundError(_domain));
}
/**
* @notice Return true if the given domain / router is the address of a remote Application Router
* @param _domain The domain of the potential remote Application Router
* @param _address The address of the potential remote Application Router
*/
function _isRemoteRouter(
uint32 _domain,
bytes32 _address
) internal view returns (bool) {
return routers(_domain) == _address;
}
/**
* @notice Assert that the given domain has an Application Router registered and return its address
* @param _domain The domain of the chain for which to get the Application Router
* @return _router The address of the remote Application Router on _domain
*/
function _mustHaveRemoteRouter(
uint32 _domain
) internal view returns (bytes32) {
(bool contained, bytes32 _router) = _routers.tryGet(_domain);
if (contained) {
return _router;
}
revert(_domainNotFoundError(_domain));
}
function _domainNotFoundError(
uint32 _domain
) internal pure returns (string memory) {
return
string.concat(
"No router enrolled for domain: ",
_domain.toString()
);
}
function _Router_dispatch(
uint32 _destinationDomain,
uint256 _value,
bytes memory _messageBody,
bytes memory _hookMetadata,
address _hook
) internal returns (bytes32) {
bytes32 _router = _mustHaveRemoteRouter(_destinationDomain);
return
mailbox.dispatch{value: _value}(
_destinationDomain,
_router,
_messageBody,
_hookMetadata,
IPostDispatchHook(_hook)
);
}
/**
* DEPRECATED: Use `_Router_dispatch` instead
* @dev For backward compatibility with v2 client contracts
*/
function _dispatch(
uint32 _destinationDomain,
bytes memory _messageBody
) internal returns (bytes32) {
return
_Router_dispatch(
_destinationDomain,
msg.value,
_messageBody,
"",
address(hook)
);
}
function _Router_quoteDispatch(
uint32 _destinationDomain,
bytes memory _messageBody,
bytes memory _hookMetadata,
address _hook
) internal view returns (uint256) {
bytes32 _router = _mustHaveRemoteRouter(_destinationDomain);
return
mailbox.quoteDispatch(
_destinationDomain,
_router,
_messageBody,
_hookMetadata,
IPostDispatchHook(_hook)
);
}
/**
* DEPRECATED: Use `_Router_quoteDispatch` instead
* @dev For backward compatibility with v2 client contracts
*/
function _quoteDispatch(
uint32 _destinationDomain,
bytes memory _messageBody
) internal view returns (uint256) {
return
_Router_quoteDispatch(
_destinationDomain,
_messageBody,
"",
address(hook)
);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.0;
/**
* @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 of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping(bytes32 => uint256) _indexes;
}
/**
* @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._indexes[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 read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 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 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
if (lastIndex != toDeleteIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastValue;
// Update the index for the moved value
set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[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._indexes[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 (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
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.9.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
/*@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@ HYPERLANE @@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@*/
/**
* Format of metadata:
*
* [0:2] variant
* [2:34] msg.value
* [34:66] Gas limit for message (IGP)
* [66:86] Refund address for message (IGP)
* [86:] Custom metadata
*/
library StandardHookMetadata {
struct Metadata {
uint16 variant;
uint256 msgValue;
uint256 gasLimit;
address refundAddress;
}
uint8 private constant VARIANT_OFFSET = 0;
uint8 private constant MSG_VALUE_OFFSET = 2;
uint8 private constant GAS_LIMIT_OFFSET = 34;
uint8 private constant REFUND_ADDRESS_OFFSET = 66;
uint256 private constant MIN_METADATA_LENGTH = 86;
uint16 public constant VARIANT = 1;
/**
* @notice Returns the variant of the metadata.
* @param _metadata ABI encoded standard hook metadata.
* @return variant of the metadata as uint8.
*/
function variant(bytes calldata _metadata) internal pure returns (uint16) {
if (_metadata.length < VARIANT_OFFSET + 2) return 0;
return uint16(bytes2(_metadata[VARIANT_OFFSET:VARIANT_OFFSET + 2]));
}
/**
* @notice Returns the specified value for the message.
* @param _metadata ABI encoded standard hook metadata.
* @param _default Default fallback value.
* @return Value for the message as uint256.
*/
function msgValue(
bytes calldata _metadata,
uint256 _default
) internal pure returns (uint256) {
if (_metadata.length < MSG_VALUE_OFFSET + 32) return _default;
return
uint256(bytes32(_metadata[MSG_VALUE_OFFSET:MSG_VALUE_OFFSET + 32]));
}
/**
* @notice Returns the specified gas limit for the message.
* @param _metadata ABI encoded standard hook metadata.
* @param _default Default fallback gas limit.
* @return Gas limit for the message as uint256.
*/
function gasLimit(
bytes calldata _metadata,
uint256 _default
) internal pure returns (uint256) {
if (_metadata.length < GAS_LIMIT_OFFSET + 32) return _default;
return
uint256(bytes32(_metadata[GAS_LIMIT_OFFSET:GAS_LIMIT_OFFSET + 32]));
}
function gasLimit(
bytes memory _metadata
) internal pure returns (uint256 _gasLimit) {
if (_metadata.length < GAS_LIMIT_OFFSET + 32) return 50_000;
assembly {
_gasLimit := mload(add(_metadata, add(0x20, GAS_LIMIT_OFFSET)))
}
}
/**
* @notice Returns the specified refund address for the message.
* @param _metadata ABI encoded standard hook metadata.
* @param _default Default fallback refund address.
* @return Refund address for the message as address.
*/
function refundAddress(
bytes calldata _metadata,
address _default
) internal pure returns (address) {
if (_metadata.length < REFUND_ADDRESS_OFFSET + 20) return _default;
return
address(
bytes20(
_metadata[REFUND_ADDRESS_OFFSET:REFUND_ADDRESS_OFFSET + 20]
)
);
}
/**
* @notice Returns any custom metadata.
* @param _metadata ABI encoded standard hook metadata.
* @return Custom metadata.
*/
function getCustomMetadata(
bytes calldata _metadata
) internal pure returns (bytes calldata) {
if (_metadata.length < MIN_METADATA_LENGTH) return _metadata[0:0];
return _metadata[MIN_METADATA_LENGTH:];
}
/**
* @notice Formats the specified gas limit and refund address into standard hook metadata.
* @param _msgValue msg.value for the message.
* @param _gasLimit Gas limit for the message.
* @param _refundAddress Refund address for the message.
* @return ABI encoded standard hook metadata.
*/
function format(
uint256 _msgValue,
uint256 _gasLimit,
address _refundAddress
) internal pure returns (bytes memory) {
return abi.encodePacked(VARIANT, _msgValue, _gasLimit, _refundAddress);
}
/**
/**
* @notice Formats the specified gas limit and refund address into standard hook metadata.
* @param _msgValue msg.value for the message.
* @param _gasLimit Gas limit for the message.
* @param _refundAddress Refund address for the message.
* @param _customMetadata Additional metadata to include in the standard hook metadata.
* @return ABI encoded standard hook metadata.
*/
function formatMetadata(
uint256 _msgValue,
uint256 _gasLimit,
address _refundAddress,
bytes memory _customMetadata
) internal pure returns (bytes memory) {
return
abi.encodePacked(
VARIANT,
_msgValue,
_gasLimit,
_refundAddress,
_customMetadata
);
}
/**
* @notice Formats the specified gas limit and refund address into standard hook metadata.
* @param _msgValue msg.value for the message.
* @return ABI encoded standard hook metadata.
*/
function overrideMsgValue(
uint256 _msgValue
) internal view returns (bytes memory) {
return formatMetadata(_msgValue, uint256(0), msg.sender, "");
}
/**
* @notice Formats the specified gas limit and refund address into standard hook metadata.
* @param _gasLimit Gas limit for the message.
* @return ABI encoded standard hook metadata.
*/
function overrideGasLimit(
uint256 _gasLimit
) internal view returns (bytes memory) {
return formatMetadata(uint256(0), _gasLimit, msg.sender, "");
}
/**
* @notice Formats the specified refund address into standard hook metadata.
* @param _refundAddress Refund address for the message.
* @return ABI encoded standard hook metadata.
*/
function overrideRefundAddress(
address _refundAddress
) internal pure returns (bytes memory) {
return formatMetadata(uint256(0), uint256(0), _refundAddress, "");
}
function getRefundAddress(
bytes memory _metadata,
address _default
) internal pure returns (address) {
if (_metadata.length < REFUND_ADDRESS_OFFSET + 20) return _default;
address result;
assembly {
let data_start_ptr := add(_metadata, 32) // Skip length prefix of _metadata
let mload_ptr := add(data_start_ptr, sub(REFUND_ADDRESS_OFFSET, 12))
result := mload(mload_ptr) // Loads 32 bytes; address takes lower 20 bytes.
}
return result;
}
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
interface IMessageRecipient {
function handle(
uint32 _origin,
bytes32 _sender,
bytes calldata _message
) external payable;
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
/*@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@ HYPERLANE @@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@*/
interface IPostDispatchHook {
enum Types {
UNUSED,
ROUTING,
AGGREGATION,
MERKLE_TREE,
INTERCHAIN_GAS_PAYMASTER,
FALLBACK_ROUTING,
ID_AUTH_ISM,
PAUSABLE,
PROTOCOL_FEE,
DEPRECATED,
RATE_LIMITED,
ARB_L2_TO_L1,
OP_L2_TO_L1,
MAILBOX_DEFAULT_HOOK,
AMOUNT_ROUTING,
CCTP
}
/**
* @notice Returns an enum that represents the type of hook
*/
function hookType() external view returns (uint8);
/**
* @notice Returns whether the hook supports metadata
* @param metadata metadata
* @return Whether the hook supports metadata
*/
function supportsMetadata(
bytes calldata metadata
) external view returns (bool);
/**
* @notice Post action after a message is dispatched via the Mailbox
* @param metadata The metadata required for the hook
* @param message The message passed from the Mailbox.dispatch() call
*/
function postDispatch(
bytes calldata metadata,
bytes calldata message
) external payable;
/**
* @notice Compute the payment required by the postDispatch call
* @param metadata The metadata required for the hook
* @param message The message passed from the Mailbox.dispatch() call
* @return Quoted payment for the postDispatch call
*/
function quoteDispatch(
bytes calldata metadata,
bytes calldata message
) external view returns (uint256);
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
/*@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@ HYPERLANE @@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@*/
// ============ Internal Imports ============
import {IMailbox} from "../interfaces/IMailbox.sol";
import {IPostDispatchHook} from "../interfaces/hooks/IPostDispatchHook.sol";
import {IInterchainSecurityModule} from "../interfaces/IInterchainSecurityModule.sol";
import {Message} from "../libs/Message.sol";
import {PackageVersioned} from "../PackageVersioned.sol";
// ============ External Imports ============
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
abstract contract MailboxClient is OwnableUpgradeable, PackageVersioned {
using Message for bytes;
event HookSet(address _hook);
event IsmSet(address _ism);
IMailbox public immutable mailbox;
uint32 public immutable localDomain;
IPostDispatchHook public hook;
IInterchainSecurityModule internal _interchainSecurityModule;
uint256[48] private __GAP; // gap for upgrade safety
// ============ Modifiers ============
modifier onlyContract(address _contract) {
require(
Address.isContract(_contract),
"MailboxClient: invalid mailbox"
);
_;
}
modifier onlyContractOrNull(address _contract) {
require(
Address.isContract(_contract) || _contract == address(0),
"MailboxClient: invalid contract setting"
);
_;
}
/**
* @notice Only accept messages from a Hyperlane Mailbox contract
*/
modifier onlyMailbox() {
require(
msg.sender == address(mailbox),
"MailboxClient: sender not mailbox"
);
_;
}
constructor(address _mailbox) onlyContract(_mailbox) {
mailbox = IMailbox(_mailbox);
localDomain = mailbox.localDomain();
_transferOwnership(msg.sender);
}
function interchainSecurityModule()
external
view
virtual
returns (IInterchainSecurityModule)
{
return _interchainSecurityModule;
}
/**
* @notice Sets the address of the application's custom hook.
* @param _hook The address of the hook contract.
*/
function setHook(
address _hook
) public virtual onlyContractOrNull(_hook) onlyOwner {
hook = IPostDispatchHook(_hook);
emit HookSet(_hook);
}
/**
* @notice Sets the address of the application's custom interchain security module.
* @param _module The address of the interchain security module contract.
*/
function setInterchainSecurityModule(
address _module
) public onlyContractOrNull(_module) onlyOwner {
_interchainSecurityModule = IInterchainSecurityModule(_module);
emit IsmSet(_module);
}
// ======== Initializer =========
function _MailboxClient_initialize(
address _hook,
address __interchainSecurityModule,
address _owner
) internal onlyInitializing {
__Ownable_init();
setHook(_hook);
setInterchainSecurityModule(__interchainSecurityModule);
_transferOwnership(_owner);
}
function _isLatestDispatched(bytes32 id) internal view returns (bool) {
return mailbox.latestDispatchedId() == id;
}
function _isDelivered(bytes32 id) internal view returns (bool) {
return mailbox.delivered(id);
}
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
// ============ External Imports ============
import "@openzeppelin/contracts/utils/structs/EnumerableMap.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
// extends EnumerableMap with uint256 => bytes32 type
// modelled after https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/contracts/utils/structs/EnumerableMap.sol
library EnumerableMapExtended {
using EnumerableMap for EnumerableMap.Bytes32ToBytes32Map;
using EnumerableSet for EnumerableSet.Bytes32Set;
struct UintToBytes32Map {
EnumerableMap.Bytes32ToBytes32Map _inner;
}
// ============ Library Functions ============
function keys(
UintToBytes32Map storage map
) internal view returns (uint256[] memory _keys) {
uint256 _length = map._inner.length();
_keys = new uint256[](_length);
for (uint256 i = 0; i < _length; i++) {
_keys[i] = uint256(map._inner._keys.at(i));
}
}
function uint32Keys(
UintToBytes32Map storage map
) internal view returns (uint32[] memory _keys) {
uint256[] memory uint256keys = keys(map);
_keys = new uint32[](uint256keys.length);
for (uint256 i = 0; i < uint256keys.length; i++) {
_keys[i] = uint32(uint256keys[i]);
}
}
function set(
UintToBytes32Map storage map,
uint256 key,
bytes32 value
) internal {
map._inner.set(bytes32(key), value);
}
function get(
UintToBytes32Map storage map,
uint256 key
) internal view returns (bytes32) {
return map._inner.get(bytes32(key));
}
function tryGet(
UintToBytes32Map storage map,
uint256 key
) internal view returns (bool, bytes32) {
return map._inner.tryGet(bytes32(key));
}
function remove(
UintToBytes32Map storage map,
uint256 key
) internal returns (bool) {
return map._inner.remove(bytes32(key));
}
function contains(
UintToBytes32Map storage map,
uint256 key
) internal view returns (bool) {
return map._inner.contains(bytes32(key));
}
function length(
UintToBytes32Map storage map
) internal view returns (uint256) {
return map._inner.length();
}
function at(
UintToBytes32Map storage map,
uint256 index
) internal view returns (uint256, bytes32) {
(bytes32 key, bytes32 value) = map._inner.at(index);
return (uint256(key), value);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
import {IInterchainSecurityModule} from "./IInterchainSecurityModule.sol";
import {IPostDispatchHook} from "./hooks/IPostDispatchHook.sol";
interface IMailbox {
// ============ Events ============
/**
* @notice Emitted when a new message is dispatched via Hyperlane
* @param sender The address that dispatched the message
* @param destination The destination domain of the message
* @param recipient The message recipient address on `destination`
* @param message Raw bytes of message
*/
event Dispatch(
address indexed sender,
uint32 indexed destination,
bytes32 indexed recipient,
bytes message
);
/**
* @notice Emitted when a new message is dispatched via Hyperlane
* @param messageId The unique message identifier
*/
event DispatchId(bytes32 indexed messageId);
/**
* @notice Emitted when a Hyperlane message is processed
* @param messageId The unique message identifier
*/
event ProcessId(bytes32 indexed messageId);
/**
* @notice Emitted when a Hyperlane message is delivered
* @param origin The origin domain of the message
* @param sender The message sender address on `origin`
* @param recipient The address that handled the message
*/
event Process(
uint32 indexed origin,
bytes32 indexed sender,
address indexed recipient
);
function localDomain() external view returns (uint32);
function delivered(bytes32 messageId) external view returns (bool);
function defaultIsm() external view returns (IInterchainSecurityModule);
function defaultHook() external view returns (IPostDispatchHook);
function requiredHook() external view returns (IPostDispatchHook);
function latestDispatchedId() external view returns (bytes32);
function dispatch(
uint32 destinationDomain,
bytes32 recipientAddress,
bytes calldata messageBody
) external payable returns (bytes32 messageId);
function quoteDispatch(
uint32 destinationDomain,
bytes32 recipientAddress,
bytes calldata messageBody
) external view returns (uint256 fee);
function dispatch(
uint32 destinationDomain,
bytes32 recipientAddress,
bytes calldata body,
bytes calldata defaultHookMetadata
) external payable returns (bytes32 messageId);
function quoteDispatch(
uint32 destinationDomain,
bytes32 recipientAddress,
bytes calldata messageBody,
bytes calldata defaultHookMetadata
) external view returns (uint256 fee);
function dispatch(
uint32 destinationDomain,
bytes32 recipientAddress,
bytes calldata body,
bytes calldata customHookMetadata,
IPostDispatchHook customHook
) external payable returns (bytes32 messageId);
function quoteDispatch(
uint32 destinationDomain,
bytes32 recipientAddress,
bytes calldata messageBody,
bytes calldata customHookMetadata,
IPostDispatchHook customHook
) external view returns (uint256 fee);
function process(
bytes calldata metadata,
bytes calldata message
) external payable;
function recipientIsm(
address recipient
) external view returns (IInterchainSecurityModule module);
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
interface IInterchainSecurityModule {
enum Types {
UNUSED,
ROUTING,
AGGREGATION,
LEGACY_MULTISIG,
MERKLE_ROOT_MULTISIG,
MESSAGE_ID_MULTISIG,
NULL, // used with relayer carrying no metadata
CCIP_READ,
ARB_L2_TO_L1,
WEIGHTED_MERKLE_ROOT_MULTISIG,
WEIGHTED_MESSAGE_ID_MULTISIG,
OP_L2_TO_L1,
POLYMER
}
/**
* @notice Returns an enum that represents the type of security model
* encoded by this ISM.
* @dev Relayers infer how to fetch and format metadata.
*/
function moduleType() external view returns (uint8);
/**
* @notice Defines a security model responsible for verifying interchain
* messages based on the provided metadata.
* @param _metadata Off-chain metadata provided by a relayer, specific to
* the security model encoded by the module (e.g. validator signatures)
* @param _message Hyperlane encoded interchain message
* @return True if the message was verified
*/
function verify(
bytes calldata _metadata,
bytes calldata _message
) external returns (bool);
}
interface ISpecifiesInterchainSecurityModule {
function interchainSecurityModule()
external
view
returns (IInterchainSecurityModule);
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
import {TypeCasts} from "./TypeCasts.sol";
/**
* @title Hyperlane Message Library
* @notice Library for formatted messages used by Mailbox
**/
library Message {
using TypeCasts for bytes32;
uint256 private constant VERSION_OFFSET = 0;
uint256 private constant NONCE_OFFSET = 1;
uint256 private constant ORIGIN_OFFSET = 5;
uint256 private constant SENDER_OFFSET = 9;
uint256 private constant DESTINATION_OFFSET = 41;
uint256 private constant RECIPIENT_OFFSET = 45;
uint256 private constant BODY_OFFSET = 77;
/**
* @notice Returns formatted (packed) Hyperlane message with provided fields
* @dev This function should only be used in memory message construction.
* @param _version The version of the origin and destination Mailboxes
* @param _nonce A nonce to uniquely identify the message on its origin chain
* @param _originDomain Domain of origin chain
* @param _sender Address of sender as bytes32
* @param _destinationDomain Domain of destination chain
* @param _recipient Address of recipient on destination chain as bytes32
* @param _messageBody Raw bytes of message body
* @return Formatted message
*/
function formatMessage(
uint8 _version,
uint32 _nonce,
uint32 _originDomain,
bytes32 _sender,
uint32 _destinationDomain,
bytes32 _recipient,
bytes calldata _messageBody
) internal pure returns (bytes memory) {
return
abi.encodePacked(
_version,
_nonce,
_originDomain,
_sender,
_destinationDomain,
_recipient,
_messageBody
);
}
/**
* @notice Returns the message ID.
* @param _message ABI encoded Hyperlane message.
* @return ID of `_message`
*/
function id(bytes memory _message) internal pure returns (bytes32) {
return keccak256(_message);
}
/**
* @notice Returns the message version.
* @param _message ABI encoded Hyperlane message.
* @return Version of `_message`
*/
function version(bytes calldata _message) internal pure returns (uint8) {
return uint8(bytes1(_message[VERSION_OFFSET:NONCE_OFFSET]));
}
/**
* @notice Returns the message nonce.
* @param _message ABI encoded Hyperlane message.
* @return Nonce of `_message`
*/
function nonce(bytes calldata _message) internal pure returns (uint32) {
return uint32(bytes4(_message[NONCE_OFFSET:ORIGIN_OFFSET]));
}
/**
* @notice Returns the message origin domain.
* @param _message ABI encoded Hyperlane message.
* @return Origin domain of `_message`
*/
function origin(bytes calldata _message) internal pure returns (uint32) {
return uint32(bytes4(_message[ORIGIN_OFFSET:SENDER_OFFSET]));
}
/**
* @notice Returns the message sender as bytes32.
* @param _message ABI encoded Hyperlane message.
* @return Sender of `_message` as bytes32
*/
function sender(bytes calldata _message) internal pure returns (bytes32) {
return bytes32(_message[SENDER_OFFSET:DESTINATION_OFFSET]);
}
/**
* @notice Returns the message sender as address.
* @param _message ABI encoded Hyperlane message.
* @return Sender of `_message` as address
*/
function senderAddress(
bytes calldata _message
) internal pure returns (address) {
return sender(_message).bytes32ToAddress();
}
/**
* @notice Returns the message destination domain.
* @param _message ABI encoded Hyperlane message.
* @return Destination domain of `_message`
*/
function destination(
bytes calldata _message
) internal pure returns (uint32) {
return uint32(bytes4(_message[DESTINATION_OFFSET:RECIPIENT_OFFSET]));
}
/**
* @notice Returns the message recipient as bytes32.
* @param _message ABI encoded Hyperlane message.
* @return Recipient of `_message` as bytes32
*/
function recipient(
bytes calldata _message
) internal pure returns (bytes32) {
return bytes32(_message[RECIPIENT_OFFSET:BODY_OFFSET]);
}
/**
* @notice Returns the message recipient as address.
* @param _message ABI encoded Hyperlane message.
* @return Recipient of `_message` as address
*/
function recipientAddress(
bytes calldata _message
) internal pure returns (address) {
return recipient(_message).bytes32ToAddress();
}
/**
* @notice Returns the message body.
* @param _message ABI encoded Hyperlane message.
* @return Body of `_message`
*/
function body(
bytes calldata _message
) internal pure returns (bytes calldata) {
return bytes(_message[BODY_OFFSET:]);
}
}// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
/**
* @title PackageVersioned
* @notice Package version getter for contracts
**/
abstract contract PackageVersioned {
// GENERATED CODE - DO NOT EDIT
string public constant PACKAGE_VERSION = "9.0.16";
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableMap.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableMap.js.
pragma solidity ^0.8.0;
import "./EnumerableSet.sol";
/**
* @dev Library for managing an enumerable variant of Solidity's
* https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
* type.
*
* Maps have the following properties:
*
* - Entries are added, removed, and checked for existence in constant time
* (O(1)).
* - Entries are enumerated in O(n). No guarantees are made on the ordering.
*
* ```solidity
* contract Example {
* // Add the library methods
* using EnumerableMap for EnumerableMap.UintToAddressMap;
*
* // Declare a set state variable
* EnumerableMap.UintToAddressMap private myMap;
* }
* ```
*
* The following map types are supported:
*
* - `uint256 -> address` (`UintToAddressMap`) since v3.0.0
* - `address -> uint256` (`AddressToUintMap`) since v4.6.0
* - `bytes32 -> bytes32` (`Bytes32ToBytes32Map`) since v4.6.0
* - `uint256 -> uint256` (`UintToUintMap`) since v4.7.0
* - `bytes32 -> uint256` (`Bytes32ToUintMap`) since v4.7.0
*
* [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 EnumerableMap, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableMap.
* ====
*/
library EnumerableMap {
using EnumerableSet for EnumerableSet.Bytes32Set;
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Map type with
// bytes32 keys and values.
// The Map implementation uses private functions, and user-facing
// implementations (such as Uint256ToAddressMap) are just wrappers around
// the underlying Map.
// This means that we can only create new EnumerableMaps for types that fit
// in bytes32.
struct Bytes32ToBytes32Map {
// Storage of keys
EnumerableSet.Bytes32Set _keys;
mapping(bytes32 => bytes32) _values;
}
/**
* @dev Adds a key-value pair to a map, or updates the value for an existing
* key. O(1).
*
* Returns true if the key was added to the map, that is if it was not
* already present.
*/
function set(Bytes32ToBytes32Map storage map, bytes32 key, bytes32 value) internal returns (bool) {
map._values[key] = value;
return map._keys.add(key);
}
/**
* @dev Removes a key-value pair from a map. O(1).
*
* Returns true if the key was removed from the map, that is if it was present.
*/
function remove(Bytes32ToBytes32Map storage map, bytes32 key) internal returns (bool) {
delete map._values[key];
return map._keys.remove(key);
}
/**
* @dev Returns true if the key is in the map. O(1).
*/
function contains(Bytes32ToBytes32Map storage map, bytes32 key) internal view returns (bool) {
return map._keys.contains(key);
}
/**
* @dev Returns the number of key-value pairs in the map. O(1).
*/
function length(Bytes32ToBytes32Map storage map) internal view returns (uint256) {
return map._keys.length();
}
/**
* @dev Returns the key-value pair stored at position `index` in the map. O(1).
*
* Note that there are no guarantees on the ordering of entries inside the
* array, and it may change when more entries are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32ToBytes32Map storage map, uint256 index) internal view returns (bytes32, bytes32) {
bytes32 key = map._keys.at(index);
return (key, map._values[key]);
}
/**
* @dev Tries to returns the value associated with `key`. O(1).
* Does not revert if `key` is not in the map.
*/
function tryGet(Bytes32ToBytes32Map storage map, bytes32 key) internal view returns (bool, bytes32) {
bytes32 value = map._values[key];
if (value == bytes32(0)) {
return (contains(map, key), bytes32(0));
} else {
return (true, value);
}
}
/**
* @dev Returns the value associated with `key`. O(1).
*
* Requirements:
*
* - `key` must be in the map.
*/
function get(Bytes32ToBytes32Map storage map, bytes32 key) internal view returns (bytes32) {
bytes32 value = map._values[key];
require(value != 0 || contains(map, key), "EnumerableMap: nonexistent key");
return value;
}
/**
* @dev Same as {get}, with a custom error message when `key` is not in the map.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryGet}.
*/
function get(
Bytes32ToBytes32Map storage map,
bytes32 key,
string memory errorMessage
) internal view returns (bytes32) {
bytes32 value = map._values[key];
require(value != 0 || contains(map, key), errorMessage);
return value;
}
/**
* @dev Return the an array containing all the keys
*
* 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 map grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function keys(Bytes32ToBytes32Map storage map) internal view returns (bytes32[] memory) {
return map._keys.values();
}
// UintToUintMap
struct UintToUintMap {
Bytes32ToBytes32Map _inner;
}
/**
* @dev Adds a key-value pair to a map, or updates the value for an existing
* key. O(1).
*
* Returns true if the key was added to the map, that is if it was not
* already present.
*/
function set(UintToUintMap storage map, uint256 key, uint256 value) internal returns (bool) {
return set(map._inner, bytes32(key), bytes32(value));
}
/**
* @dev Removes a value from a map. O(1).
*
* Returns true if the key was removed from the map, that is if it was present.
*/
function remove(UintToUintMap storage map, uint256 key) internal returns (bool) {
return remove(map._inner, bytes32(key));
}
/**
* @dev Returns true if the key is in the map. O(1).
*/
function contains(UintToUintMap storage map, uint256 key) internal view returns (bool) {
return contains(map._inner, bytes32(key));
}
/**
* @dev Returns the number of elements in the map. O(1).
*/
function length(UintToUintMap storage map) internal view returns (uint256) {
return length(map._inner);
}
/**
* @dev Returns the element stored at position `index` in the map. 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(UintToUintMap storage map, uint256 index) internal view returns (uint256, uint256) {
(bytes32 key, bytes32 value) = at(map._inner, index);
return (uint256(key), uint256(value));
}
/**
* @dev Tries to returns the value associated with `key`. O(1).
* Does not revert if `key` is not in the map.
*/
function tryGet(UintToUintMap storage map, uint256 key) internal view returns (bool, uint256) {
(bool success, bytes32 value) = tryGet(map._inner, bytes32(key));
return (success, uint256(value));
}
/**
* @dev Returns the value associated with `key`. O(1).
*
* Requirements:
*
* - `key` must be in the map.
*/
function get(UintToUintMap storage map, uint256 key) internal view returns (uint256) {
return uint256(get(map._inner, bytes32(key)));
}
/**
* @dev Same as {get}, with a custom error message when `key` is not in the map.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryGet}.
*/
function get(UintToUintMap storage map, uint256 key, string memory errorMessage) internal view returns (uint256) {
return uint256(get(map._inner, bytes32(key), errorMessage));
}
/**
* @dev Return the an array containing all the keys
*
* 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 map grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function keys(UintToUintMap storage map) internal view returns (uint256[] memory) {
bytes32[] memory store = keys(map._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintToAddressMap
struct UintToAddressMap {
Bytes32ToBytes32Map _inner;
}
/**
* @dev Adds a key-value pair to a map, or updates the value for an existing
* key. O(1).
*
* Returns true if the key was added to the map, that is if it was not
* already present.
*/
function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
return set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a map. O(1).
*
* Returns true if the key was removed from the map, that is if it was present.
*/
function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
return remove(map._inner, bytes32(key));
}
/**
* @dev Returns true if the key is in the map. O(1).
*/
function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
return contains(map._inner, bytes32(key));
}
/**
* @dev Returns the number of elements in the map. O(1).
*/
function length(UintToAddressMap storage map) internal view returns (uint256) {
return length(map._inner);
}
/**
* @dev Returns the element stored at position `index` in the map. 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(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
(bytes32 key, bytes32 value) = at(map._inner, index);
return (uint256(key), address(uint160(uint256(value))));
}
/**
* @dev Tries to returns the value associated with `key`. O(1).
* Does not revert if `key` is not in the map.
*/
function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
(bool success, bytes32 value) = tryGet(map._inner, bytes32(key));
return (success, address(uint160(uint256(value))));
}
/**
* @dev Returns the value associated with `key`. O(1).
*
* Requirements:
*
* - `key` must be in the map.
*/
function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
return address(uint160(uint256(get(map._inner, bytes32(key)))));
}
/**
* @dev Same as {get}, with a custom error message when `key` is not in the map.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryGet}.
*/
function get(
UintToAddressMap storage map,
uint256 key,
string memory errorMessage
) internal view returns (address) {
return address(uint160(uint256(get(map._inner, bytes32(key), errorMessage))));
}
/**
* @dev Return the an array containing all the keys
*
* 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 map grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function keys(UintToAddressMap storage map) internal view returns (uint256[] memory) {
bytes32[] memory store = keys(map._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressToUintMap
struct AddressToUintMap {
Bytes32ToBytes32Map _inner;
}
/**
* @dev Adds a key-value pair to a map, or updates the value for an existing
* key. O(1).
*
* Returns true if the key was added to the map, that is if it was not
* already present.
*/
function set(AddressToUintMap storage map, address key, uint256 value) internal returns (bool) {
return set(map._inner, bytes32(uint256(uint160(key))), bytes32(value));
}
/**
* @dev Removes a value from a map. O(1).
*
* Returns true if the key was removed from the map, that is if it was present.
*/
function remove(AddressToUintMap storage map, address key) internal returns (bool) {
return remove(map._inner, bytes32(uint256(uint160(key))));
}
/**
* @dev Returns true if the key is in the map. O(1).
*/
function contains(AddressToUintMap storage map, address key) internal view returns (bool) {
return contains(map._inner, bytes32(uint256(uint160(key))));
}
/**
* @dev Returns the number of elements in the map. O(1).
*/
function length(AddressToUintMap storage map) internal view returns (uint256) {
return length(map._inner);
}
/**
* @dev Returns the element stored at position `index` in the map. 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(AddressToUintMap storage map, uint256 index) internal view returns (address, uint256) {
(bytes32 key, bytes32 value) = at(map._inner, index);
return (address(uint160(uint256(key))), uint256(value));
}
/**
* @dev Tries to returns the value associated with `key`. O(1).
* Does not revert if `key` is not in the map.
*/
function tryGet(AddressToUintMap storage map, address key) internal view returns (bool, uint256) {
(bool success, bytes32 value) = tryGet(map._inner, bytes32(uint256(uint160(key))));
return (success, uint256(value));
}
/**
* @dev Returns the value associated with `key`. O(1).
*
* Requirements:
*
* - `key` must be in the map.
*/
function get(AddressToUintMap storage map, address key) internal view returns (uint256) {
return uint256(get(map._inner, bytes32(uint256(uint160(key)))));
}
/**
* @dev Same as {get}, with a custom error message when `key` is not in the map.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryGet}.
*/
function get(
AddressToUintMap storage map,
address key,
string memory errorMessage
) internal view returns (uint256) {
return uint256(get(map._inner, bytes32(uint256(uint160(key))), errorMessage));
}
/**
* @dev Return the an array containing all the keys
*
* 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 map grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function keys(AddressToUintMap storage map) internal view returns (address[] memory) {
bytes32[] memory store = keys(map._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// Bytes32ToUintMap
struct Bytes32ToUintMap {
Bytes32ToBytes32Map _inner;
}
/**
* @dev Adds a key-value pair to a map, or updates the value for an existing
* key. O(1).
*
* Returns true if the key was added to the map, that is if it was not
* already present.
*/
function set(Bytes32ToUintMap storage map, bytes32 key, uint256 value) internal returns (bool) {
return set(map._inner, key, bytes32(value));
}
/**
* @dev Removes a value from a map. O(1).
*
* Returns true if the key was removed from the map, that is if it was present.
*/
function remove(Bytes32ToUintMap storage map, bytes32 key) internal returns (bool) {
return remove(map._inner, key);
}
/**
* @dev Returns true if the key is in the map. O(1).
*/
function contains(Bytes32ToUintMap storage map, bytes32 key) internal view returns (bool) {
return contains(map._inner, key);
}
/**
* @dev Returns the number of elements in the map. O(1).
*/
function length(Bytes32ToUintMap storage map) internal view returns (uint256) {
return length(map._inner);
}
/**
* @dev Returns the element stored at position `index` in the map. 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(Bytes32ToUintMap storage map, uint256 index) internal view returns (bytes32, uint256) {
(bytes32 key, bytes32 value) = at(map._inner, index);
return (key, uint256(value));
}
/**
* @dev Tries to returns the value associated with `key`. O(1).
* Does not revert if `key` is not in the map.
*/
function tryGet(Bytes32ToUintMap storage map, bytes32 key) internal view returns (bool, uint256) {
(bool success, bytes32 value) = tryGet(map._inner, key);
return (success, uint256(value));
}
/**
* @dev Returns the value associated with `key`. O(1).
*
* Requirements:
*
* - `key` must be in the map.
*/
function get(Bytes32ToUintMap storage map, bytes32 key) internal view returns (uint256) {
return uint256(get(map._inner, key));
}
/**
* @dev Same as {get}, with a custom error message when `key` is not in the map.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryGet}.
*/
function get(
Bytes32ToUintMap storage map,
bytes32 key,
string memory errorMessage
) internal view returns (uint256) {
return uint256(get(map._inner, key, errorMessage));
}
/**
* @dev Return the an array containing all the keys
*
* 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 map grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function keys(Bytes32ToUintMap storage map) internal view returns (bytes32[] memory) {
bytes32[] memory store = keys(map._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}{
"remappings": [
"@arbitrum/=../node_modules/@arbitrum/",
"@eth-optimism/=../node_modules/@eth-optimism/",
"@openzeppelin/=../node_modules/@openzeppelin/",
"@chainlink/=../node_modules/@chainlink/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"forge-std/=lib/forge-std/src/"
],
"optimizer": {
"enabled": true,
"runs": 999999
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"evmVersion": "paris",
"viaIR": false
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_xerc20","type":"address"},{"internalType":"uint256","name":"_scale","type":"uint256"},{"internalType":"address","name":"_mailbox","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"domain","type":"uint32"},{"indexed":false,"internalType":"bytes32","name":"recipient","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"rebalancer","type":"address"}],"name":"CollateralMoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"domain","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"}],"name":"GasSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_hook","type":"address"}],"name":"HookSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_ism","type":"address"}],"name":"IsmSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"origin","type":"uint32"},{"indexed":true,"internalType":"bytes32","name":"recipient","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReceivedTransferRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"destination","type":"uint32"},{"indexed":true,"internalType":"bytes32","name":"recipient","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SentTransferRemote","type":"event"},{"inputs":[],"name":"PACKAGE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"domain","type":"uint32"},{"internalType":"contract ValueTransferBridge","name":"bridge","type":"address"}],"name":"addBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rebalancer","type":"address"}],"name":"addRebalancer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"domain","type":"uint32"}],"name":"allowedBridges","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedRebalancers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"routerDomain","type":"uint32"}],"name":"allowedRecipient","outputs":[{"internalType":"bytes32","name":"recipient","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"contract ValueTransferBridge","name":"bridge","type":"address"}],"name":"approveTokenForBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"destinationDomain","type":"uint32"}],"name":"destinationGas","outputs":[{"internalType":"uint256","name":"gasLimit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"domains","outputs":[{"internalType":"uint32[]","name":"","type":"uint32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_domain","type":"uint32"},{"internalType":"bytes32","name":"_router","type":"bytes32"}],"name":"enrollRemoteRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32[]","name":"_domains","type":"uint32[]"},{"internalType":"bytes32[]","name":"_addresses","type":"bytes32[]"}],"name":"enrollRemoteRouters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_origin","type":"uint32"},{"internalType":"bytes32","name":"_sender","type":"bytes32"},{"internalType":"bytes","name":"_message","type":"bytes"}],"name":"handle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"hook","outputs":[{"internalType":"contract IPostDispatchHook","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_hook","type":"address"},{"internalType":"address","name":"_interchainSecurityModule","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"interchainSecurityModule","outputs":[{"internalType":"contract IInterchainSecurityModule","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"localDomain","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mailbox","outputs":[{"internalType":"contract IMailbox","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_destinationDomain","type":"uint32"}],"name":"quoteGasPayment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_destinationDomain","type":"uint32"},{"internalType":"bytes32","name":"_recipient","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"quoteTransferRemote","outputs":[{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct Quote[]","name":"quotes","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"domain","type":"uint32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"contract ValueTransferBridge","name":"bridge","type":"address"}],"name":"rebalance","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint32","name":"domain","type":"uint32"},{"internalType":"contract ValueTransferBridge","name":"bridge","type":"address"}],"name":"removeBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rebalancer","type":"address"}],"name":"removeRebalancer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"domain","type":"uint32"}],"name":"removeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_domain","type":"uint32"}],"name":"routers","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"domain","type":"uint32"},{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"setDestinationGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"domain","type":"uint32"},{"internalType":"uint256","name":"gas","type":"uint256"}],"internalType":"struct GasRouter.GasRouterConfig[]","name":"gasConfigs","type":"tuple[]"}],"name":"setDestinationGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_hook","type":"address"}],"name":"setHook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"}],"name":"setInterchainSecurityModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"domain","type":"uint32"},{"internalType":"bytes32","name":"recipient","type":"bytes32"}],"name":"setRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_destination","type":"uint32"},{"internalType":"bytes32","name":"_recipient","type":"bytes32"},{"internalType":"uint256","name":"_amountOrId","type":"uint256"},{"internalType":"bytes","name":"_hookMetadata","type":"bytes"},{"internalType":"address","name":"_hook","type":"address"}],"name":"transferRemote","outputs":[{"internalType":"bytes32","name":"messageId","type":"bytes32"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_destination","type":"uint32"},{"internalType":"bytes32","name":"_recipient","type":"bytes32"},{"internalType":"uint256","name":"_amountOrId","type":"uint256"}],"name":"transferRemote","outputs":[{"internalType":"bytes32","name":"messageId","type":"bytes32"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_domain","type":"uint32"}],"name":"unenrollRemoteRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32[]","name":"_domains","type":"uint32[]"}],"name":"unenrollRemoteRouters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrappedToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
6101006040523480156200001257600080fd5b5060405162003a4a38038062003a4a8339810160408190526200003591620002de565b828282818180808080806001600160a01b0381163b6200009c5760405162461bcd60e51b815260206004820152601e60248201527f4d61696c626f78436c69656e743a20696e76616c6964206d61696c626f78000060448201526064015b60405180910390fd5b6001600160a01b03821660808190526040805163234d8e3d60e21b81529051638d3638f4916004808201926020929091908290030181865afa158015620000e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200010d91906200031f565b63ffffffff1660a0526200012133620001b1565b50505060c0939093525050506001600160a01b0383163b620001905760405162461bcd60e51b815260206004820152602160248201527f4879704552433230436f6c6c61746572616c3a20696e76616c696420746f6b656044820152603760f91b606482015260840162000093565b50506001600160a01b031660e052620001a862000203565b5050506200034e565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16156200026d5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840162000093565b60005460ff90811614620002bf576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b80516001600160a01b0381168114620002d957600080fd5b919050565b600080600060608486031215620002f457600080fd5b620002ff84620002c1565b9250602084015191506200031660408501620002c1565b90509250925092565b6000602082840312156200033257600080fd5b815163ffffffff811681146200034757600080fd5b9392505050565b60805160a05160c05160e05161367c620003ce6000396000818161066301528181610f900152818161111a015281816119bb0152818161207c015261237a01526000818161080b0152818161210901526123090152600061059901526000818161072c01528181610c530152818161216d0152612877015261367c6000f3fe6080604052600436106102a05760003560e01c806381b4e8b41161016e578063c69c8ce2116100cb578063f2ed8c531161007f578063f51e181a11610064578063f51e181a146107f9578063fa57f1571461082d578063fbaca44c1461084d57600080fd5b8063f2ed8c53146107b9578063f2fde38b146107d957600080fd5b8063de523cf3116100b0578063de523cf31461074e578063e9198bf914610779578063efae508a1461079957600080fd5b8063c69c8ce214610705578063d5438eae1461071a57600080fd5b8063996c6cc311610122578063b49c53a711610107578063b49c53a7146106a5578063c0c53b8b146106c5578063c3827115146106e557600080fd5b8063996c6cc314610651578063b1bd64361461068557600080fd5b80638d3638f4116101535780638d3638f4146105875780638da5cb5b146105d057806393c44847146105fb57600080fd5b806381b4e8b4146105475780638bd90b821461055a57600080fd5b80634e38a81d1161021c578063715018a6116101d0578063775313a1116101b5578063775313a11461049b57806377e2dc7a146104c85780637f5a7c7b146104f557600080fd5b8063715018a61461046657806371a15b381461047b57600080fd5b806356d5d4751161020157806356d5d475146104205780636a99c3331461043357806370a082311461044657600080fd5b80634e38a81d146103ed57806351debffc1461040d57600080fd5b80632ead72f61161027357806343bc4b9a1161025857806343bc4b9a1461038b578063440df4f4146103ab57806349d462ef146103cd57600080fd5b80632ead72f61461033d5780633dfd38731461036b57600080fd5b80630c979919146102a55780630e72cc06146102c75780631ba83149146102e75780632c2d80891461031d575b600080fd5b3480156102b157600080fd5b506102c56102c0366004612d72565b61086d565b005b3480156102d357600080fd5b506102c56102e2366004612d72565b610884565b3480156102f357600080fd5b50610307610302366004612da8565b6109d2565b6040516103149190612dc3565b60405180910390f35b34801561032957600080fd5b506102c5610338366004612e1d565b6109f9565b34801561034957600080fd5b5061035d610358366004612da8565b610a24565b604051908152602001610314565b34801561037757600080fd5b506102c5610386366004612d72565b610a43565b34801561039757600080fd5b506102c56103a6366004612d72565b610b84565b3480156103b757600080fd5b506103c0610b97565b6040516103149190612e47565b3480156103d957600080fd5b506102c56103e8366004612e1d565b610ba8565b3480156103f957600080fd5b506102c5610408366004612e85565b610bba565b61035d61041b366004612efe565b610be9565b6102c561042e366004612f78565b610c3b565b6102c5610441366004612fd2565b610daf565b34801561045257600080fd5b5061035d610461366004612d72565b610f48565b34801561047257600080fd5b506102c5610ffd565b34801561048757600080fd5b506102c5610496366004613057565b611011565b3480156104a757600080fd5b5061035d6104b6366004612da8565b60ca6020526000908152604090205481565b3480156104d457600080fd5b5061035d6104e3366004612da8565b60cb6020526000908152604090205481565b34801561050157600080fd5b506065546105229073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610314565b61035d610555366004613099565b61106c565b34801561056657600080fd5b5061057a610575366004613099565b61107a565b60405161031491906130cc565b34801561059357600080fd5b506105bb7f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff9091168152602001610314565b3480156105dc57600080fd5b5060335473ffffffffffffffffffffffffffffffffffffffff16610522565b34801561060757600080fd5b506106446040518060400160405280600681526020017f392e302e3136000000000000000000000000000000000000000000000000000081525081565b604051610314919061319f565b34801561065d57600080fd5b506105227f000000000000000000000000000000000000000000000000000000000000000081565b34801561069157600080fd5b506102c56106a03660046131b2565b61117d565b3480156106b157600080fd5b506102c56106c0366004612e1d565b6111ee565b3480156106d157600080fd5b506102c56106e0366004613227565b611200565b3480156106f157600080fd5b506102c5610700366004612da8565b611397565b34801561071157600080fd5b506103076113b6565b34801561072657600080fd5b506105227f000000000000000000000000000000000000000000000000000000000000000081565b34801561075a57600080fd5b5060665473ffffffffffffffffffffffffffffffffffffffff16610522565b34801561078557600080fd5b506102c5610794366004613267565b6113c2565b3480156107a557600080fd5b506102c56107b4366004612da8565b6114a1565b3480156107c557600080fd5b5061035d6107d4366004612da8565b6114b5565b3480156107e557600080fd5b506102c56107f4366004612d72565b6114e2565b34801561080557600080fd5b5061035d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561083957600080fd5b506102c56108483660046132c7565b611596565b34801561085957600080fd5b506102c5610868366004612e85565b6115df565b610875611613565b61088060cd82611694565b5050565b8073ffffffffffffffffffffffffffffffffffffffff81163b1515806108be575073ffffffffffffffffffffffffffffffffffffffff8116155b61094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f4d61696c626f78436c69656e743a20696e76616c696420636f6e74726163742060448201527f73657474696e670000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610957611613565b606680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040519081527fc47cbcc588c67679e52261c45cc315e56562f8d0ccaba16facb9093ff9498799906020015b60405180910390a15050565b63ffffffff8116600090815260cc602052604090206060906109f3906116bd565b92915050565b610a01611613565b610a0a826116ca565b5063ffffffff909116600090815260cb6020526040902055565b600080610a3b609763ffffffff8086169061172f16565b949350505050565b8073ffffffffffffffffffffffffffffffffffffffff81163b151580610a7d575073ffffffffffffffffffffffffffffffffffffffff8116155b610b09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f4d61696c626f78436c69656e743a20696e76616c696420636f6e74726163742060448201527f73657474696e67000000000000000000000000000000000000000000000000006064820152608401610946565b610b11611613565b606580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040519081527f4eab7b127c764308788622363ad3e9532de3dfba7845bd4f84c125a22544255a906020016109c6565b610b8c611613565b61088060cd82611748565b6060610ba3609761176a565b905090565b610bb0611613565b610880828261181b565b610bc2611613565b63ffffffff808316600090815260cc60205260409020610be491839061174816565b505050565b6000610c308787873488888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a9250611869915050565b979650505050505050565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614610d00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4d61696c626f78436c69656e743a2073656e646572206e6f74206d61696c626f60448201527f78000000000000000000000000000000000000000000000000000000000000006064820152608401610946565b6000610d0b856116ca565b9050838114610d9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f456e726f6c6c656420726f7574657220646f6573206e6f74206d61746368207360448201527f656e6465720000000000000000000000000000000000000000000000000000006064820152608401610946565b610da8858585856118f0565b5050505050565b610dba60cd33611972565b610e20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d43523a204f6e6c7920526562616c616e6365720000000000000000000000006044820152606401610946565b63ffffffff808416600090815260cc602052604090208491839190610e49908290849061197216565b610eaf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d43523a204e6f7420616c6c6f776564206272696467650000000000000000006044820152606401610946565b63ffffffff8616600090815260cb6020526040902054339080610ed857610ed5886116ca565b90505b610ee4888289896119a1565b604080518281526020810189905273ffffffffffffffffffffffffffffffffffffffff84169163ffffffff8b16917fb1e1b117ddf429b1b8a359fe0e978f0ae191c0f70e0babfea7acaad1b0ee8a2d91015b60405180910390a35050505050505050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526000917f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa158015610fd9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f391906132e5565b611005611613565b61100f60006119ee565b565b611019611613565b8060005b818110156110665761105484848381811061103a5761103a6132fe565b905060200201602081019061104f9190612da8565b611a65565b61105f60018261335c565b905061101d565b50505050565b6000610a3b84848434611a99565b6040805160028082526060828101909352816020015b60408051808201909152600080825260208201528152602001906001900390816110905790505090506040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016110ec868686611ad2565b81525081600081518110611102576111026132fe565b602002602001018190525060405180604001604052807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168152602001838152508160018151811061116b5761116b6132fe565b60200260200101819052509392505050565b611185611613565b60005b81811015610be4576111dc8383838181106111a5576111a56132fe565b6111bb9260206040909202019081019150612da8565b8484848181106111cd576111cd6132fe565b9050604002016020013561181b565b6111e760018261335c565b9050611188565b6111f6611613565b6108808282611b1b565b600054610100900460ff16158080156112205750600054600160ff909116105b8061123a5750303b15801561123a575060005460ff166001145b6112c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610946565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055801561132457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b61132f848484611b31565b801561106657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150505050565b61139f611613565b63ffffffff16600090815260cb6020526040812055565b6060610ba360cd6116bd565b6113ca611613565b828114611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f216c656e677468000000000000000000000000000000000000000000000000006044820152606401610946565b8260005b8181101561149957611487868683818110611454576114546132fe565b90506020020160208101906114699190612da8565b85858481811061147b5761147b6132fe565b90506020020135611b1b565b61149260018261335c565b9050611437565b505050505050565b6114a9611613565b6114b281611a65565b50565b60006109f382827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611ad2565b6114ea611613565b73ffffffffffffffffffffffffffffffffffffffff811661158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610946565b6114b2816119ee565b61159e611613565b61088073ffffffffffffffffffffffffffffffffffffffff8316827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611beb565b6115e7611613565b6115f0826116ca565b5063ffffffff808316600090815260cc60205260409020610be491839061169416565b60335473ffffffffffffffffffffffffffffffffffffffff16331461100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610946565b60006116b68373ffffffffffffffffffffffffffffffffffffffff8416611da4565b9392505050565b606060006116b683611df3565b600080806116e2609763ffffffff8087169061172f16565b9150915081156116f3579392505050565b6116fc84611e4f565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610946919061319f565b60008061173c8484611e86565b915091505b9250929050565b60006116b68373ffffffffffffffffffffffffffffffffffffffff8416611ec0565b6060600061177783611fb3565b9050805167ffffffffffffffff8111156117935761179361336f565b6040519080825280602002602001820160405280156117bc578160200160208202803683370190505b50915060005b8151811015611814578181815181106117dd576117dd6132fe565b60200260200101518382815181106117f7576117f76132fe565b63ffffffff909216602092830291909101909101526001016117c2565b5050919050565b63ffffffff8216600081815260ca6020908152604091829020849055815192835282018390527fc3de732a98b24a2b5c6f67e8a7fb057ffc14046b83968a2c73e4148d2fba978b91016109c6565b60008061187586612044565b9050600061188287612102565b9050600061189189838561212e565b90506118a08a8883898961215d565b9350888a63ffffffff167fd229aacb94204188fe8042965fa6b269c62dc5818b21238779ab64bdd17efeec846040516118db91815260200190565b60405180910390a35050509695505050505050565b60006118fc8383612210565b9050600061190a8484612239565b90503660006119198686612249565b9150915061193961192985612259565b61193285612302565b848461232e565b838863ffffffff167fba20947a325f450d232530e5f5fce293e7963499d5309a07cee84a269f2f15a685604051610f3691815260200190565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260018301602052604081205415156116b6565b6119e273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168284611beb565b611066848484846123dc565b6033805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b63ffffffff8116600090815260cb6020908152604080832083905560cc9091529020611a9090612482565b6114b2816124da565b6000611ac985858585611aab8a61252f565b60655473ffffffffffffffffffffffffffffffffffffffff16611869565b95945050505050565b60408051602081018490528082018390528151808203830181526060909101909152600090610a3b90859060655473ffffffffffffffffffffffffffffffffffffffff16612551565b610880609763ffffffff80851690849061256716565b600054610100900460ff16611bc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610946565b611bd0612572565b611bd983610a43565b611be282610884565b610be4816119ee565b801580611c8b57506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa158015611c65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8991906132e5565b155b611d17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610946565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b300000000000000000000000000000000000000000000000000000000179052610be4908490612611565b6000818152600183016020526040812054611deb575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109f3565b5060006109f3565b606081600001805480602002602001604051908101604052809291908181526020018280548015611e4357602002820191906000526020600020905b815481526020019060010190808311611e2f575b50505050509050919050565b6060611e608263ffffffff16612720565b604051602001611e70919061339e565b6040516020818303038152906040529050919050565b6000818152600283016020526040812054819080611eb557611ea885856127de565b9250600091506117419050565b600192509050611741565b60008181526001830160205260408120548015611fa9576000611ee46001836133e3565b8554909150600090611ef8906001906133e3565b9050818114611f5d576000866000018281548110611f1857611f186132fe565b9060005260206000200154905080876000018481548110611f3b57611f3b6132fe565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611f6e57611f6e6133f6565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506109f3565b60009150506109f3565b60606000611fc0836127ea565b90508067ffffffffffffffff811115611fdb57611fdb61336f565b604051908082528060200260200182016040528015612004578160200160208202803683370190505b50915060005b818110156118145761201c84826127f5565b60001c838281518110612031576120316132fe565b602090810291909101015260010161200a565b6040517f9dc29fac000000000000000000000000000000000000000000000000000000008152336004820152602481018290526060907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690639dc29fac90604401600060405180830381600087803b1580156120d557600080fd5b505af11580156120e9573d6000803e3d6000fd5b5050604080516020810190915260008152949350505050565b60006109f37f000000000000000000000000000000000000000000000000000000000000000083613425565b60608383836040516020016121459392919061343c565b60405160208183030381529060405290509392505050565b600080612169876116ca565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166310b83dc08789848989896040518763ffffffff1660e01b81526004016121cd959493929190613469565b60206040518083038185885af11580156121eb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c3091906132e5565b60008281836122208260206134c9565b60ff1692612230939291906134e2565b6116b69161350c565b60008260208361222082806134c9565b36600061173c83604081876134e2565b600073ffffffffffffffffffffffffffffffffffffffff8211156122fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f5479706543617374733a2062797465733332546f41646472657373206f76657260448201527f666c6f77000000000000000000000000000000000000000000000000000000006064820152608401610946565b5090565b60006109f37f000000000000000000000000000000000000000000000000000000000000000083613548565b6040517f40c10f1900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018590527f000000000000000000000000000000000000000000000000000000000000000016906340c10f1990604401600060405180830381600087803b1580156123be57600080fd5b505af11580156123d2573d6000803e3d6000fd5b5050505050505050565b6040517f81b4e8b400000000000000000000000000000000000000000000000000000000815263ffffffff85166004820152602481018490526044810183905273ffffffffffffffffffffffffffffffffffffffff8216906381b4e8b490349060640160206040518083038185885af115801561245d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610da891906132e5565b805460005b818110156124d2578260010160008460000183815481106124aa576124aa6132fe565b9060005260206000200154815260200190815260200160002060009055806001019050612487565b505060009055565b6124ee609763ffffffff8084169061280116565b6124f782611e4f565b90610880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610946919061319f565b63ffffffff8116600090815260ca60205260409020546060906109f39061280d565b6000610a3b84846125618761252f565b8561282b565b6110668383836128ff565b600054610100900460ff16612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610946565b61100f61291c565b6000612673826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166129bc9092919063ffffffff16565b90508051600014806126945750808060200190518101906126949190613583565b610be4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610946565b6060600061272d836129cb565b600101905060008167ffffffffffffffff81111561274d5761274d61336f565b6040519080825280601f01601f191660200182016040528015612777576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461278157509392505050565b60006116b68383612aad565b60006109f382612ac5565b60006116b68383612acf565b60006116b68383612af9565b60606109f36000833360405180602001604052806000815250612b16565b600080612837866116ca565b6040517f81d2ea9500000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906381d2ea95906128b490899085908a908a908a90600401613469565b602060405180830381865afa1580156128d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f591906132e5565b9695505050505050565b60008281526002840160205260408120829055610a3b8484612b4b565b600054610100900460ff166129b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610946565b61100f336119ee565b6060610a3b8484600085612b57565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a14577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612a40576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612a5e57662386f26fc10000830492506010015b6305f5e1008310612a76576305f5e100830492506008015b6127108310612a8a57612710830492506004015b60648310612a9c576064830492506002015b600a83106109f35760010192915050565b600081815260018301602052604081205415156116b6565b60006109f3825490565b6000826000018281548110612ae657612ae66132fe565b9060005260206000200154905092915050565b600081815260028301602052604081208190556116b68383612c65565b6060600185858585604051602001612b329594939291906135a5565b6040516020818303038152906040529050949350505050565b60006116b68383611da4565b606082471015612be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610946565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612c12919061362a565b60006040518083038185875af1925050503d8060008114612c4f576040519150601f19603f3d011682016040523d82523d6000602084013e612c54565b606091505b5091509150610c3087838387612c71565b60006116b68383611ec0565b60608315612d07578251600003612d005773ffffffffffffffffffffffffffffffffffffffff85163b612d00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610946565b5081610a3b565b610a3b8383815115612d1c5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610946919061319f565b73ffffffffffffffffffffffffffffffffffffffff811681146114b257600080fd5b600060208284031215612d8457600080fd5b81356116b681612d50565b803563ffffffff81168114612da357600080fd5b919050565b600060208284031215612dba57600080fd5b6116b682612d8f565b6020808252825182820181905260009190848201906040850190845b81811015612e1157835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101612ddf565b50909695505050505050565b60008060408385031215612e3057600080fd5b612e3983612d8f565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015612e1157835163ffffffff1683529284019291840191600101612e63565b60008060408385031215612e9857600080fd5b612ea183612d8f565b91506020830135612eb181612d50565b809150509250929050565b60008083601f840112612ece57600080fd5b50813567ffffffffffffffff811115612ee657600080fd5b60208301915083602082850101111561174157600080fd5b60008060008060008060a08789031215612f1757600080fd5b612f2087612d8f565b95506020870135945060408701359350606087013567ffffffffffffffff811115612f4a57600080fd5b612f5689828a01612ebc565b9094509250506080870135612f6a81612d50565b809150509295509295509295565b60008060008060608587031215612f8e57600080fd5b612f9785612d8f565b935060208501359250604085013567ffffffffffffffff811115612fba57600080fd5b612fc687828801612ebc565b95989497509550505050565b600080600060608486031215612fe757600080fd5b612ff084612d8f565b925060208401359150604084013561300781612d50565b809150509250925092565b60008083601f84011261302457600080fd5b50813567ffffffffffffffff81111561303c57600080fd5b6020830191508360208260051b850101111561174157600080fd5b6000806020838503121561306a57600080fd5b823567ffffffffffffffff81111561308157600080fd5b61308d85828601613012565b90969095509350505050565b6000806000606084860312156130ae57600080fd5b6130b784612d8f565b95602085013595506040909401359392505050565b602080825282518282018190526000919060409081850190868401855b82811015613124578151805173ffffffffffffffffffffffffffffffffffffffff1685528601518685015292840192908501906001016130e9565b5091979650505050505050565b60005b8381101561314c578181015183820152602001613134565b50506000910152565b6000815180845261316d816020860160208601613131565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006116b66020830184613155565b600080602083850312156131c557600080fd5b823567ffffffffffffffff808211156131dd57600080fd5b818501915085601f8301126131f157600080fd5b81358181111561320057600080fd5b8660208260061b850101111561321557600080fd5b60209290920196919550909350505050565b60008060006060848603121561323c57600080fd5b833561324781612d50565b9250602084013561325781612d50565b9150604084013561300781612d50565b6000806000806040858703121561327d57600080fd5b843567ffffffffffffffff8082111561329557600080fd5b6132a188838901613012565b909650945060208701359150808211156132ba57600080fd5b50612fc687828801613012565b600080604083850312156132da57600080fd5b8235612ea181612d50565b6000602082840312156132f757600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156109f3576109f361332d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e6f20726f7574657220656e726f6c6c656420666f7220646f6d61696e3a20008152600082516133d681601f850160208701613131565b91909101601f0192915050565b818103818111156109f3576109f361332d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b80820281158282048414176109f3576109f361332d565b8381528260208201526000825161345a816040850160208701613131565b91909101604001949350505050565b63ffffffff8616815284602082015260a06040820152600061348e60a0830186613155565b82810360608401526134a08186613155565b91505073ffffffffffffffffffffffffffffffffffffffff831660808301529695505050505050565b60ff81811683821601908111156109f3576109f361332d565b600080858511156134f257600080fd5b838611156134ff57600080fd5b5050820193919092039150565b803560208310156109f3577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b1692915050565b60008261357e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60006020828403121561359557600080fd5b815180151581146116b657600080fd5b7fffff0000000000000000000000000000000000000000000000000000000000008660f01b1681528460028201528360228201527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008360601b16604282015260008251613619816056850160208701613131565b919091016056019695505050505050565b6000825161363c818460208701613131565b919091019291505056fea264697066735822122076da10ef73074a26323557a3e5ffa891e158ed160b4b4e2f9669acf59f2a283564736f6c634300081600330000000000000000000000002416092f143378750bb29b79ed961ab195cceea500000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e
Deployed Bytecode
0x6080604052600436106102a05760003560e01c806381b4e8b41161016e578063c69c8ce2116100cb578063f2ed8c531161007f578063f51e181a11610064578063f51e181a146107f9578063fa57f1571461082d578063fbaca44c1461084d57600080fd5b8063f2ed8c53146107b9578063f2fde38b146107d957600080fd5b8063de523cf3116100b0578063de523cf31461074e578063e9198bf914610779578063efae508a1461079957600080fd5b8063c69c8ce214610705578063d5438eae1461071a57600080fd5b8063996c6cc311610122578063b49c53a711610107578063b49c53a7146106a5578063c0c53b8b146106c5578063c3827115146106e557600080fd5b8063996c6cc314610651578063b1bd64361461068557600080fd5b80638d3638f4116101535780638d3638f4146105875780638da5cb5b146105d057806393c44847146105fb57600080fd5b806381b4e8b4146105475780638bd90b821461055a57600080fd5b80634e38a81d1161021c578063715018a6116101d0578063775313a1116101b5578063775313a11461049b57806377e2dc7a146104c85780637f5a7c7b146104f557600080fd5b8063715018a61461046657806371a15b381461047b57600080fd5b806356d5d4751161020157806356d5d475146104205780636a99c3331461043357806370a082311461044657600080fd5b80634e38a81d146103ed57806351debffc1461040d57600080fd5b80632ead72f61161027357806343bc4b9a1161025857806343bc4b9a1461038b578063440df4f4146103ab57806349d462ef146103cd57600080fd5b80632ead72f61461033d5780633dfd38731461036b57600080fd5b80630c979919146102a55780630e72cc06146102c75780631ba83149146102e75780632c2d80891461031d575b600080fd5b3480156102b157600080fd5b506102c56102c0366004612d72565b61086d565b005b3480156102d357600080fd5b506102c56102e2366004612d72565b610884565b3480156102f357600080fd5b50610307610302366004612da8565b6109d2565b6040516103149190612dc3565b60405180910390f35b34801561032957600080fd5b506102c5610338366004612e1d565b6109f9565b34801561034957600080fd5b5061035d610358366004612da8565b610a24565b604051908152602001610314565b34801561037757600080fd5b506102c5610386366004612d72565b610a43565b34801561039757600080fd5b506102c56103a6366004612d72565b610b84565b3480156103b757600080fd5b506103c0610b97565b6040516103149190612e47565b3480156103d957600080fd5b506102c56103e8366004612e1d565b610ba8565b3480156103f957600080fd5b506102c5610408366004612e85565b610bba565b61035d61041b366004612efe565b610be9565b6102c561042e366004612f78565b610c3b565b6102c5610441366004612fd2565b610daf565b34801561045257600080fd5b5061035d610461366004612d72565b610f48565b34801561047257600080fd5b506102c5610ffd565b34801561048757600080fd5b506102c5610496366004613057565b611011565b3480156104a757600080fd5b5061035d6104b6366004612da8565b60ca6020526000908152604090205481565b3480156104d457600080fd5b5061035d6104e3366004612da8565b60cb6020526000908152604090205481565b34801561050157600080fd5b506065546105229073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610314565b61035d610555366004613099565b61106c565b34801561056657600080fd5b5061057a610575366004613099565b61107a565b60405161031491906130cc565b34801561059357600080fd5b506105bb7f000000000000000000000000000000000000000000000000000000000000008f81565b60405163ffffffff9091168152602001610314565b3480156105dc57600080fd5b5060335473ffffffffffffffffffffffffffffffffffffffff16610522565b34801561060757600080fd5b506106446040518060400160405280600681526020017f392e302e3136000000000000000000000000000000000000000000000000000081525081565b604051610314919061319f565b34801561065d57600080fd5b506105227f0000000000000000000000002416092f143378750bb29b79ed961ab195cceea581565b34801561069157600080fd5b506102c56106a03660046131b2565b61117d565b3480156106b157600080fd5b506102c56106c0366004612e1d565b6111ee565b3480156106d157600080fd5b506102c56106e0366004613227565b611200565b3480156106f157600080fd5b506102c5610700366004612da8565b611397565b34801561071157600080fd5b506103076113b6565b34801561072657600080fd5b506105227f0000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e81565b34801561075a57600080fd5b5060665473ffffffffffffffffffffffffffffffffffffffff16610522565b34801561078557600080fd5b506102c5610794366004613267565b6113c2565b3480156107a557600080fd5b506102c56107b4366004612da8565b6114a1565b3480156107c557600080fd5b5061035d6107d4366004612da8565b6114b5565b3480156107e557600080fd5b506102c56107f4366004612d72565b6114e2565b34801561080557600080fd5b5061035d7f000000000000000000000000000000000000000000000000000000000000000181565b34801561083957600080fd5b506102c56108483660046132c7565b611596565b34801561085957600080fd5b506102c5610868366004612e85565b6115df565b610875611613565b61088060cd82611694565b5050565b8073ffffffffffffffffffffffffffffffffffffffff81163b1515806108be575073ffffffffffffffffffffffffffffffffffffffff8116155b61094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f4d61696c626f78436c69656e743a20696e76616c696420636f6e74726163742060448201527f73657474696e670000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610957611613565b606680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040519081527fc47cbcc588c67679e52261c45cc315e56562f8d0ccaba16facb9093ff9498799906020015b60405180910390a15050565b63ffffffff8116600090815260cc602052604090206060906109f3906116bd565b92915050565b610a01611613565b610a0a826116ca565b5063ffffffff909116600090815260cb6020526040902055565b600080610a3b609763ffffffff8086169061172f16565b949350505050565b8073ffffffffffffffffffffffffffffffffffffffff81163b151580610a7d575073ffffffffffffffffffffffffffffffffffffffff8116155b610b09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f4d61696c626f78436c69656e743a20696e76616c696420636f6e74726163742060448201527f73657474696e67000000000000000000000000000000000000000000000000006064820152608401610946565b610b11611613565b606580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040519081527f4eab7b127c764308788622363ad3e9532de3dfba7845bd4f84c125a22544255a906020016109c6565b610b8c611613565b61088060cd82611748565b6060610ba3609761176a565b905090565b610bb0611613565b610880828261181b565b610bc2611613565b63ffffffff808316600090815260cc60205260409020610be491839061174816565b505050565b6000610c308787873488888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a9250611869915050565b979650505050505050565b3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e1614610d00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4d61696c626f78436c69656e743a2073656e646572206e6f74206d61696c626f60448201527f78000000000000000000000000000000000000000000000000000000000000006064820152608401610946565b6000610d0b856116ca565b9050838114610d9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f456e726f6c6c656420726f7574657220646f6573206e6f74206d61746368207360448201527f656e6465720000000000000000000000000000000000000000000000000000006064820152608401610946565b610da8858585856118f0565b5050505050565b610dba60cd33611972565b610e20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d43523a204f6e6c7920526562616c616e6365720000000000000000000000006044820152606401610946565b63ffffffff808416600090815260cc602052604090208491839190610e49908290849061197216565b610eaf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d43523a204e6f7420616c6c6f776564206272696467650000000000000000006044820152606401610946565b63ffffffff8616600090815260cb6020526040902054339080610ed857610ed5886116ca565b90505b610ee4888289896119a1565b604080518281526020810189905273ffffffffffffffffffffffffffffffffffffffff84169163ffffffff8b16917fb1e1b117ddf429b1b8a359fe0e978f0ae191c0f70e0babfea7acaad1b0ee8a2d91015b60405180910390a35050505050505050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526000917f0000000000000000000000002416092f143378750bb29b79ed961ab195cceea5909116906370a0823190602401602060405180830381865afa158015610fd9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f391906132e5565b611005611613565b61100f60006119ee565b565b611019611613565b8060005b818110156110665761105484848381811061103a5761103a6132fe565b905060200201602081019061104f9190612da8565b611a65565b61105f60018261335c565b905061101d565b50505050565b6000610a3b84848434611a99565b6040805160028082526060828101909352816020015b60408051808201909152600080825260208201528152602001906001900390816110905790505090506040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016110ec868686611ad2565b81525081600081518110611102576111026132fe565b602002602001018190525060405180604001604052807f0000000000000000000000002416092f143378750bb29b79ed961ab195cceea573ffffffffffffffffffffffffffffffffffffffff168152602001838152508160018151811061116b5761116b6132fe565b60200260200101819052509392505050565b611185611613565b60005b81811015610be4576111dc8383838181106111a5576111a56132fe565b6111bb9260206040909202019081019150612da8565b8484848181106111cd576111cd6132fe565b9050604002016020013561181b565b6111e760018261335c565b9050611188565b6111f6611613565b6108808282611b1b565b600054610100900460ff16158080156112205750600054600160ff909116105b8061123a5750303b15801561123a575060005460ff166001145b6112c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610946565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055801561132457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b61132f848484611b31565b801561106657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150505050565b61139f611613565b63ffffffff16600090815260cb6020526040812055565b6060610ba360cd6116bd565b6113ca611613565b828114611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f216c656e677468000000000000000000000000000000000000000000000000006044820152606401610946565b8260005b8181101561149957611487868683818110611454576114546132fe565b90506020020160208101906114699190612da8565b85858481811061147b5761147b6132fe565b90506020020135611b1b565b61149260018261335c565b9050611437565b505050505050565b6114a9611613565b6114b281611a65565b50565b60006109f382827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611ad2565b6114ea611613565b73ffffffffffffffffffffffffffffffffffffffff811661158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610946565b6114b2816119ee565b61159e611613565b61088073ffffffffffffffffffffffffffffffffffffffff8316827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611beb565b6115e7611613565b6115f0826116ca565b5063ffffffff808316600090815260cc60205260409020610be491839061169416565b60335473ffffffffffffffffffffffffffffffffffffffff16331461100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610946565b60006116b68373ffffffffffffffffffffffffffffffffffffffff8416611da4565b9392505050565b606060006116b683611df3565b600080806116e2609763ffffffff8087169061172f16565b9150915081156116f3579392505050565b6116fc84611e4f565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610946919061319f565b60008061173c8484611e86565b915091505b9250929050565b60006116b68373ffffffffffffffffffffffffffffffffffffffff8416611ec0565b6060600061177783611fb3565b9050805167ffffffffffffffff8111156117935761179361336f565b6040519080825280602002602001820160405280156117bc578160200160208202803683370190505b50915060005b8151811015611814578181815181106117dd576117dd6132fe565b60200260200101518382815181106117f7576117f76132fe565b63ffffffff909216602092830291909101909101526001016117c2565b5050919050565b63ffffffff8216600081815260ca6020908152604091829020849055815192835282018390527fc3de732a98b24a2b5c6f67e8a7fb057ffc14046b83968a2c73e4148d2fba978b91016109c6565b60008061187586612044565b9050600061188287612102565b9050600061189189838561212e565b90506118a08a8883898961215d565b9350888a63ffffffff167fd229aacb94204188fe8042965fa6b269c62dc5818b21238779ab64bdd17efeec846040516118db91815260200190565b60405180910390a35050509695505050505050565b60006118fc8383612210565b9050600061190a8484612239565b90503660006119198686612249565b9150915061193961192985612259565b61193285612302565b848461232e565b838863ffffffff167fba20947a325f450d232530e5f5fce293e7963499d5309a07cee84a269f2f15a685604051610f3691815260200190565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260018301602052604081205415156116b6565b6119e273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002416092f143378750bb29b79ed961ab195cceea5168284611beb565b611066848484846123dc565b6033805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b63ffffffff8116600090815260cb6020908152604080832083905560cc9091529020611a9090612482565b6114b2816124da565b6000611ac985858585611aab8a61252f565b60655473ffffffffffffffffffffffffffffffffffffffff16611869565b95945050505050565b60408051602081018490528082018390528151808203830181526060909101909152600090610a3b90859060655473ffffffffffffffffffffffffffffffffffffffff16612551565b610880609763ffffffff80851690849061256716565b600054610100900460ff16611bc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610946565b611bd0612572565b611bd983610a43565b611be282610884565b610be4816119ee565b801580611c8b57506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa158015611c65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8991906132e5565b155b611d17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610946565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b300000000000000000000000000000000000000000000000000000000179052610be4908490612611565b6000818152600183016020526040812054611deb575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109f3565b5060006109f3565b606081600001805480602002602001604051908101604052809291908181526020018280548015611e4357602002820191906000526020600020905b815481526020019060010190808311611e2f575b50505050509050919050565b6060611e608263ffffffff16612720565b604051602001611e70919061339e565b6040516020818303038152906040529050919050565b6000818152600283016020526040812054819080611eb557611ea885856127de565b9250600091506117419050565b600192509050611741565b60008181526001830160205260408120548015611fa9576000611ee46001836133e3565b8554909150600090611ef8906001906133e3565b9050818114611f5d576000866000018281548110611f1857611f186132fe565b9060005260206000200154905080876000018481548110611f3b57611f3b6132fe565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611f6e57611f6e6133f6565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506109f3565b60009150506109f3565b60606000611fc0836127ea565b90508067ffffffffffffffff811115611fdb57611fdb61336f565b604051908082528060200260200182016040528015612004578160200160208202803683370190505b50915060005b818110156118145761201c84826127f5565b60001c838281518110612031576120316132fe565b602090810291909101015260010161200a565b6040517f9dc29fac000000000000000000000000000000000000000000000000000000008152336004820152602481018290526060907f0000000000000000000000002416092f143378750bb29b79ed961ab195cceea573ffffffffffffffffffffffffffffffffffffffff1690639dc29fac90604401600060405180830381600087803b1580156120d557600080fd5b505af11580156120e9573d6000803e3d6000fd5b5050604080516020810190915260008152949350505050565b60006109f37f000000000000000000000000000000000000000000000000000000000000000183613425565b60608383836040516020016121459392919061343c565b60405160208183030381529060405290509392505050565b600080612169876116ca565b90507f0000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e73ffffffffffffffffffffffffffffffffffffffff166310b83dc08789848989896040518763ffffffff1660e01b81526004016121cd959493929190613469565b60206040518083038185885af11580156121eb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c3091906132e5565b60008281836122208260206134c9565b60ff1692612230939291906134e2565b6116b69161350c565b60008260208361222082806134c9565b36600061173c83604081876134e2565b600073ffffffffffffffffffffffffffffffffffffffff8211156122fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f5479706543617374733a2062797465733332546f41646472657373206f76657260448201527f666c6f77000000000000000000000000000000000000000000000000000000006064820152608401610946565b5090565b60006109f37f000000000000000000000000000000000000000000000000000000000000000183613548565b6040517f40c10f1900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018590527f0000000000000000000000002416092f143378750bb29b79ed961ab195cceea516906340c10f1990604401600060405180830381600087803b1580156123be57600080fd5b505af11580156123d2573d6000803e3d6000fd5b5050505050505050565b6040517f81b4e8b400000000000000000000000000000000000000000000000000000000815263ffffffff85166004820152602481018490526044810183905273ffffffffffffffffffffffffffffffffffffffff8216906381b4e8b490349060640160206040518083038185885af115801561245d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610da891906132e5565b805460005b818110156124d2578260010160008460000183815481106124aa576124aa6132fe565b9060005260206000200154815260200190815260200160002060009055806001019050612487565b505060009055565b6124ee609763ffffffff8084169061280116565b6124f782611e4f565b90610880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610946919061319f565b63ffffffff8116600090815260ca60205260409020546060906109f39061280d565b6000610a3b84846125618761252f565b8561282b565b6110668383836128ff565b600054610100900460ff16612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610946565b61100f61291c565b6000612673826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166129bc9092919063ffffffff16565b90508051600014806126945750808060200190518101906126949190613583565b610be4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610946565b6060600061272d836129cb565b600101905060008167ffffffffffffffff81111561274d5761274d61336f565b6040519080825280601f01601f191660200182016040528015612777576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461278157509392505050565b60006116b68383612aad565b60006109f382612ac5565b60006116b68383612acf565b60006116b68383612af9565b60606109f36000833360405180602001604052806000815250612b16565b600080612837866116ca565b6040517f81d2ea9500000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e16906381d2ea95906128b490899085908a908a908a90600401613469565b602060405180830381865afa1580156128d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f591906132e5565b9695505050505050565b60008281526002840160205260408120829055610a3b8484612b4b565b600054610100900460ff166129b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610946565b61100f336119ee565b6060610a3b8484600085612b57565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a14577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612a40576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612a5e57662386f26fc10000830492506010015b6305f5e1008310612a76576305f5e100830492506008015b6127108310612a8a57612710830492506004015b60648310612a9c576064830492506002015b600a83106109f35760010192915050565b600081815260018301602052604081205415156116b6565b60006109f3825490565b6000826000018281548110612ae657612ae66132fe565b9060005260206000200154905092915050565b600081815260028301602052604081208190556116b68383612c65565b6060600185858585604051602001612b329594939291906135a5565b6040516020818303038152906040529050949350505050565b60006116b68383611da4565b606082471015612be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610946565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612c12919061362a565b60006040518083038185875af1925050503d8060008114612c4f576040519150601f19603f3d011682016040523d82523d6000602084013e612c54565b606091505b5091509150610c3087838387612c71565b60006116b68383611ec0565b60608315612d07578251600003612d005773ffffffffffffffffffffffffffffffffffffffff85163b612d00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610946565b5081610a3b565b610a3b8383815115612d1c5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610946919061319f565b73ffffffffffffffffffffffffffffffffffffffff811681146114b257600080fd5b600060208284031215612d8457600080fd5b81356116b681612d50565b803563ffffffff81168114612da357600080fd5b919050565b600060208284031215612dba57600080fd5b6116b682612d8f565b6020808252825182820181905260009190848201906040850190845b81811015612e1157835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101612ddf565b50909695505050505050565b60008060408385031215612e3057600080fd5b612e3983612d8f565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015612e1157835163ffffffff1683529284019291840191600101612e63565b60008060408385031215612e9857600080fd5b612ea183612d8f565b91506020830135612eb181612d50565b809150509250929050565b60008083601f840112612ece57600080fd5b50813567ffffffffffffffff811115612ee657600080fd5b60208301915083602082850101111561174157600080fd5b60008060008060008060a08789031215612f1757600080fd5b612f2087612d8f565b95506020870135945060408701359350606087013567ffffffffffffffff811115612f4a57600080fd5b612f5689828a01612ebc565b9094509250506080870135612f6a81612d50565b809150509295509295509295565b60008060008060608587031215612f8e57600080fd5b612f9785612d8f565b935060208501359250604085013567ffffffffffffffff811115612fba57600080fd5b612fc687828801612ebc565b95989497509550505050565b600080600060608486031215612fe757600080fd5b612ff084612d8f565b925060208401359150604084013561300781612d50565b809150509250925092565b60008083601f84011261302457600080fd5b50813567ffffffffffffffff81111561303c57600080fd5b6020830191508360208260051b850101111561174157600080fd5b6000806020838503121561306a57600080fd5b823567ffffffffffffffff81111561308157600080fd5b61308d85828601613012565b90969095509350505050565b6000806000606084860312156130ae57600080fd5b6130b784612d8f565b95602085013595506040909401359392505050565b602080825282518282018190526000919060409081850190868401855b82811015613124578151805173ffffffffffffffffffffffffffffffffffffffff1685528601518685015292840192908501906001016130e9565b5091979650505050505050565b60005b8381101561314c578181015183820152602001613134565b50506000910152565b6000815180845261316d816020860160208601613131565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006116b66020830184613155565b600080602083850312156131c557600080fd5b823567ffffffffffffffff808211156131dd57600080fd5b818501915085601f8301126131f157600080fd5b81358181111561320057600080fd5b8660208260061b850101111561321557600080fd5b60209290920196919550909350505050565b60008060006060848603121561323c57600080fd5b833561324781612d50565b9250602084013561325781612d50565b9150604084013561300781612d50565b6000806000806040858703121561327d57600080fd5b843567ffffffffffffffff8082111561329557600080fd5b6132a188838901613012565b909650945060208701359150808211156132ba57600080fd5b50612fc687828801613012565b600080604083850312156132da57600080fd5b8235612ea181612d50565b6000602082840312156132f757600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156109f3576109f361332d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e6f20726f7574657220656e726f6c6c656420666f7220646f6d61696e3a20008152600082516133d681601f850160208701613131565b91909101601f0192915050565b818103818111156109f3576109f361332d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b80820281158282048414176109f3576109f361332d565b8381528260208201526000825161345a816040850160208701613131565b91909101604001949350505050565b63ffffffff8616815284602082015260a06040820152600061348e60a0830186613155565b82810360608401526134a08186613155565b91505073ffffffffffffffffffffffffffffffffffffffff831660808301529695505050505050565b60ff81811683821601908111156109f3576109f361332d565b600080858511156134f257600080fd5b838611156134ff57600080fd5b5050820193919092039150565b803560208310156109f3577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b1692915050565b60008261357e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60006020828403121561359557600080fd5b815180151581146116b657600080fd5b7fffff0000000000000000000000000000000000000000000000000000000000008660f01b1681528460028201528360228201527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008360601b16604282015260008251613619816056850160208701613131565b919091016056019695505050505050565b6000825161363c818460208701613131565b919091019291505056fea264697066735822122076da10ef73074a26323557a3e5ffa891e158ed160b4b4e2f9669acf59f2a283564736f6c63430008160033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002416092f143378750bb29b79ed961ab195cceea500000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e
-----Decoded View---------------
Arg [0] : _xerc20 (address): 0x2416092f143378750bb29b79eD961ab195CcEea5
Arg [1] : _scale (uint256): 1
Arg [2] : _mailbox (address): 0x3a464f746D23Ab22155710f44dB16dcA53e0775E
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000002416092f143378750bb29b79ed961ab195cceea5
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 0000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e
Deployed Bytecode Sourcemap
186:665:28:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3280:114:32;;;;;;;;;;-1:-1:-1;3280:114:32;;;;;:::i;:::-;;:::i;:::-;;2959:222:16;;;;;;;;;;-1:-1:-1;2959:222:16;;;;;:::i;:::-;;:::i;1913:150:32:-;;;;;;;;;;-1:-1:-1;1913:150:32;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2069:220;;;;;;;;;;-1:-1:-1;2069:220:32;;;;;:::i;:::-;;:::i;1478:158:17:-;;;;;;;;;;-1:-1:-1;1478:158:17;;;;;:::i;:::-;;:::i;:::-;;;1871:25:35;;;1859:2;1844:18;1478:158:17;1725:177:35;2597:174:16;;;;;;;;;;-1:-1:-1;2597:174:16;;;;;:::i;:::-;;:::i;3400:120:32:-;;;;;;;;;;-1:-1:-1;3400:120:32;;;;;:::i;:::-;;:::i;1075:104:17:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1481:122:15:-;;;;;;;;;;-1:-1:-1;1481:122:15;;;;;:::i;:::-;;:::i;2670:170:32:-;;;;;;;;;;-1:-1:-1;2670:170:32;;;;;:::i;:::-;;:::i;3232:463:34:-;;;;;;:::i;:::-;;:::i;3474:338:17:-;;;;;;:::i;:::-;;:::i;3972:607:32:-;;;;;;:::i;:::-;;:::i;2123:148:27:-;;;;;;;;;;-1:-1:-1;2123:148:27;;;;;:::i;:::-;;:::i;2064:101:0:-;;;;;;;;;;;;;:::i;3036:257:17:-;;;;;;;;;;-1:-1:-1;3036:257:17;;;;;:::i;:::-;;:::i;687:75:15:-;;;;;;;;;;-1:-1:-1;687:75:15;;;;;:::i;:::-;;;;;;;;;;;;;;780:73:32;;;;;;;;;;-1:-1:-1;780:73:32;;;;;:::i;:::-;;;;;;;;;;;;;;1226:29:16;;;;;;;;;;-1:-1:-1;1226:29:16;;;;;;;;;;;6448:42:35;6436:55;;;6418:74;;6406:2;6391:18;1226:29:16;6246:252:35;2154:270:34;;;;;;:::i;:::-;;:::i;2277:451:27:-;;;;;;;;;;-1:-1:-1;2277:451:27;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1184:35:16:-;;;;;;;;;;;;;;;;;;7840:10:35;7828:23;;;7810:42;;7798:2;7783:18;1184:35:16;7666:192:35;1441:85:0;;;;;;;;;;-1:-1:-1;1513:6:0;;;;1441:85;;234:49:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;1480:36:27:-;;;;;;;;;;;;;;;1056:250:15;;;;;;;;;;-1:-1:-1;1056:250:15;;;;;:::i;:::-;;:::i;2136:164:17:-;;;;;;;;;;-1:-1:-1;2136:164:17;;;;;:::i;:::-;;:::i;1890:227:27:-;;;;;;;;;;-1:-1:-1;1890:227:27;;;;;:::i;:::-;;:::i;2295:107:32:-;;;;;;;;;;-1:-1:-1;2295:107:32;;;;;:::i;:::-;;:::i;1784:123::-;;;;;;;;;;;;;:::i;1144:33:16:-;;;;;;;;;;;;;;;2276:179;;;;;;;;;;-1:-1:-1;2423:25:16;;;;2276:179;;2517:373:17;;;;;;;;;;-1:-1:-1;2517:373:17;;;;;:::i;:::-;;:::i;1761:120::-;;;;;;;;;;-1:-1:-1;1761:120:17;;;;;:::i;:::-;;:::i;7773:216:34:-;;;;;;;;;;-1:-1:-1;7773:216:34;;;;;:::i;:::-;;:::i;2314:198:0:-;;;;;;;;;;-1:-1:-1;2314:198:0;;;;;:::i;:::-;;:::i;335:30:31:-;;;;;;;;;;;;;;;3090:184:32;;;;;;;;;;-1:-1:-1;3090:184:32;;;;;:::i;:::-;;:::i;2408:256::-;;;;;;;;;;-1:-1:-1;2408:256:32;;;;;:::i;:::-;;:::i;3280:114::-;1334:13:0;:11;:13::i;:::-;3352:35:32::1;:19;3376:10:::0;3352:23:::1;:35::i;:::-;;3280:114:::0;:::o;2959:222:16:-;3053:7;1702:19:7;;;;:23;;1689:56:16;;;-1:-1:-1;1722:23:16;;;;1689:56;1668:142;;;;;;;12268:2:35;1668:142:16;;;12250:21:35;12307:2;12287:18;;;12280:30;12346:34;12326:18;;;12319:62;12417:9;12397:18;;;12390:37;12444:19;;1668:142:16;;;;;;;;;1334:13:0::1;:11;:13::i;:::-;3082:25:16::2;:62:::0;;;::::2;;::::0;::::2;::::0;;::::2;::::0;;;3159:15:::2;::::0;6418:74:35;;;3159:15:16::2;::::0;6406:2:35;6391:18;3159:15:16::2;;;;;;;;2959:222:::0;;:::o;1913:150:32:-;2024:23;;;;;;;:15;:23;;;;;1989:16;;2024:32;;:30;:32::i;:::-;2017:39;1913:150;-1:-1:-1;;1913:150:32:o;2069:220::-;1334:13:0;:11;:13::i;:::-;2207:29:32::1;2229:6;2207:21;:29::i;:::-;-1:-1:-1::0;2246:24:32::1;::::0;;::::1;;::::0;;;:16:::1;:24;::::0;;;;:36;2069:220::o;1478:158:17:-;1540:7;;1581:24;:8;:24;;;;;:15;:24;:::i;:::-;1559:46;1478:158;-1:-1:-1;;;;1478:158:17:o;2597:174:16:-;2677:5;1702:19:7;;;;:23;;1689:56:16;;;-1:-1:-1;1722:23:16;;;;1689:56;1668:142;;;;;;;12268:2:35;1668:142:16;;;12250:21:35;12307:2;12287:18;;;12280:30;12346:34;12326:18;;;12319:62;12417:9;12397:18;;;12390:37;12444:19;;1668:142:16;12066:403:35;1668:142:16;1334:13:0::1;:11;:13::i;:::-;2704:4:16::2;:31:::0;;;::::2;;::::0;::::2;::::0;;::::2;::::0;;;2750:14:::2;::::0;6418:74:35;;;2750:14:16::2;::::0;6406:2:35;6391:18;2750:14:16::2;6246:252:35::0;3400:120:32;1334:13:0;:11;:13::i;:::-;3475:38:32::1;:19;3502:10:::0;3475:26:::1;:38::i;1075:104:17:-:0;1117:15;1151:21;:8;:19;:21::i;:::-;1144:28;;1075:104;:::o;1481:122:15:-;1334:13:0;:11;:13::i;:::-;1565:31:15::1;1584:6;1592:3;1565:18;:31::i;2670:170:32:-:0;1334:13:0;:11;:13::i;:::-;2786:23:32::1;::::0;;::::1;;::::0;;;:15:::1;:23;::::0;;;;:47:::1;::::0;2825:6;;2786:30:::1;:47;:::i;:::-;;2670:170:::0;;:::o;3232:463:34:-;3443:17;3491:197;3524:12;3554:10;3582:11;3611:9;3638:13;;3491:197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3669:5:34;;-1:-1:-1;3491:15:34;;-1:-1:-1;;3491:197:34:i;:::-;3472:216;3232:463;-1:-1:-1;;;;;;;3232:463:34:o;3474:338:17:-;1974:10:16;:30;1996:7;1974:30;;1953:110;;;;;;;12676:2:35;1953:110:16;;;12658:21:35;12715:2;12695:18;;;12688:30;12754:34;12734:18;;;12727:62;12825:3;12805:18;;;12798:31;12846:19;;1953:110:16;12474:397:35;1953:110:16;3634:15:17::1;3652:30;3674:7;3652:21;:30::i;:::-;3634:48;;3711:7;3700;:18;3692:68;;;::::0;::::1;::::0;;13078:2:35;3692:68:17::1;::::0;::::1;13060:21:35::0;13117:2;13097:18;;;13090:30;13156:34;13136:18;;;13129:62;13227:7;13207:18;;;13200:35;13252:19;;3692:68:17::1;12876:401:35::0;3692:68:17::1;3770:35;3778:7;3787;3796:8;;3770:7;:35::i;:::-;3624:188;3474:338:::0;;;;:::o;3972:607:32:-;1423:42;:19;929:10:3;1423:28:32;:42::i;:::-;1402:109;;;;;;;13484:2:35;1402:109:32;;;13466:21:35;13523:2;13503:18;;;13496:30;13562:22;13542:18;;;13535:50;13602:18;;1402:109:32;13282:344:35;1402:109:32;1658:23:::1;::::0;;::::1;1615:40;1658:23:::0;;;:15:::1;:23;::::0;;;;4130:6;;4138;;1658:23;1699:33:::1;::::0;1658:23;;4138:6;;1699:16:::1;:33;:::i;:::-;1691:69;;;::::0;::::1;::::0;;13833:2:35;1691:69:32::1;::::0;::::1;13815:21:35::0;13872:2;13852:18;;;13845:30;13911:25;13891:18;;;13884:53;13954:18;;1691:69:32::1;13631:347:35::0;1691:69:32::1;4220:24:::2;::::0;::::2;4156:18;4220:24:::0;;;:16:::2;:24;::::0;;;;;929:10:3;;4220:24:32;4254:95:::2;;4309:29;4331:6;4309:21;:29::i;:::-;4297:41;;4254:95;4359:45;4370:6;4378:9;4389:6;4397;4359:10;:45::i;:::-;4419:153;::::0;;14157:25:35;;;14213:2;14198:18;;14191:34;;;4419:153:32::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;14130:18:35;4419:153:32::2;;;;;;;;4146:433;;1605:173:::1;1521:1;;3972:607:::0;;;:::o;2123:148:27:-;2232:32;;;;;:22;6436:55:35;;;2232:32:27;;;6418:74:35;2206:7:27;;2232:12;:22;;;;;;6391:18:35;;2232:32:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;2064:101:0:-;1334:13;:11;:13::i;:::-;2128:30:::1;2155:1;2128:18;:30::i;:::-;2064:101::o:0;3036:257:17:-;1334:13:0;:11;:13::i;:::-;3163:8:17;3146:14:::1;3188:99;3212:6;3208:1;:10;3188:99;;;3242:34;3264:8;;3273:1;3264:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3242:21;:34::i;:::-;3220:6;3225:1;3220:6:::0;::::1;:::i;:::-;;;3188:99;;;;3136:157;3036:257:::0;;:::o;2154:270:34:-;2304:17;2352:65;2368:12;2382:10;2394:11;2407:9;2352:15;:65::i;2277:451:27:-;2482:14;;;2494:1;2482:14;;;2440:21;2482:14;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;2482:14:27;;;;;;;;;;;;;;;2473:23;;2518:127;;;;;;;;2553:1;2518:127;;;;;;2577:57;2594:18;2614:10;2626:7;2577:16;:57::i;:::-;2518:127;;;2506:6;2513:1;2506:9;;;;;;;;:::i;:::-;;;;;;:139;;;;2667:54;;;;;;;;2689:12;2667:54;;;;;;2712:7;2667:54;;;2655:6;2662:1;2655:9;;;;;;;;:::i;:::-;;;;;;:66;;;;2277:451;;;;;:::o;1056:250:15:-;1334:13:0;:11;:13::i;:::-;1170:9:15::1;1165:135;1185:21:::0;;::::1;1165:135;;;1230:59;1249:10;;1260:1;1249:13;;;;;;;:::i;:::-;:20;::::0;::::1;:13;::::0;;::::1;;:20:::0;;::::1;::::0;-1:-1:-1;1249:20:15::1;:::i;:::-;1271:10;;1282:1;1271:13;;;;;;;:::i;:::-;;;;;;:17;;;1230:18;:59::i;:::-;1208:6;1213:1;1208:6:::0;::::1;:::i;:::-;;;1165:135;;2136:164:17::0;1334:13:0;:11;:13::i;:::-;2256:37:17::1;2276:7;2285;2256:19;:37::i;1890:227:27:-:0;3279:19:1;3302:13;;;;;;3301:14;;3347:34;;;;-1:-1:-1;3365:12:1;;3380:1;3365:12;;;;:16;3347:34;3346:108;;;-1:-1:-1;3426:4:1;1702:19:7;:23;;;3387:66:1;;-1:-1:-1;3436:12:1;;;;;:17;3387:66;3325:201;;;;;;;15324:2:35;3325:201:1;;;15306:21:35;15363:2;15343:18;;;15336:30;15402:34;15382:18;;;15375:62;15473:16;15453:18;;;15446:44;15507:19;;3325:201:1;15122:410:35;3325:201:1;3536:12;:16;;;;3551:1;3536:16;;;3562:65;;;;3596:13;:20;;;;;;;;3562:65;2043:67:27::1;2069:5;2076:25;2103:6;2043:25;:67::i;:::-;3651:14:1::0;3647:99;;;3697:5;3681:21;;;;;;3721:14;;-1:-1:-1;15689:36:35;;3721:14:1;;15677:2:35;15662:18;3721:14:1;;;;;;;3269:483;1890:227:27;;;:::o;2295:107:32:-;1334:13:0;:11;:13::i;:::-;2371:24:32::1;;;::::0;;;:16:::1;:24;::::0;;;;2364:31;2295:107::o;1784:123::-;1837:16;1872:28;:19;:26;:28::i;2517:373:17:-;1334:13:0;:11;:13::i;:::-;2672:36:17;;::::1;2664:56;;;::::0;::::1;::::0;;15938:2:35;2664:56:17::1;::::0;::::1;15920:21:35::0;15977:1;15957:18;;;15950:29;16015:9;15995:18;;;15988:37;16042:18;;2664:56:17::1;15736:330:35::0;2664:56:17::1;2747:8:::0;2730:14:::1;2772:112;2796:6;2792:1;:10;2772:112;;;2826:47;2846:8;;2855:1;2846:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2859:10;;2870:1;2859:13;;;;;;;:::i;:::-;;;;;;;2826:19;:47::i;:::-;2804:6;2809:1;2804:6:::0;::::1;:::i;:::-;;;2772:112;;;;2654:236;2517:373:::0;;;;:::o;1761:120::-;1334:13:0;:11;:13::i;:::-;1844:30:17::1;1866:7;1844:21;:30::i;:::-;1761:120:::0;:::o;7773:216:34:-;7877:7;7915:67;7932:18;7877:7;7964:17;7915:16;:67::i;2314:198:0:-;1334:13;:11;:13::i;:::-;2402:22:::1;::::0;::::1;2394:73;;;::::0;::::1;::::0;;16273:2:35;2394:73:0::1;::::0;::::1;16255:21:35::0;16312:2;16292:18;;;16285:30;16351:34;16331:18;;;16324:62;16422:8;16402:18;;;16395:36;16448:19;;2394:73:0::1;16071:402:35::0;2394:73:0::1;2477:28;2496:8;2477:18;:28::i;3090:184:32:-:0;1334:13:0;:11;:13::i;:::-;3214:53:32::1;:17;::::0;::::1;3240:6:::0;3249:17:::1;3214;:53::i;2408:256::-:0;1334:13:0;:11;:13::i;:::-;2574:29:32::1;2596:6;2574:21;:29::i;:::-;-1:-1:-1::0;2613:23:32::1;::::0;;::::1;;::::0;;;:15:::1;:23;::::0;;;;:44:::1;::::0;2649:6;;2613:27:::1;:44;:::i;1599:130:0:-:0;1513:6;;1662:23;1513:6;929:10:3;1662:23:0;1654:68;;;;;;;16680:2:35;1654:68:0;;;16662:21:35;;;16699:18;;;16692:30;16758:34;16738:18;;;16731:62;16810:18;;1654:68:0;16478:356:35;8305:150:13;8375:4;8398:50;8403:3;8423:23;;;8398:4;:50::i;:::-;8391:57;8305:150;-1:-1:-1;;;8305:150:13:o;10259:300::-;10322:16;10350:22;10375:19;10383:3;10375:7;:19::i;5319:280:17:-;5403:7;;;5458:24;:8;:24;;;;;:15;:24;:::i;:::-;5422:60;;;;5496:9;5492:54;;;5528:7;5319:280;-1:-1:-1;;;5319:280:17:o;5492:54::-;5562:29;5583:7;5562:20;:29::i;:::-;5555:37;;;;;;;;;;;:::i;1719:174:24:-;1823:4;;1855:31;:3;1881;1855:17;:31::i;:::-;1848:38;;;;1719:174;;;;;;:::o;8623:156:13:-;8696:4;8719:53;8727:3;8747:23;;;8719:7;:53::i;1044:333:24:-;1131:21;1164:28;1195:9;1200:3;1195:4;:9::i;:::-;1164:40;;1235:11;:18;1222:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1222:32:24;;1214:40;;1269:9;1264:107;1288:11;:18;1284:1;:22;1264:107;;;1345:11;1357:1;1345:14;;;;;;;;:::i;:::-;;;;;;;1327:5;1333:1;1327:8;;;;;;;;:::i;:::-;:33;;;;:8;;;;;;;;;;;:33;1308:3;;1264:107;;;;1154:223;1044:333;;;:::o;2281:144:15:-;2356:22;;;;;;;:14;:22;;;;;;;;;:28;;;2399:19;;17011:42:35;;;17069:18;;17062:34;;;2399:19:15;;16984:18:35;2399:19:15;16839:263:35;4147:780:34;4373:17;4402:27;4432:32;4452:11;4432:19;:32::i;:::-;4402:62;;4475:22;4500:28;4516:11;4500:15;:28::i;:::-;4475:53;;4538:26;4567:109;4600:10;4624:14;4652;4567:19;:109::i;:::-;4538:138;;4699:145;4729:12;4755:6;4775:13;4802;4829:5;4699:16;:145::i;:::-;4687:157;;4893:10;4879:12;4860:60;;;4905:14;4860:60;;;;1871:25:35;;1859:2;1844:18;;1725:177;4860:60:34;;;;;;;;4392:535;;;4147:780;;;;;;;;:::o;8682:475::-;8815:17;8835:20;:8;;:18;:20::i;:::-;8815:40;;8865:14;8882:17;:8;;:15;:17::i;:::-;8865:34;;8909:23;;8935:19;:8;;:17;:19::i;:::-;8909:45;;;;8964:121;8989:28;:9;:26;:28::i;:::-;9031:22;9046:6;9031:14;:22::i;:::-;9067:8;;8964:11;:121::i;:::-;9132:9;9123:7;9100:50;;;9143:6;9100:50;;;;1871:25:35;;1859:2;1844:18;;1725:177;8860:165:13;8993:23;;;8940:4;4351:19;;;:12;;;:19;;;;;;:24;;8963:55;4255:127;3452:412:27;3616:67;:24;:12;:24;3659:6;3675;3616:24;:67::i;:::-;3693:164;3750:6;3781:9;3812:6;3840;3693:34;:164::i;2666:187:0:-;2758:6;;;;2774:17;;;;;;;;;;;2806:40;;2758:6;;;2774:17;2758:6;;2806:40;;2739:16;;2806:40;2729:124;2666:187;:::o;5479:206:32:-;5560:24;;;;;;;:16;:24;;;;;;;;5553:31;;;5601:15;:23;;;;;5594:38;;:6;:38::i;:::-;5642:36;5671:6;5642:28;:36::i;3701:440:34:-;3860:17;3908:226;3941:12;3971:10;3999:11;4028:6;4052:37;4076:12;4052:23;:37::i;:::-;4115:4;;;;3908:15;:226::i;:::-;3889:245;3701:440;-1:-1:-1;;;;;3701:440:34:o;7995:351::-;599:37:33;;;;;;23015:19:35;;;23050:12;;;23043:28;;;599:37:33;;;;;;;;;568:12;23087::35;;;599:37:33;;;8138:7:34;;8176:163;;8218:18;;8320:4;;;;8176:24;:163::i;4186:150:17:-;4298:31;:8;:31;;;;;4320:8;;4298:12;:31;:::i;3225:316:16:-;5374:13:1;;;;;;;5366:69;;;;;;;17309:2:35;5366:69:1;;;17291:21:35;17348:2;17328:18;;;17321:30;17387:34;17367:18;;;17360:62;17458:13;17438:18;;;17431:41;17489:19;;5366:69:1;17107:407:35;5366:69:1;3393:16:16::1;:14;:16::i;:::-;3419:14;3427:5;3419:7;:14::i;:::-;3443:55;3471:26;3443:27;:55::i;:::-;3508:26;3527:6;3508:18;:26::i;1818:573:6:-:0;2143:10;;;2142:62;;-1:-1:-1;2159:39:6;;;;;2183:4;2159:39;;;17754:34:35;2159:15:6;17824::35;;;17804:18;;;17797:43;2159:15:6;;;;;17666:18:35;;2159:39:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;2142:62;2121:163;;;;;;;18053:2:35;2121:163:6;;;18035:21:35;18092:2;18072:18;;;18065:30;18131:34;18111:18;;;18104:62;18202:24;18182:18;;;18175:52;18244:19;;2121:163:6;17851:418:35;2121:163:6;2321:62;;;18478:42:35;18466:55;;2321:62:6;;;18448:74:35;18538:18;;;;18531:34;;;2321:62:6;;;;;;;;;;18421:18:35;;;;2321:62:6;;;;;;;;;;2344:22;2321:62;;;2294:90;;2314:5;;2294:19;:90::i;2214:404:13:-;2277:4;4351:19;;;:12;;;:19;;;;;;2293:319;;-1:-1:-1;2335:23:13;;;;;;;;:11;:23;;;;;;;;;;;;;2515:18;;2493:19;;;:12;;;:19;;;;;;:40;;;;2547:11;;2293:319;-1:-1:-1;2596:5:13;2589:12;;5570:109;5626:16;5661:3;:11;;5654:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5570:109;;;:::o;5605:248:17:-;5688:13;5814:18;:7;:16;;;:18::i;:::-;5732:114;;;;;;;;:::i;:::-;;;;;;;;;;;;;5713:133;;5605:248;;;:::o;4166:298:12:-;4251:4;4292:16;;;:11;;;:16;;;;;;4251:4;;4292:16;4318:140;;4365:18;4374:3;4379;4365:8;:18::i;:::-;4357:39;-1:-1:-1;4393:1:12;;-1:-1:-1;4357:39:12;;-1:-1:-1;4357:39:12;4318:140;4435:4;;-1:-1:-1;4441:5:12;-1:-1:-1;4427:20:12;;2786:1388:13;2852:4;2989:19;;;:12;;;:19;;;;;;3023:15;;3019:1149;;3392:21;3416:14;3429:1;3416:10;:14;:::i;:::-;3464:18;;3392:38;;-1:-1:-1;3444:17:13;;3464:22;;3485:1;;3464:22;:::i;:::-;3444:42;;3518:13;3505:9;:26;3501:398;;3551:17;3571:3;:11;;3583:9;3571:22;;;;;;;;:::i;:::-;;;;;;;;;3551:42;;3722:9;3693:3;:11;;3705:13;3693:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3805:23;;;:12;;;:23;;;;;:36;;;3501:398;3977:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4069:3;:12;;:19;4082:5;4069:19;;;;;;;;;;;4062:26;;;4110:4;4103:11;;;;;;;3019:1149;4152:5;4145:12;;;;;725:313:24;806:22;840:15;858:19;:3;:17;:19::i;:::-;840:37;;909:7;895:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;895:22:24;;887:30;;932:9;927:105;951:7;947:1;:11;927:105;;;998:22;:3;1018:1;998:19;:22::i;:::-;990:31;;979:5;985:1;979:8;;;;;;;;:::i;:::-;;;;;;;;;;:42;960:3;;927:105;;417:210:28;541:60;;;;;577:10;541:60;;;18448:74:35;18538:18;;;18531:34;;;508:21:28;;557:12;541:35;;;;;18421:18:35;;541:60:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;611:9:28;;;;;;;;;-1:-1:-1;611:9:28;;;417:210;-1:-1:-1;;;;417:210:28:o;596:179:31:-;697:22;748:20;763:5;748:12;:20;:::i;248:216:33:-;378:12;426:10;438:7;447:9;409:48;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;402:55;;248:216;;;;;:::o;5859:526:17:-;6062:7;6081:15;6099:41;6121:18;6099:21;:41::i;:::-;6081:59;;6169:7;:16;;;6193:6;6218:18;6254:7;6279:12;6309:13;6358:5;6169:209;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;649:155:33:-;715:7;749;715;749;774:21;715:7;793:2;774:21;:::i;:::-;749:47;;;;;;;;;:::i;:::-;741:56;;;:::i;810:155::-;873:7;915;189:2;915:7;937:18;189:2;;937:18;:::i;1113:144::-;1192:14;;1225:25;:7;239:2;1225:7;;:25;:::i;298:263:26:-;361:7;426:17;401:43;;;380:126;;;;;;;21848:2:35;380:126:26;;;21830:21:35;21887:2;21867:18;;;21860:30;21926:34;21906:18;;;21899:62;21997:6;21977:18;;;21970:34;22021:19;;380:126:26;21646:400:35;380:126:26;-1:-1:-1;547:4:26;298:263::o;902:178:31:-;1004:20;1051:22;1068:5;1051:14;:22;:::i;633:216:28:-;782:60;;;;;:35;18466:55:35;;;782:60:28;;;18448:74:35;18538:18;;;18531:34;;;798:12:28;782:35;;;;18421:18:35;;782:60:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;633:216;;;;:::o;5691:325:32:-;5854:155;;;;;22749:10:35;22737:23;;5854:155:32;;;22719:42:35;22777:18;;;22770:34;;;22820:18;;;22813:34;;;5854:21:32;;;;;;5883:9;;22692:18:35;;5854:155:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;4814:249::-;4893:18;;4879:11;4921:94;4945:3;4941:1;:7;4921:94;;;4976:3;:12;;:28;4989:3;:11;;5001:1;4989:14;;;;;;;;:::i;:::-;;;;;;;;;4976:28;;;;;;;;;;;4969:35;;;4950:3;;;;;4921:94;;;-1:-1:-1;;5041:11:32;5363:23;;3280:114::o;4443:145:17:-;4525:24;:8;:24;;;;;:15;:24;:::i;:::-;4551:29;4572:7;4551:20;:29::i;:::-;4517:64;;;;;;;;;;;;;;:::i;2067:208:15:-;2239:28;;;;;;;:14;:28;;;;;;2158:12;;2201:67;;:37;:67::i;2838:368::-;2988:7;3026:173;3065:12;3095;3125:37;3149:12;3125:23;:37::i;:::-;3180:5;3026:21;:173::i;1383:162:24:-;1503:35;:3;1526;1532:5;1503:14;:35::i;1003:95:0:-;5374:13:1;;;;;;;5366:69;;;;;;;17309:2:35;5366:69:1;;;17291:21:35;17348:2;17328:18;;;17321:30;17387:34;17367:18;;;17360:62;17458:13;17438:18;;;17431:41;17489:19;;5366:69:1;17107:407:35;5366:69:1;1065:26:0::1;:24;:26::i;5196:642:6:-:0;5615:23;5641:69;5669:4;5641:69;;;;;;;;;;;;;;;;;5649:5;5641:27;;;;:69;;;;;:::i;:::-;5615:95;;5728:10;:17;5749:1;5728:22;:56;;;;5765:10;5754:30;;;;;;;;;;;;:::i;:::-;5720:111;;;;;;;23594:2:35;5720:111:6;;;23576:21:35;23633:2;23613:18;;;23606:30;23672:34;23652:18;;;23645:62;23743:12;23723:18;;;23716:40;23773:19;;5720:111:6;23392:406:35;447:696:9;503:13;552:14;569:17;580:5;569:10;:17::i;:::-;589:1;569:21;552:38;;604:20;638:6;627:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;627:18:9;-1:-1:-1;604:41:9;-1:-1:-1;765:28:9;;;781:2;765:28;820:280;851:5;;990:8;985:2;974:14;;969:30;851:5;956:44;1044:2;1035:11;;;-1:-1:-1;1064:21:9;820:280;1064:21;-1:-1:-1;1120:6:9;447:696;-1:-1:-1;;;447:696:9:o;3128:140:12:-;3215:4;3238:23;:3;3257;3238:18;:23::i;3358:123::-;3430:7;3456:18;:3;:16;:18::i;7096:129:13:-;7170:7;7196:22;7200:3;7212:5;7196:3;:22::i;1899:160:24:-;1998:4;2021:31;:3;2047;2021:17;:31::i;5827:173:18:-;5909:12;5940:53;5963:1;5967:9;5978:10;5940:53;;;;;;;;;;;;:14;:53::i;6859:502:17:-;7048:7;7067:15;7085:41;7107:18;7085:21;:41::i;:::-;7155:199;;;;;7067:59;;-1:-1:-1;7155:21:17;:7;:21;;;;:199;;7194:18;;7067:59;;7255:12;;7285:13;;7334:5;;7155:199;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7136:218;6859:502;-1:-1:-1;;;;;;6859:502:17:o;2543:174:12:-;2635:4;2651:16;;;:11;;;:16;;;;;:24;;;2692:18;2651:3;2663;2692:13;:18::i;1104:111:0:-;5374:13:1;;;;;;;5366:69;;;;;;;17309:2:35;5366:69:1;;;17291:21:35;17348:2;17328:18;;;17321:30;17387:34;17367:18;;;17360:62;17458:13;17438:18;;;17431:41;17489:19;;5366:69:1;17107:407:35;5366:69:1;1176:32:0::1;929:10:3::0;1176:18:0::1;:32::i;4108:223:7:-:0;4241:12;4272:52;4294:6;4302:4;4308:1;4311:12;4272:21;:52::i;10139:916:10:-;10192:7;;10276:8;10267:17;;10263:103;;10313:8;10304:17;;;-1:-1:-1;10349:2:10;10339:12;10263:103;10392:8;10383:5;:17;10379:103;;10429:8;10420:17;;;-1:-1:-1;10465:2:10;10455:12;10379:103;10508:8;10499:5;:17;10495:103;;10545:8;10536:17;;;-1:-1:-1;10581:2:10;10571:12;10495:103;10624:7;10615:5;:16;10611:100;;10660:7;10651:16;;;-1:-1:-1;10695:1:10;10685:11;10611:100;10737:7;10728:5;:16;10724:100;;10773:7;10764:16;;;-1:-1:-1;10808:1:10;10798:11;10724:100;10850:7;10841:5;:16;10837:100;;10886:7;10877:16;;;-1:-1:-1;10921:1:10;10911:11;10837:100;10963:7;10954:5;:16;10950:66;;11000:1;10990:11;11042:6;10139:916;-1:-1:-1;;10139:916:10:o;6420:138:13:-;6500:4;4351:19;;;:12;;;:19;;;;;;:24;;6523:28;4255:127;6639:115;6702:7;6728:19;6736:3;4545:18;;4463:107;4912:118;4979:7;5005:3;:11;;5017:5;5005:18;;;;;;;;:::i;:::-;;;;;;;;;4998:25;;4912:118;;;;:::o;2885:164:12:-;2965:4;2988:16;;;:11;;;:16;;;;;2981:23;;;3021:21;2988:3;3000;3021:16;:21::i;4815:401:18:-;4992:12;1026:1;5094:9;5121;5148:14;5180:15;5035:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5016:193;;4815:401;;;;;;:::o;5919:123:13:-;5989:4;6012:23;6017:3;6029:5;6012:4;:23::i;5165:446:7:-;5330:12;5387:5;5362:21;:30;;5354:81;;;;;;;24728:2:35;5354:81:7;;;24710:21:35;24767:2;24747:18;;;24740:30;24806:34;24786:18;;;24779:62;24877:8;24857:18;;;24850:36;24903:19;;5354:81:7;24526:402:35;5354:81:7;5446:12;5460:23;5487:6;:11;;5506:5;5513:4;5487:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5445:73;;;;5535:69;5562:6;5570:7;5579:10;5591:12;5535:26;:69::i;6210:129:13:-;6283:4;6306:26;6314:3;6326:5;6306:7;:26::i;7671:628:7:-;7851:12;7879:7;7875:418;;;7906:10;:17;7927:1;7906:22;7902:286;;1702:19;;;;8113:60;;;;;;;25427:2:35;8113:60:7;;;25409:21:35;25466:2;25446:18;;;25439:30;25505:31;25485:18;;;25478:59;25554:18;;8113:60:7;25225:353:35;8113:60:7;-1:-1:-1;8208:10:7;8201:17;;7875:418;8249:33;8257:10;8269:12;8980:17;;:21;8976:379;;9208:10;9202:17;9264:15;9251:10;9247:2;9243:19;9236:44;8976:379;9331:12;9324:20;;;;;;;;;;;:::i;14:154:35:-;100:42;93:5;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:247;232:6;285:2;273:9;264:7;260:23;256:32;253:52;;;301:1;298;291:12;253:52;340:9;327:23;359:31;384:5;359:31;:::i;425:163::-;492:20;;552:10;541:22;;531:33;;521:61;;578:1;575;568:12;521:61;425:163;;;:::o;593:184::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;743:28;761:9;743:28;:::i;782:681::-;953:2;1005:21;;;1075:13;;978:18;;;1097:22;;;924:4;;953:2;1176:15;;;;1150:2;1135:18;;;924:4;1219:218;1233:6;1230:1;1227:13;1219:218;;;1298:13;;1313:42;1294:62;1282:75;;1412:15;;;;1377:12;;;;1255:1;1248:9;1219:218;;;-1:-1:-1;1454:3:35;;782:681;-1:-1:-1;;;;;;782:681:35:o;1468:252::-;1535:6;1543;1596:2;1584:9;1575:7;1571:23;1567:32;1564:52;;;1612:1;1609;1602:12;1564:52;1635:28;1653:9;1635:28;:::i;:::-;1625:38;1710:2;1695:18;;;;1682:32;;-1:-1:-1;;;1468:252:35:o;1907:647::-;2076:2;2128:21;;;2198:13;;2101:18;;;2220:22;;;2047:4;;2076:2;2299:15;;;;2273:2;2258:18;;;2047:4;2342:186;2356:6;2353:1;2350:13;2342:186;;;2421:13;;2436:10;2417:30;2405:43;;2503:15;;;;2468:12;;;;2378:1;2371:9;2342:186;;2816:347;2911:6;2919;2972:2;2960:9;2951:7;2947:23;2943:32;2940:52;;;2988:1;2985;2978:12;2940:52;3011:28;3029:9;3011:28;:::i;:::-;3001:38;;3089:2;3078:9;3074:18;3061:32;3102:31;3127:5;3102:31;:::i;:::-;3152:5;3142:15;;;2816:347;;;;;:::o;3168:::-;3219:8;3229:6;3283:3;3276:4;3268:6;3264:17;3260:27;3250:55;;3301:1;3298;3291:12;3250:55;-1:-1:-1;3324:20:35;;3367:18;3356:30;;3353:50;;;3399:1;3396;3389:12;3353:50;3436:4;3428:6;3424:17;3412:29;;3488:3;3481:4;3472:6;3464;3460:19;3456:30;3453:39;3450:59;;;3505:1;3502;3495:12;3520:754;3625:6;3633;3641;3649;3657;3665;3718:3;3706:9;3697:7;3693:23;3689:33;3686:53;;;3735:1;3732;3725:12;3686:53;3758:28;3776:9;3758:28;:::i;:::-;3748:38;;3833:2;3822:9;3818:18;3805:32;3795:42;;3884:2;3873:9;3869:18;3856:32;3846:42;;3939:2;3928:9;3924:18;3911:32;3966:18;3958:6;3955:30;3952:50;;;3998:1;3995;3988:12;3952:50;4037:58;4087:7;4078:6;4067:9;4063:22;4037:58;:::i;:::-;4114:8;;-1:-1:-1;4011:84:35;-1:-1:-1;;4199:3:35;4184:19;;4171:33;4213:31;4171:33;4213:31;:::i;:::-;4263:5;4253:15;;;3520:754;;;;;;;;:::o;4279:549::-;4366:6;4374;4382;4390;4443:2;4431:9;4422:7;4418:23;4414:32;4411:52;;;4459:1;4456;4449:12;4411:52;4482:28;4500:9;4482:28;:::i;:::-;4472:38;;4557:2;4546:9;4542:18;4529:32;4519:42;;4612:2;4601:9;4597:18;4584:32;4639:18;4631:6;4628:30;4625:50;;;4671:1;4668;4661:12;4625:50;4710:58;4760:7;4751:6;4740:9;4736:22;4710:58;:::i;:::-;4279:549;;;;-1:-1:-1;4787:8:35;-1:-1:-1;;;;4279:549:35:o;4833:415::-;4937:6;4945;4953;5006:2;4994:9;4985:7;4981:23;4977:32;4974:52;;;5022:1;5019;5012:12;4974:52;5045:28;5063:9;5045:28;:::i;:::-;5035:38;;5120:2;5109:9;5105:18;5092:32;5082:42;;5174:2;5163:9;5159:18;5146:32;5187:31;5212:5;5187:31;:::i;:::-;5237:5;5227:15;;;4833:415;;;;;:::o;5435:366::-;5497:8;5507:6;5561:3;5554:4;5546:6;5542:17;5538:27;5528:55;;5579:1;5576;5569:12;5528:55;-1:-1:-1;5602:20:35;;5645:18;5634:30;;5631:50;;;5677:1;5674;5667:12;5631:50;5714:4;5706:6;5702:17;5690:29;;5774:3;5767:4;5757:6;5754:1;5750:14;5742:6;5738:27;5734:38;5731:47;5728:67;;;5791:1;5788;5781:12;5806:435;5891:6;5899;5952:2;5940:9;5931:7;5927:23;5923:32;5920:52;;;5968:1;5965;5958:12;5920:52;6008:9;5995:23;6041:18;6033:6;6030:30;6027:50;;;6073:1;6070;6063:12;6027:50;6112:69;6173:7;6164:6;6153:9;6149:22;6112:69;:::i;:::-;6200:8;;6086:95;;-1:-1:-1;5806:435:35;-1:-1:-1;;;;5806:435:35:o;6503:320::-;6579:6;6587;6595;6648:2;6636:9;6627:7;6623:23;6619:32;6616:52;;;6664:1;6661;6654:12;6616:52;6687:28;6705:9;6687:28;:::i;:::-;6677:38;6762:2;6747:18;;6734:32;;-1:-1:-1;6813:2:35;6798:18;;;6785:32;;6503:320;-1:-1:-1;;;6503:320:35:o;6828:833::-;7045:2;7097:21;;;7167:13;;7070:18;;;7189:22;;;7016:4;;7045:2;7230;;7248:18;;;;7289:15;;;7016:4;7332:303;7346:6;7343:1;7340:13;7332:303;;;7405:13;;7447:9;;7458:42;7443:58;7431:71;;7542:11;;7536:18;7522:12;;;7515:40;7575:12;;;;7610:15;;;;7368:1;7361:9;7332:303;;;-1:-1:-1;7652:3:35;;6828:833;-1:-1:-1;;;;;;;6828:833:35:o;8094:250::-;8179:1;8189:113;8203:6;8200:1;8197:13;8189:113;;;8279:11;;;8273:18;8260:11;;;8253:39;8225:2;8218:10;8189:113;;;-1:-1:-1;;8336:1:35;8318:16;;8311:27;8094:250::o;8349:330::-;8391:3;8429:5;8423:12;8456:6;8451:3;8444:19;8472:76;8541:6;8534:4;8529:3;8525:14;8518:4;8511:5;8507:16;8472:76;:::i;:::-;8593:2;8581:15;8598:66;8577:88;8568:98;;;;8668:4;8564:109;;8349:330;-1:-1:-1;;8349:330:35:o;8684:220::-;8833:2;8822:9;8815:21;8796:4;8853:45;8894:2;8883:9;8879:18;8871:6;8853:45;:::i;9154:650::-;9275:6;9283;9336:2;9324:9;9315:7;9311:23;9307:32;9304:52;;;9352:1;9349;9342:12;9304:52;9392:9;9379:23;9421:18;9462:2;9454:6;9451:14;9448:34;;;9478:1;9475;9468:12;9448:34;9516:6;9505:9;9501:22;9491:32;;9561:7;9554:4;9550:2;9546:13;9542:27;9532:55;;9583:1;9580;9573:12;9532:55;9623:2;9610:16;9649:2;9641:6;9638:14;9635:34;;;9665:1;9662;9655:12;9635:34;9718:7;9713:2;9703:6;9700:1;9696:14;9692:2;9688:23;9684:32;9681:45;9678:65;;;9739:1;9736;9729:12;9678:65;9770:2;9762:11;;;;;9792:6;;-1:-1:-1;9154:650:35;;-1:-1:-1;;;;9154:650:35:o;9809:529::-;9886:6;9894;9902;9955:2;9943:9;9934:7;9930:23;9926:32;9923:52;;;9971:1;9968;9961:12;9923:52;10010:9;9997:23;10029:31;10054:5;10029:31;:::i;:::-;10079:5;-1:-1:-1;10136:2:35;10121:18;;10108:32;10149:33;10108:32;10149:33;:::i;:::-;10201:7;-1:-1:-1;10260:2:35;10245:18;;10232:32;10273:33;10232:32;10273:33;:::i;10856:770::-;10977:6;10985;10993;11001;11054:2;11042:9;11033:7;11029:23;11025:32;11022:52;;;11070:1;11067;11060:12;11022:52;11110:9;11097:23;11139:18;11180:2;11172:6;11169:14;11166:34;;;11196:1;11193;11186:12;11166:34;11235:69;11296:7;11287:6;11276:9;11272:22;11235:69;:::i;:::-;11323:8;;-1:-1:-1;11209:95:35;-1:-1:-1;11411:2:35;11396:18;;11383:32;;-1:-1:-1;11427:16:35;;;11424:36;;;11456:1;11453;11446:12;11424:36;;11495:71;11558:7;11547:8;11536:9;11532:24;11495:71;:::i;11631:430::-;11741:6;11749;11802:2;11790:9;11781:7;11777:23;11773:32;11770:52;;;11818:1;11815;11808:12;11770:52;11857:9;11844:23;11876:31;11901:5;11876:31;:::i;14236:184::-;14306:6;14359:2;14347:9;14338:7;14334:23;14330:32;14327:52;;;14375:1;14372;14365:12;14327:52;-1:-1:-1;14398:16:35;;14236:184;-1:-1:-1;14236:184:35:o;14425:::-;14477:77;14474:1;14467:88;14574:4;14571:1;14564:15;14598:4;14595:1;14588:15;14614:184;14666:77;14663:1;14656:88;14763:4;14760:1;14753:15;14787:4;14784:1;14777:15;14803:125;14868:9;;;14889:10;;;14886:36;;;14902:18;;:::i;14933:184::-;14985:77;14982:1;14975:88;15082:4;15079:1;15072:15;15106:4;15103:1;15096:15;18576:453;18828:33;18823:3;18816:46;18798:3;18891:6;18885:13;18907:75;18975:6;18970:2;18965:3;18961:12;18954:4;18946:6;18942:17;18907:75;:::i;:::-;19002:16;;;;19020:2;18998:25;;18576:453;-1:-1:-1;;18576:453:35:o;19034:128::-;19101:9;;;19122:11;;;19119:37;;;19136:18;;:::i;19167:184::-;19219:77;19216:1;19209:88;19316:4;19313:1;19306:15;19340:4;19337:1;19330:15;19356:168;19429:9;;;19460;;19477:15;;;19471:22;;19457:37;19447:71;;19498:18;;:::i;19529:424::-;19744:6;19739:3;19732:19;19781:6;19776:2;19771:3;19767:12;19760:28;19714:3;19817:6;19811:13;19833:73;19899:6;19894:2;19889:3;19885:12;19880:2;19872:6;19868:15;19833:73;:::i;:::-;19926:16;;;;19944:2;19922:25;;19529:424;-1:-1:-1;;;;19529:424:35:o;19958:685::-;20271:10;20263:6;20259:23;20248:9;20241:42;20319:6;20314:2;20303:9;20299:18;20292:34;20362:3;20357:2;20346:9;20342:18;20335:31;20222:4;20389:46;20430:3;20419:9;20415:19;20407:6;20389:46;:::i;:::-;20483:9;20475:6;20471:22;20466:2;20455:9;20451:18;20444:50;20511:33;20537:6;20529;20511:33;:::i;:::-;20503:41;;;20593:42;20585:6;20581:55;20575:3;20564:9;20560:19;20553:84;19958:685;;;;;;;;:::o;20837:148::-;20925:4;20904:12;;;20918;;;20900:31;;20943:13;;20940:39;;;20959:18;;:::i;20990:331::-;21095:9;21106;21148:8;21136:10;21133:24;21130:44;;;21170:1;21167;21160:12;21130:44;21199:6;21189:8;21186:20;21183:40;;;21219:1;21216;21209:12;21183:40;-1:-1:-1;;21245:23:35;;;21290:25;;;;;-1:-1:-1;20990:331:35:o;21326:315::-;21446:19;;21485:2;21477:11;;21474:161;;;21557:66;21546:2;21542:12;;;21539:1;21535:20;21531:93;21520:105;21326:315;;;;:::o;22240:274::-;22280:1;22306;22296:189;;22341:77;22338:1;22331:88;22442:4;22439:1;22432:15;22470:4;22467:1;22460:15;22296:189;-1:-1:-1;22499:9:35;;22240:274::o;23110:277::-;23177:6;23230:2;23218:9;23209:7;23205:23;23201:32;23198:52;;;23246:1;23243;23236:12;23198:52;23278:9;23272:16;23331:5;23324:13;23317:21;23310:5;23307:32;23297:60;;23353:1;23350;23343:12;23803:718;24094:66;24085:6;24080:3;24076:16;24072:89;24067:3;24060:102;24191:6;24187:1;24182:3;24178:11;24171:27;24228:6;24223:2;24218:3;24214:12;24207:28;24286:66;24277:6;24273:2;24269:15;24265:88;24260:2;24255:3;24251:12;24244:110;24042:3;24383:6;24377:13;24399:75;24467:6;24462:2;24457:3;24453:12;24446:4;24438:6;24434:17;24399:75;:::i;:::-;24494:16;;;;24512:2;24490:25;;23803:718;-1:-1:-1;;;;;;23803:718:35:o;24933:287::-;25062:3;25100:6;25094:13;25116:66;25175:6;25170:3;25163:4;25155:6;25151:17;25116:66;:::i;:::-;25198:16;;;;;24933:287;-1:-1:-1;;24933:287:35:o
Swarm Source
ipfs://76da10ef73074a26323557a3e5ffa891e158ed160b4b4e2f9669acf59f2a2835
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in MON
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.