ETH Price: $1,642.17 (+2.60%)
Gas: 16 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
Value
Initialize152753992022-08-04 10:45:26420 days 5 hrs ago1659609926IN
Lido: Arbitrum L1 ERC20 Token Gateway Imp
0 ETH0.000695739.97284028
0x61012060152753272022-08-04 10:26:22420 days 5 hrs ago1659608782IN
 Create: L1ERC20TokenGateway
0 ETH0.0243691210.55913216

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
L1ERC20TokenGateway

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 100000 runs

Other Settings:
default evmVersion
File 1 of 20 : L1ERC20TokenGateway.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.10;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

import {IL1TokenGateway, IInterchainTokenGateway} from "./interfaces/IL1TokenGateway.sol";

import {L1CrossDomainEnabled} from "./L1CrossDomainEnabled.sol";
import {L1OutboundDataParser} from "./libraries/L1OutboundDataParser.sol";
import {InterchainERC20TokenGateway} from "./InterchainERC20TokenGateway.sol";

/// @author psirex
/// @notice Contract implements ITokenGateway interface and with counterpart L2ERC20TokenGatewy
///     allows bridging registered ERC20 compatible tokens between Ethereum and Arbitrum chains
contract L1ERC20TokenGateway is
    InterchainERC20TokenGateway,
    L1CrossDomainEnabled,
    IL1TokenGateway
{
    using SafeERC20 for IERC20;

    /// @param inbox_ Address of the Arbitrum’s Inbox contract in the L1 chain
    /// @param router_ Address of the router in the L1 chain
    /// @param counterpartGateway_ Address of the counterpart L2 gateway
    /// @param l1Token_ Address of the bridged token in the L1 chain
    /// @param l2Token_ Address of the token minted on the Arbitrum chain when token bridged
    constructor(
        address inbox_,
        address router_,
        address counterpartGateway_,
        address l1Token_,
        address l2Token_
    )
        InterchainERC20TokenGateway(
            router_,
            counterpartGateway_,
            l1Token_,
            l2Token_
        )
        L1CrossDomainEnabled(inbox_)
    {}

    /// @inheritdoc IL1TokenGateway
    function outboundTransfer(
        address l1Token_,
        address to_,
        uint256 amount_,
        uint256 maxGas_,
        uint256 gasPriceBid_,
        bytes calldata data_
    )
        external
        payable
        whenDepositsEnabled
        onlyNonZeroAccount(to_)
        onlySupportedL1Token(l1Token_)
        returns (bytes memory)
    {
        (address from, uint256 maxSubmissionCost) = L1OutboundDataParser.decode(
            router,
            data_
        );

        IERC20(l1Token_).safeTransferFrom(from, address(this), amount_);

        uint256 retryableTicketId = _sendOutboundTransferMessage(
            from,
            to_,
            amount_,
            CrossDomainMessageOptions({
                maxGas: maxGas_,
                callValue: 0,
                gasPriceBid: gasPriceBid_,
                maxSubmissionCost: maxSubmissionCost
            })
        );

        emit DepositInitiated(l1Token, from, to_, retryableTicketId, amount_);

        return abi.encode(retryableTicketId);
    }

    /// @inheritdoc IInterchainTokenGateway
    function finalizeInboundTransfer(
        address l1Token_,
        address from_,
        address to_,
        uint256 amount_,
        bytes calldata // data_
    )
        external
        whenWithdrawalsEnabled
        onlySupportedL1Token(l1Token_)
        onlyFromCrossDomainAccount(counterpartGateway)
    {
        IERC20(l1Token_).safeTransfer(to_, amount_);

        // The current implementation doesn't support fast withdrawals, so we
        // always use 0 for the exitNum argument in the event
        emit WithdrawalFinalized(l1Token_, from_, to_, 0, amount_);
    }

    function _sendOutboundTransferMessage(
        address from_,
        address to_,
        uint256 amount_,
        CrossDomainMessageOptions memory messageOptions
    ) private returns (uint256) {
        return
            sendCrossDomainMessage(
                from_,
                counterpartGateway,
                getOutboundCalldata(l1Token, from_, to_, amount_, ""),
                messageOptions
            );
    }
}

File 2 of 20 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 3 of 20 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 4 of 20 : IL1TokenGateway.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.10;

import {IInterchainTokenGateway} from "./IInterchainTokenGateway.sol";

/// @author psirex
/// @notice L1 part of the tokens bridge compatible with Arbitrum's GatewayRouter
interface IL1TokenGateway is IInterchainTokenGateway {
    /// @notice Initiates the tokens bridging from the Ethereum into the Arbitrum chain
    /// @param l1Token_ Address in the L1 chain of the token to bridge
    /// @param to_ Address of the recipient of the token on the corresponding chain
    /// @param amount_ Amount of tokens to bridge
    /// @param maxGas_ Gas limit for immediate L2 execution attempt
    /// @param gasPriceBid_ L2 gas price bid for immediate L2 execution attempt
    /// @param data_ Additional data required for the transaction
    function outboundTransfer(
        address l1Token_,
        address to_,
        uint256 amount_,
        uint256 maxGas_,
        uint256 gasPriceBid_,
        bytes calldata data_
    ) external payable returns (bytes memory);

    event DepositInitiated(
        address l1Token,
        address indexed from,
        address indexed to,
        uint256 indexed sequenceNumber,
        uint256 amount
    );

    event WithdrawalFinalized(
        address l1Token,
        address indexed from,
        address indexed to,
        uint256 indexed exitNum,
        uint256 amount
    );
}

File 5 of 20 : L1CrossDomainEnabled.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.10;

import {IInbox} from "./interfaces/IInbox.sol";
import {IBridge} from "./interfaces/IBridge.sol";
import {IOutbox} from "./interfaces/IOutbox.sol";

/// @author psirex
/// @notice A helper contract to simplify Ethereum to Arbitrum communication process process
///     via Retryable Tickets
contract L1CrossDomainEnabled {
    /// @notice Address of the Arbitrum's Inbox contract
    IInbox public immutable inbox;

    /// @param inbox_ Address of the Arbitrum's Inbox contract
    constructor(address inbox_) {
        inbox = IInbox(inbox_);
    }

    /// @dev Properties required to create RetryableTicket
    /// @param maxGas Gas limit for immediate L2 execution attempt
    /// @param callValue Call-value for L2 transaction
    /// @param gasPriceBid L2 Gas price bid for immediate L2 execution attempt
    /// @param maxSubmissionCost Amount of ETH allocated to pay for the base submission fee
    struct CrossDomainMessageOptions {
        uint256 maxGas;
        uint256 callValue;
        uint256 gasPriceBid;
        uint256 maxSubmissionCost;
    }

    /// @notice Creates a Retryable Ticket via Inbox.createRetryableTicket function using
    ///     the provided arguments
    /// @param sender_ Address of the sender of the message
    /// @param recipient_ Address of the recipient of the message on the L2 chain
    /// @param data_ Data passed to the recipient_ in the message
    /// @param msgOptions_ Instance of the `CrossDomainMessageOptions` struct
    /// @return seqNum Unique id of created Retryable Ticket.
    function sendCrossDomainMessage(
        address sender_,
        address recipient_,
        bytes memory data_,
        CrossDomainMessageOptions memory msgOptions_
    ) internal returns (uint256 seqNum) {
        if (msgOptions_.maxSubmissionCost == 0) {
            revert ErrorNoMaxSubmissionCost();
        }

        uint256 minEthValue = msgOptions_.callValue +
            msgOptions_.maxSubmissionCost +
            (msgOptions_.maxGas * msgOptions_.gasPriceBid);

        if (msg.value < minEthValue) {
            revert ErrorETHValueTooLow();
        }

        seqNum = inbox.createRetryableTicket{value: msg.value}(
            recipient_,
            msgOptions_.callValue,
            msgOptions_.maxSubmissionCost,
            sender_,
            sender_,
            msgOptions_.maxGas,
            msgOptions_.gasPriceBid,
            data_
        );

        emit TxToL2(sender_, recipient_, seqNum, data_);
    }

    /// @notice Validates that transaction was initiated by the crossDomainAccount_ address from
    ///     the L2 chain
    modifier onlyFromCrossDomainAccount(address crossDomainAccount_) {
        address bridge = inbox.bridge();

        // a message coming from the counterpart gateway was executed by the bridge
        if (msg.sender != bridge) {
            revert ErrorUnauthorizedBridge();
        }

        address l2ToL1Sender = IOutbox(IBridge(bridge).activeOutbox())
            .l2ToL1Sender();

        // and the outbox reports that the L2 address of the sender is the counterpart gateway
        if (l2ToL1Sender != crossDomainAccount_) {
            revert ErrorWrongCrossDomainSender();
        }
        _;
    }

    event TxToL2(
        address indexed from,
        address indexed to,
        uint256 indexed seqNum,
        bytes data
    );

    error ErrorETHValueTooLow();
    error ErrorUnauthorizedBridge();
    error ErrorNoMaxSubmissionCost();
    error ErrorWrongCrossDomainSender();
}

File 6 of 20 : L1OutboundDataParser.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.10;

/// @author psirex
/// @notice A helper library to parse data passed to outboundTransfer() of L1TokensGateway
library L1OutboundDataParser {
    /// @dev Decodes value contained in data_ bytes array and returns it
    /// @param router_ Address of the Arbitrum’s L1GatewayRouter
    /// @param data_ Data encoded for the outboundTransfer() method
    /// @return Decoded (from, maxSubmissionCost) values
    function decode(address router_, bytes memory data_)
        internal
        view
        returns (address, uint256)
    {
        if (msg.sender != router_) {
            return (msg.sender, _parseSubmissionCostData(data_));
        }
        (address from, bytes memory extraData) = abi.decode(
            data_,
            (address, bytes)
        );
        return (from, _parseSubmissionCostData(extraData));
    }

    /// @dev Extracts the maxSubmissionCost value from the outboundTransfer() data
    function _parseSubmissionCostData(bytes memory data_)
        private
        pure
        returns (uint256)
    {
        (uint256 maxSubmissionCost, bytes memory extraData) = abi.decode(
            data_,
            (uint256, bytes)
        );
        if (extraData.length != 0) {
            revert ExtraDataNotEmpty();
        }
        return maxSubmissionCost;
    }

    error ExtraDataNotEmpty();
}

File 7 of 20 : InterchainERC20TokenGateway.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.10;

import {BridgingManager} from "../BridgingManager.sol";
import {BridgeableTokens} from "../BridgeableTokens.sol";

import {IInterchainTokenGateway} from "./interfaces/IInterchainTokenGateway.sol";

/// @author psirex
/// @notice The contract keeps logic shared among both L1 and L2 gateways, adding the methods for
///     bridging management: enabling and disabling withdrawals/deposits
abstract contract InterchainERC20TokenGateway is
    BridgingManager,
    BridgeableTokens,
    IInterchainTokenGateway
{
    /// @notice Address of the router in the corresponding chain
    address public immutable router;

    /// @inheritdoc IInterchainTokenGateway
    address public immutable counterpartGateway;

    /// @param router_ Address of the router in the corresponding chain
    /// @param counterpartGateway_ Address of the counterpart gateway used in the bridging process
    /// @param l1Token_ Address of the bridged token in the Ethereum chain
    /// @param l2Token_ Address of the token minted on the Arbitrum chain when token bridged
    constructor(
        address router_,
        address counterpartGateway_,
        address l1Token_,
        address l2Token_
    ) BridgeableTokens(l1Token_, l2Token_) {
        router = router_;
        counterpartGateway = counterpartGateway_;
    }

    /// @inheritdoc IInterchainTokenGateway
    /// @dev The current implementation returns the l2Token address when passed l1Token_ equals
    ///     to l1Token declared in the contract and address(0) in other cases
    function calculateL2TokenAddress(address l1Token_)
        external
        view
        returns (address)
    {
        if (l1Token_ == l1Token) {
            return l2Token;
        }
        return address(0);
    }

    /// @inheritdoc IInterchainTokenGateway
    function getOutboundCalldata(
        address l1Token_,
        address from_,
        address to_,
        uint256 amount_,
        bytes memory // data_
    ) public pure returns (bytes memory) {
        return
            abi.encodeWithSelector(
                IInterchainTokenGateway.finalizeInboundTransfer.selector,
                l1Token_,
                from_,
                to_,
                amount_,
                ""
            );
    }
}

File 8 of 20 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 20 : IInterchainTokenGateway.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.10;

/// @author psirex
/// @notice Keeps logic shared among both L1 and L2 gateways.
interface IInterchainTokenGateway {
    /// @notice Finalizes the bridging of the tokens between chains
    /// @param l1Token_ Address in the L1 chain of the token to withdraw
    /// @param from_ Address of the account initiated withdrawing
    /// @param to_ Address of the recipient of the tokens
    /// @param amount_ Amount of tokens to withdraw
    /// @param data_ Additional data required for the transaction
    function finalizeInboundTransfer(
        address l1Token_,
        address from_,
        address to_,
        uint256 amount_,
        bytes calldata data_
    ) external;

    /// @notice Calculates address of token, which will be minted on the Arbitrum chain,
    ///     on l1Token_ bridging
    /// @param l1Token_ Address of the token on the Ethereum chain
    /// @return Address of the token minted on the L2 on bridging
    function calculateL2TokenAddress(address l1Token_)
        external
        view
        returns (address);

    /// @notice Returns address of the counterpart gateway used in the bridging process
    function counterpartGateway() external view returns (address);

    /// @notice Returns encoded transaction data to send into the counterpart gateway to finalize
    ///     the tokens bridging process.
    /// @param l1Token_ Address in the Ethereum chain of the token to bridge
    /// @param from_ Address of the account initiated bridging in the current chain
    /// @param to_ Address of the recipient of the token in the counterpart chain
    /// @param amount_  Amount of tokens to bridge
    /// @param data_  Custom data to pass into finalizeInboundTransfer method
    /// @return Encoded transaction data of finalizeInboundTransfer call
    function getOutboundCalldata(
        address l1Token_,
        address from_,
        address to_,
        uint256 amount_,
        bytes memory data_
    ) external view returns (bytes memory);
}

File 10 of 20 : IInbox.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.4.21;

interface IInbox {
    /// @notice Put an message in the L2 inbox that can be reexecuted for some fixed amount of time
    ///     if it reverts all msg.value will deposited to callValueRefundAddress on L2
    /// @param destAddr_ Destination L2 contract address
    /// @param arbTxCallValue_ Call value for retryable L2 message
    /// @param maxSubmissionCost_ Max gas deducted from user's L2 balance to cover base submission fee
    /// @param submissionRefundAddress_ maxGas x gasprice - execution cost gets credited here on L2 balance
    /// @param valueRefundAddress_ l2Callvalue gets credited here on L2 if retryable txn times out or gets cancelled
    /// @param maxGas_ Max gas deducted from user's L2 balance to cover L2 execution
    /// @param gasPriceBid_ Price bid for L2 execution
    /// @param data_ ABI encoded data of L2 message
    /// @return unique id for retryable transaction (keccak256(requestID, uint(0) )
    function createRetryableTicket(
        address destAddr_,
        uint256 arbTxCallValue_,
        uint256 maxSubmissionCost_,
        address submissionRefundAddress_,
        address valueRefundAddress_,
        uint256 maxGas_,
        uint256 gasPriceBid_,
        bytes calldata data_
    ) external payable returns (uint256);

    /// @notice Returns address of the Arbitumr's bridge
    function bridge() external view returns (address);
}

File 11 of 20 : IBridge.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.10;

interface IBridge {
    function activeOutbox() external view returns (address);
}

File 12 of 20 : IOutbox.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.10;

interface IOutbox {
    function l2ToL1Sender() external view returns (address);
}

File 13 of 20 : BridgingManager.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.10;

import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol";

/// @author psirex
/// @notice Contains administrative methods to retrieve and control the state of the bridging
contract BridgingManager is AccessControl {
    /// @dev Stores the state of the bridging
    /// @param isInitialized Shows whether the contract is initialized or not
    /// @param isDepositsEnabled Stores the state of the deposits
    /// @param isWithdrawalsEnabled Stores the state of the withdrawals
    struct State {
        bool isInitialized;
        bool isDepositsEnabled;
        bool isWithdrawalsEnabled;
    }

    bytes32 public constant DEPOSITS_ENABLER_ROLE =
        keccak256("BridgingManager.DEPOSITS_ENABLER_ROLE");
    bytes32 public constant DEPOSITS_DISABLER_ROLE =
        keccak256("BridgingManager.DEPOSITS_DISABLER_ROLE");
    bytes32 public constant WITHDRAWALS_ENABLER_ROLE =
        keccak256("BridgingManager.WITHDRAWALS_ENABLER_ROLE");
    bytes32 public constant WITHDRAWALS_DISABLER_ROLE =
        keccak256("BridgingManager.WITHDRAWALS_DISABLER_ROLE");

    /// @dev The location of the slot with State
    bytes32 private constant STATE_SLOT =
        keccak256("BridgingManager.bridgingState");

    /// @notice Initializes the contract to grant DEFAULT_ADMIN_ROLE to the admin_ address
    /// @dev This method might be called only once
    /// @param admin_ Address of the account to grant the DEFAULT_ADMIN_ROLE
    function initialize(address admin_) external {
        State storage s = _loadState();
        if (s.isInitialized) {
            revert ErrorAlreadyInitialized();
        }
        _setupRole(DEFAULT_ADMIN_ROLE, admin_);
        s.isInitialized = true;
        emit Initialized(admin_);
    }

    /// @notice Returns whether the contract is initialized or not
    function isInitialized() public view returns (bool) {
        return _loadState().isInitialized;
    }

    /// @notice Returns whether the deposits are enabled or not
    function isDepositsEnabled() public view returns (bool) {
        return _loadState().isDepositsEnabled;
    }

    /// @notice Returns whether the withdrawals are enabled or not
    function isWithdrawalsEnabled() public view returns (bool) {
        return _loadState().isWithdrawalsEnabled;
    }

    /// @notice Enables the deposits if they are disabled
    function enableDeposits() external onlyRole(DEPOSITS_ENABLER_ROLE) {
        if (isDepositsEnabled()) {
            revert ErrorDepositsEnabled();
        }
        _loadState().isDepositsEnabled = true;
        emit DepositsEnabled(msg.sender);
    }

    /// @notice Disables the deposits if they aren't disabled yet
    function disableDeposits()
        external
        whenDepositsEnabled
        onlyRole(DEPOSITS_DISABLER_ROLE)
    {
        _loadState().isDepositsEnabled = false;
        emit DepositsDisabled(msg.sender);
    }

    /// @notice Enables the withdrawals if they are disabled
    function enableWithdrawals() external onlyRole(WITHDRAWALS_ENABLER_ROLE) {
        if (isWithdrawalsEnabled()) {
            revert ErrorWithdrawalsEnabled();
        }
        _loadState().isWithdrawalsEnabled = true;
        emit WithdrawalsEnabled(msg.sender);
    }

    /// @notice Disables the withdrawals if they aren't disabled yet
    function disableWithdrawals()
        external
        whenWithdrawalsEnabled
        onlyRole(WITHDRAWALS_DISABLER_ROLE)
    {
        _loadState().isWithdrawalsEnabled = false;
        emit WithdrawalsDisabled(msg.sender);
    }

    /// @dev Returns the reference to the slot with State struct
    function _loadState() private pure returns (State storage r) {
        bytes32 slot = STATE_SLOT;
        assembly {
            r.slot := slot
        }
    }

    /// @dev Validates that deposits are enabled
    modifier whenDepositsEnabled() {
        if (!isDepositsEnabled()) {
            revert ErrorDepositsDisabled();
        }
        _;
    }

    /// @dev Validates that withdrawals are enabled
    modifier whenWithdrawalsEnabled() {
        if (!isWithdrawalsEnabled()) {
            revert ErrorWithdrawalsDisabled();
        }
        _;
    }

    event DepositsEnabled(address indexed enabler);
    event DepositsDisabled(address indexed disabler);
    event WithdrawalsEnabled(address indexed enabler);
    event WithdrawalsDisabled(address indexed disabler);
    event Initialized(address indexed admin);

    error ErrorDepositsEnabled();
    error ErrorDepositsDisabled();
    error ErrorWithdrawalsEnabled();
    error ErrorWithdrawalsDisabled();
    error ErrorAlreadyInitialized();
}

File 14 of 20 : BridgeableTokens.sol
// SPDX-FileCopyrightText: 2022 Lido <[email protected]>
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.10;

/// @author psirex
/// @notice Contains the logic for validation of tokens used in the bridging process
contract BridgeableTokens {
    /// @notice Address of the bridged token in the L1 chain
    address public immutable l1Token;

    /// @notice Address of the token minted on the L2 chain when token bridged
    address public immutable l2Token;

    /// @param l1Token_ Address of the bridged token in the L1 chain
    /// @param l2Token_ Address of the token minted on the L2 chain when token bridged
    constructor(address l1Token_, address l2Token_) {
        l1Token = l1Token_;
        l2Token = l2Token_;
    }

    /// @dev Validates that passed l1Token_ is supported by the bridge
    modifier onlySupportedL1Token(address l1Token_) {
        if (l1Token_ != l1Token) {
            revert ErrorUnsupportedL1Token();
        }
        _;
    }

    /// @dev Validates that passed l2Token_ is supported by the bridge
    modifier onlySupportedL2Token(address l2Token_) {
        if (l2Token_ != l2Token) {
            revert ErrorUnsupportedL2Token();
        }
        _;
    }

    /// @dev validates that account_ is not zero address
    modifier onlyNonZeroAccount(address account_) {
        if (account_ == address(0)) {
            revert ErrorAccountIsZeroAddress();
        }
        _;
    }

    error ErrorUnsupportedL1Token();
    error ErrorUnsupportedL2Token();
    error ErrorAccountIsZeroAddress();
}

File 15 of 20 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 16 of 20 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 17 of 20 : Context.sol
// 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;
    }
}

File 18 of 20 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 19 of 20 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 20 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 100000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"inbox_","type":"address"},{"internalType":"address","name":"router_","type":"address"},{"internalType":"address","name":"counterpartGateway_","type":"address"},{"internalType":"address","name":"l1Token_","type":"address"},{"internalType":"address","name":"l2Token_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ErrorAccountIsZeroAddress","type":"error"},{"inputs":[],"name":"ErrorAlreadyInitialized","type":"error"},{"inputs":[],"name":"ErrorDepositsDisabled","type":"error"},{"inputs":[],"name":"ErrorDepositsEnabled","type":"error"},{"inputs":[],"name":"ErrorETHValueTooLow","type":"error"},{"inputs":[],"name":"ErrorNoMaxSubmissionCost","type":"error"},{"inputs":[],"name":"ErrorUnauthorizedBridge","type":"error"},{"inputs":[],"name":"ErrorUnsupportedL1Token","type":"error"},{"inputs":[],"name":"ErrorUnsupportedL2Token","type":"error"},{"inputs":[],"name":"ErrorWithdrawalsDisabled","type":"error"},{"inputs":[],"name":"ErrorWithdrawalsEnabled","type":"error"},{"inputs":[],"name":"ErrorWrongCrossDomainSender","type":"error"},{"inputs":[],"name":"ExtraDataNotEmpty","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"l1Token","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"sequenceNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositInitiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"disabler","type":"address"}],"name":"DepositsDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"enabler","type":"address"}],"name":"DepositsEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"admin","type":"address"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"seqNum","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"TxToL2","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"l1Token","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"exitNum","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawalFinalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"disabler","type":"address"}],"name":"WithdrawalsDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"enabler","type":"address"}],"name":"WithdrawalsEnabled","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEPOSITS_DISABLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEPOSITS_ENABLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWALS_DISABLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWALS_ENABLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"l1Token_","type":"address"}],"name":"calculateL2TokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterpartGateway","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableDeposits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableWithdrawals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableDeposits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableWithdrawals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"l1Token_","type":"address"},{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"finalizeInboundTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"l1Token_","type":"address"},{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"getOutboundCalldata","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inbox","outputs":[{"internalType":"contract IInbox","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isDepositsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWithdrawalsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l1Token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2Token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"l1Token_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"uint256","name":"maxGas_","type":"uint256"},{"internalType":"uint256","name":"gasPriceBid_","type":"uint256"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"outboundTransfer","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6101206040523480156200001257600080fd5b5060405162002a7c38038062002a7c83398101604081905262000035916200007b565b6001600160a01b03918216608052811660a05291821660c052811660e0521661010052620000eb565b80516001600160a01b03811681146200007657600080fd5b919050565b600080600080600060a086880312156200009457600080fd5b6200009f866200005e565b9450620000af602087016200005e565b9350620000bf604087016200005e565b9250620000cf606087016200005e565b9150620000df608087016200005e565b90509295509295909350565b60805160a05160c05160e051610100516128ff6200017d60003960008181610717015281816108de0152611c56015260008181610241015281816108bb01526118f00152600081816106af01526112090152600081816103330152610dc90152600081816105df0152818161083601528181610d740152818161117e0152818161130e015261182e01526128ff6000f3fe6080604052600436106101b75760003560e01c8063a0c76a96116100ec578063d2ce7d651161008a578063e8bac93b11610064578063e8bac93b14610688578063f887ea401461069d578063fadcc54a146106d1578063fb0e722b1461070557600080fd5b8063d2ce7d6514610621578063d547741f14610634578063e3b523e31461065457600080fd5b8063ac67e1af116100c6578063ac67e1af146105a3578063ad960ce1146105b8578063c01e1bd6146105cd578063c4d66de81461060157600080fd5b8063a0c76a961461049c578063a217fddf1461056e578063a7e28d481461058357600080fd5b806356eff267116101595780635ed2c220116101335780635ed2c220146103a65780636f18bd22146103e35780638d7601c01461041757806391d148541461044b57600080fd5b806356eff267146103215780635777bf50146103555780635e4c57a41461039157600080fd5b80632e567b36116101955780632e567b36146102885780632f2ff15d146102aa57806336568abe146102ca578063392e53cd146102ea57600080fd5b806301ffc9a7146101bc578063248a9ca3146101f15780632db09c1c1461022f575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461218e565b610739565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061022161020c3660046121d0565b60009081526020819052604090206001015490565b6040519081526020016101e8565b34801561023b57600080fd5b506102637f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101e8565b34801561029457600080fd5b506102a86102a336600461224d565b6107d2565b005b3480156102b657600080fd5b506102a86102c53660046122d2565b610b8a565b3480156102d657600080fd5b506102a86102e53660046122d2565b610bb4565b3480156102f657600080fd5b507f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba5460ff166101dc565b34801561032d57600080fd5b506102637f000000000000000000000000000000000000000000000000000000000000000081565b34801561036157600080fd5b507f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba54610100900460ff166101dc565b34801561039d57600080fd5b506102a8610c6c565b3480156103b257600080fd5b507f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba5462010000900460ff166101dc565b3480156103ef57600080fd5b506102217f63f736f21cb2943826cd50b191eb054ebbea670e4e962d0527611f830cd399d681565b34801561042357600080fd5b506102217f94a954c0bc99227eddbc0715a62a7e1056ed8784cd719c2303b685683908857c81565b34801561045757600080fd5b506101dc6104663660046122d2565b60009182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156104a857600080fd5b506105616104b73660046123c6565b506040805173ffffffffffffffffffffffffffffffffffffffff95861660248201529385166044850152919093166064830152608482019290925260a060a4820152600060c4808301919091528251808303909101815260e49091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f2e567b360000000000000000000000000000000000000000000000000000000017905290565b6040516101e891906124fe565b34801561057a57600080fd5b50610221600081565b34801561058f57600080fd5b5061026361059e366004612511565b610d70565b3480156105af57600080fd5b506102a8610df5565b3480156105c457600080fd5b506102a8610ef4565b3480156105d957600080fd5b506102637f000000000000000000000000000000000000000000000000000000000000000081565b34801561060d57600080fd5b506102a861061c366004612511565b610ff4565b61056161062f36600461252e565b6110ca565b34801561064057600080fd5b506102a861064f3660046122d2565b611392565b34801561066057600080fd5b506102217f9ab8816a3dc0b3849ec1ac00483f6ec815b07eee2fd766a353311c823ad59d0d81565b34801561069457600080fd5b506102a86113b7565b3480156106a957600080fd5b506102637f000000000000000000000000000000000000000000000000000000000000000081565b3480156106dd57600080fd5b506102217f4b43b36766bde12c5e9cbbc37d15f8d1f769f08f54720ab370faeb4ce893753a81565b34801561071157600080fd5b506102637f000000000000000000000000000000000000000000000000000000000000000081565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806107cc57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba5462010000900460ff16610833576040517f77d195b200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b857f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b9576040517ffe15603f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e78cea926040518163ffffffff1660e01b8152600401602060405180830381865afa158015610947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096b91906125b4565b90503373ffffffffffffffffffffffffffffffffffffffff8216146109bc576040517f8827ffa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1663ab5d89436040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2d91906125b4565b73ffffffffffffffffffffffffffffffffffffffff166380648b026040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9b91906125b4565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b02576040517fe36e2eb200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2373ffffffffffffffffffffffffffffffffffffffff8b1689896114bd565b6040805173ffffffffffffffffffffffffffffffffffffffff8c81168252602082018a9052600092818c1692918d16917f891afe029c75c4f8c5855fc3480598bc5a53739344f6ae575bdb7ea2a79f56b3910160405180910390a450505050505050505050565b600082815260208190526040902060010154610ba581611591565b610baf838361159e565b505050565b73ffffffffffffffffffffffffffffffffffffffff81163314610c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b610c68828261168e565b5050565b7f4b43b36766bde12c5e9cbbc37d15f8d1f769f08f54720ab370faeb4ce893753a610c9681611591565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba54610100900460ff1615610cf7576040517f4f2c8be200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1661010017905560405133907fc36a428b063177e3f28b3b5d340c08f77827847b2ee30114ccf0c40e519c420a90600090a250565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ded57507f0000000000000000000000000000000000000000000000000000000000000000919050565b506000919050565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba54610100900460ff16610e55576040517fa185a6b200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f63f736f21cb2943826cd50b191eb054ebbea670e4e962d0527611f830cd399d6610e7f81611591565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905560405133907f9ca4d309bbfd23c65db3dc38c1712862f5812c7139937e2655de86e803f73bb990600090a250565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba5462010000900460ff16610f55576040517f77d195b200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f94a954c0bc99227eddbc0715a62a7e1056ed8784cd719c2303b685683908857c610f7f81611591565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff16905560405133907f644eeba8ede48fefc32ada09fb240c5f6c0f06507ab1d296d5af41f1521d9fcb90600090a250565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba805460ff1615611051576040517f66a02dea00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61105c600083611745565b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117815560405173ffffffffffffffffffffffffffffffffffffffff8316907f908408e307fc569b417f6cbec5d5a06f44a0a505ac0479b47d421a4b2fd6a1e690600090a25050565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba54606090610100900460ff1661112d576040517fa185a6b200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff811661117b576040517fef6b416200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b887f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611201576040517ffe15603f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806112647f000000000000000000000000000000000000000000000000000000000000000088888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061174f92505050565b909250905061128b73ffffffffffffffffffffffffffffffffffffffff8d1683308d6117b5565b60006112ba838d8d60405180608001604052808f8152602001600081526020018e815260200187815250611819565b9050808c73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fb8910b9960c443aac3240b98585384e3a6f109fbf6969e264c3f183d69aba7e17f00000000000000000000000000000000000000000000000000000000000000008f60405161135d92919073ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b60405180910390a460408051602081018390520160405160208183030381529060405295505050505050979650505050505050565b6000828152602081905260409020600101546113ad81611591565b610baf838361168e565b7f9ab8816a3dc0b3849ec1ac00483f6ec815b07eee2fd766a353311c823ad59d0d6113e181611591565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba5462010000900460ff1615611443576040517ff74ad25400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff166201000017905560405133907fb2ed3603bd9051f0182ebfb75f12a21059b4d31b578a2a05c8d0245e9e2d320490600090a250565b60405173ffffffffffffffffffffffffffffffffffffffff8316602482015260448101829052610baf9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261191f565b61159b8133611a2b565b50565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610c685760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556116303390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1615610c685760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b610c68828261159e565b6000803373ffffffffffffffffffffffffffffffffffffffff851614611782573361177984611afb565b915091506117ae565b60008084806020019051810190611799919061261e565b91509150816117a782611afb565b9350935050505b9250929050565b60405173ffffffffffffffffffffffffffffffffffffffff808516602483015283166044820152606481018290526118139085907f23b872dd000000000000000000000000000000000000000000000000000000009060840161150f565b50505050565b604080516020808201835260009182905282517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff90811660248301528881166044830152871660648201526084810186905260a060a482015260c48082018490528451808303909101815260e4909101909352820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f2e567b3600000000000000000000000000000000000000000000000000000000179052906119169086907f00000000000000000000000000000000000000000000000000000000000000009085611b5a565b95945050505050565b6000611981826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611d499092919063ffffffff16565b805190915015610baf578080602001905181019061199f919061266f565b610baf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610c55565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610c6857611a818173ffffffffffffffffffffffffffffffffffffffff166014611d62565b611a8c836020611d62565b604051602001611a9d929190612691565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a0000000000000000000000000000000000000000000000000000000008252610c55916004016124fe565b600080600083806020019051810190611b149190612712565b915091508051600014611b53576040517f78b01b1e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5092915050565b6000816060015160001415611b9b576040517ff9b6f21e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60408201518251600091611bae91612772565b83606001518460200151611bc291906127af565b611bcc91906127af565b905080341015611c08576040517f09b7741300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60208301516060840151845160408087015190517f679b6ded00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169463679b6ded943494611c95948d948f92839290918f906004016127c7565b60206040518083038185885af1158015611cb3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611cd89190612830565b9150818573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fc1d1490cf25c3b40d600dfb27c7680340ed1ab901b7e8f3551280968a3b372b087604051611d3891906124fe565b60405180910390a450949350505050565b6060611d588484600085611fa5565b90505b9392505050565b60606000611d71836002612772565b611d7c9060026127af565b67ffffffffffffffff811115611d9457611d94612302565b6040519080825280601f01601f191660200182016040528015611dbe576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611df557611df5612849565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611e5857611e58612849565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611e94846002612772565b611e9f9060016127af565b90505b6001811115611f3c577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611ee057611ee0612849565b1a60f81b828281518110611ef657611ef6612849565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611f3581612878565b9050611ea2565b508315611d5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c55565b606082471015612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff85163b6120b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c55565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516120de91906128ad565b60006040518083038185875af1925050503d806000811461211b576040519150601f19603f3d011682016040523d82523d6000602084013e612120565b606091505b509150915061213082828661213b565b979650505050505050565b6060831561214a575081611d5b565b82511561215a5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5591906124fe565b6000602082840312156121a057600080fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611d5b57600080fd5b6000602082840312156121e257600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461159b57600080fd5b60008083601f84011261221d57600080fd5b50813567ffffffffffffffff81111561223557600080fd5b6020830191508360208285010111156117ae57600080fd5b60008060008060008060a0878903121561226657600080fd5b8635612271816121e9565b95506020870135612281816121e9565b94506040870135612291816121e9565b935060608701359250608087013567ffffffffffffffff8111156122b457600080fd5b6122c089828a0161220b565b979a9699509497509295939492505050565b600080604083850312156122e557600080fd5b8235915060208301356122f7816121e9565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561237857612378612302565b604052919050565b600067ffffffffffffffff82111561239a5761239a612302565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b600080600080600060a086880312156123de57600080fd5b85356123e9816121e9565b945060208601356123f9816121e9565b93506040860135612409816121e9565b925060608601359150608086013567ffffffffffffffff81111561242c57600080fd5b8601601f8101881361243d57600080fd5b803561245061244b82612380565b612331565b81815289602083850101111561246557600080fd5b816020840160208301376000602083830101528093505050509295509295909350565b60005b838110156124a357818101518382015260200161248b565b838111156118135750506000910152565b600081518084526124cc816020860160208601612488565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611d5b60208301846124b4565b60006020828403121561252357600080fd5b8135611d5b816121e9565b600080600080600080600060c0888a03121561254957600080fd5b8735612554816121e9565b96506020880135612564816121e9565b955060408801359450606088013593506080880135925060a088013567ffffffffffffffff81111561259557600080fd5b6125a18a828b0161220b565b989b979a50959850939692959293505050565b6000602082840312156125c657600080fd5b8151611d5b816121e9565b600082601f8301126125e257600080fd5b81516125f061244b82612380565b81815284602083860101111561260557600080fd5b612616826020830160208701612488565b949350505050565b6000806040838503121561263157600080fd5b825161263c816121e9565b602084015190925067ffffffffffffffff81111561265957600080fd5b612665858286016125d1565b9150509250929050565b60006020828403121561268157600080fd5b81518015158114611d5b57600080fd5b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516126c9816017850160208801612488565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351612706816028840160208801612488565b01602801949350505050565b6000806040838503121561272557600080fd5b82519150602083015167ffffffffffffffff81111561265957600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127aa576127aa612743565b500290565b600082198211156127c2576127c2612743565b500190565b600061010073ffffffffffffffffffffffffffffffffffffffff808c1684528a602085015289604085015280891660608501528088166080850152508560a08401528460c08401528060e0840152612821818401856124b4565b9b9a5050505050505050505050565b60006020828403121561284257600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008161288757612887612743565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600082516128bf818460208701612488565b919091019291505056fea2646970667358221220642576d766b20f957d531f40e7bcf9f2531c537836e5f72cbb8bd11b2ada2ca864736f6c634300080a00330000000000000000000000004dbd4fc535ac27206064b68ffcf827b0a60bab3f00000000000000000000000072ce9c846789fdb6fc1f34ac4ad25dd9ef7031ef00000000000000000000000007d4692291b9e30e326fd31706f686f83f331b820000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000005979d7b546e38e414f7e9822514be443a4800529

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063a0c76a96116100ec578063d2ce7d651161008a578063e8bac93b11610064578063e8bac93b14610688578063f887ea401461069d578063fadcc54a146106d1578063fb0e722b1461070557600080fd5b8063d2ce7d6514610621578063d547741f14610634578063e3b523e31461065457600080fd5b8063ac67e1af116100c6578063ac67e1af146105a3578063ad960ce1146105b8578063c01e1bd6146105cd578063c4d66de81461060157600080fd5b8063a0c76a961461049c578063a217fddf1461056e578063a7e28d481461058357600080fd5b806356eff267116101595780635ed2c220116101335780635ed2c220146103a65780636f18bd22146103e35780638d7601c01461041757806391d148541461044b57600080fd5b806356eff267146103215780635777bf50146103555780635e4c57a41461039157600080fd5b80632e567b36116101955780632e567b36146102885780632f2ff15d146102aa57806336568abe146102ca578063392e53cd146102ea57600080fd5b806301ffc9a7146101bc578063248a9ca3146101f15780632db09c1c1461022f575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461218e565b610739565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061022161020c3660046121d0565b60009081526020819052604090206001015490565b6040519081526020016101e8565b34801561023b57600080fd5b506102637f00000000000000000000000007d4692291b9e30e326fd31706f686f83f331b8281565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101e8565b34801561029457600080fd5b506102a86102a336600461224d565b6107d2565b005b3480156102b657600080fd5b506102a86102c53660046122d2565b610b8a565b3480156102d657600080fd5b506102a86102e53660046122d2565b610bb4565b3480156102f657600080fd5b507f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba5460ff166101dc565b34801561032d57600080fd5b506102637f0000000000000000000000005979d7b546e38e414f7e9822514be443a480052981565b34801561036157600080fd5b507f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba54610100900460ff166101dc565b34801561039d57600080fd5b506102a8610c6c565b3480156103b257600080fd5b507f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba5462010000900460ff166101dc565b3480156103ef57600080fd5b506102217f63f736f21cb2943826cd50b191eb054ebbea670e4e962d0527611f830cd399d681565b34801561042357600080fd5b506102217f94a954c0bc99227eddbc0715a62a7e1056ed8784cd719c2303b685683908857c81565b34801561045757600080fd5b506101dc6104663660046122d2565b60009182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156104a857600080fd5b506105616104b73660046123c6565b506040805173ffffffffffffffffffffffffffffffffffffffff95861660248201529385166044850152919093166064830152608482019290925260a060a4820152600060c4808301919091528251808303909101815260e49091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f2e567b360000000000000000000000000000000000000000000000000000000017905290565b6040516101e891906124fe565b34801561057a57600080fd5b50610221600081565b34801561058f57600080fd5b5061026361059e366004612511565b610d70565b3480156105af57600080fd5b506102a8610df5565b3480156105c457600080fd5b506102a8610ef4565b3480156105d957600080fd5b506102637f0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca081565b34801561060d57600080fd5b506102a861061c366004612511565b610ff4565b61056161062f36600461252e565b6110ca565b34801561064057600080fd5b506102a861064f3660046122d2565b611392565b34801561066057600080fd5b506102217f9ab8816a3dc0b3849ec1ac00483f6ec815b07eee2fd766a353311c823ad59d0d81565b34801561069457600080fd5b506102a86113b7565b3480156106a957600080fd5b506102637f00000000000000000000000072ce9c846789fdb6fc1f34ac4ad25dd9ef7031ef81565b3480156106dd57600080fd5b506102217f4b43b36766bde12c5e9cbbc37d15f8d1f769f08f54720ab370faeb4ce893753a81565b34801561071157600080fd5b506102637f0000000000000000000000004dbd4fc535ac27206064b68ffcf827b0a60bab3f81565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806107cc57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba5462010000900460ff16610833576040517f77d195b200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b857f0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b9576040517ffe15603f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000007d4692291b9e30e326fd31706f686f83f331b8260007f0000000000000000000000004dbd4fc535ac27206064b68ffcf827b0a60bab3f73ffffffffffffffffffffffffffffffffffffffff1663e78cea926040518163ffffffff1660e01b8152600401602060405180830381865afa158015610947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096b91906125b4565b90503373ffffffffffffffffffffffffffffffffffffffff8216146109bc576040517f8827ffa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1663ab5d89436040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2d91906125b4565b73ffffffffffffffffffffffffffffffffffffffff166380648b026040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9b91906125b4565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b02576040517fe36e2eb200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2373ffffffffffffffffffffffffffffffffffffffff8b1689896114bd565b6040805173ffffffffffffffffffffffffffffffffffffffff8c81168252602082018a9052600092818c1692918d16917f891afe029c75c4f8c5855fc3480598bc5a53739344f6ae575bdb7ea2a79f56b3910160405180910390a450505050505050505050565b600082815260208190526040902060010154610ba581611591565b610baf838361159e565b505050565b73ffffffffffffffffffffffffffffffffffffffff81163314610c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b610c68828261168e565b5050565b7f4b43b36766bde12c5e9cbbc37d15f8d1f769f08f54720ab370faeb4ce893753a610c9681611591565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba54610100900460ff1615610cf7576040517f4f2c8be200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1661010017905560405133907fc36a428b063177e3f28b3b5d340c08f77827847b2ee30114ccf0c40e519c420a90600090a250565b60007f0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ded57507f0000000000000000000000005979d7b546e38e414f7e9822514be443a4800529919050565b506000919050565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba54610100900460ff16610e55576040517fa185a6b200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f63f736f21cb2943826cd50b191eb054ebbea670e4e962d0527611f830cd399d6610e7f81611591565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905560405133907f9ca4d309bbfd23c65db3dc38c1712862f5812c7139937e2655de86e803f73bb990600090a250565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba5462010000900460ff16610f55576040517f77d195b200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f94a954c0bc99227eddbc0715a62a7e1056ed8784cd719c2303b685683908857c610f7f81611591565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff16905560405133907f644eeba8ede48fefc32ada09fb240c5f6c0f06507ab1d296d5af41f1521d9fcb90600090a250565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba805460ff1615611051576040517f66a02dea00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61105c600083611745565b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117815560405173ffffffffffffffffffffffffffffffffffffffff8316907f908408e307fc569b417f6cbec5d5a06f44a0a505ac0479b47d421a4b2fd6a1e690600090a25050565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba54606090610100900460ff1661112d576040517fa185a6b200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff811661117b576040517fef6b416200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b887f0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611201576040517ffe15603f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806112647f00000000000000000000000072ce9c846789fdb6fc1f34ac4ad25dd9ef7031ef88888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061174f92505050565b909250905061128b73ffffffffffffffffffffffffffffffffffffffff8d1683308d6117b5565b60006112ba838d8d60405180608001604052808f8152602001600081526020018e815260200187815250611819565b9050808c73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fb8910b9960c443aac3240b98585384e3a6f109fbf6969e264c3f183d69aba7e17f0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca08f60405161135d92919073ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b60405180910390a460408051602081018390520160405160208183030381529060405295505050505050979650505050505050565b6000828152602081905260409020600101546113ad81611591565b610baf838361168e565b7f9ab8816a3dc0b3849ec1ac00483f6ec815b07eee2fd766a353311c823ad59d0d6113e181611591565b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba5462010000900460ff1615611443576040517ff74ad25400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f013e929b381f2fbbac854bd18fb8231dc73c4a2eab0d4cbb4db9436b6ff9b2ba80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff166201000017905560405133907fb2ed3603bd9051f0182ebfb75f12a21059b4d31b578a2a05c8d0245e9e2d320490600090a250565b60405173ffffffffffffffffffffffffffffffffffffffff8316602482015260448101829052610baf9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261191f565b61159b8133611a2b565b50565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610c685760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556116303390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1615610c685760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b610c68828261159e565b6000803373ffffffffffffffffffffffffffffffffffffffff851614611782573361177984611afb565b915091506117ae565b60008084806020019051810190611799919061261e565b91509150816117a782611afb565b9350935050505b9250929050565b60405173ffffffffffffffffffffffffffffffffffffffff808516602483015283166044820152606481018290526118139085907f23b872dd000000000000000000000000000000000000000000000000000000009060840161150f565b50505050565b604080516020808201835260009182905282517f0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca073ffffffffffffffffffffffffffffffffffffffff90811660248301528881166044830152871660648201526084810186905260a060a482015260c48082018490528451808303909101815260e4909101909352820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f2e567b3600000000000000000000000000000000000000000000000000000000179052906119169086907f00000000000000000000000007d4692291b9e30e326fd31706f686f83f331b829085611b5a565b95945050505050565b6000611981826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611d499092919063ffffffff16565b805190915015610baf578080602001905181019061199f919061266f565b610baf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610c55565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610c6857611a818173ffffffffffffffffffffffffffffffffffffffff166014611d62565b611a8c836020611d62565b604051602001611a9d929190612691565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a0000000000000000000000000000000000000000000000000000000008252610c55916004016124fe565b600080600083806020019051810190611b149190612712565b915091508051600014611b53576040517f78b01b1e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5092915050565b6000816060015160001415611b9b576040517ff9b6f21e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60408201518251600091611bae91612772565b83606001518460200151611bc291906127af565b611bcc91906127af565b905080341015611c08576040517f09b7741300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60208301516060840151845160408087015190517f679b6ded00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004dbd4fc535ac27206064b68ffcf827b0a60bab3f169463679b6ded943494611c95948d948f92839290918f906004016127c7565b60206040518083038185885af1158015611cb3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611cd89190612830565b9150818573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fc1d1490cf25c3b40d600dfb27c7680340ed1ab901b7e8f3551280968a3b372b087604051611d3891906124fe565b60405180910390a450949350505050565b6060611d588484600085611fa5565b90505b9392505050565b60606000611d71836002612772565b611d7c9060026127af565b67ffffffffffffffff811115611d9457611d94612302565b6040519080825280601f01601f191660200182016040528015611dbe576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611df557611df5612849565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611e5857611e58612849565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611e94846002612772565b611e9f9060016127af565b90505b6001811115611f3c577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611ee057611ee0612849565b1a60f81b828281518110611ef657611ef6612849565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611f3581612878565b9050611ea2565b508315611d5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c55565b606082471015612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff85163b6120b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c55565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516120de91906128ad565b60006040518083038185875af1925050503d806000811461211b576040519150601f19603f3d011682016040523d82523d6000602084013e612120565b606091505b509150915061213082828661213b565b979650505050505050565b6060831561214a575081611d5b565b82511561215a5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5591906124fe565b6000602082840312156121a057600080fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611d5b57600080fd5b6000602082840312156121e257600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461159b57600080fd5b60008083601f84011261221d57600080fd5b50813567ffffffffffffffff81111561223557600080fd5b6020830191508360208285010111156117ae57600080fd5b60008060008060008060a0878903121561226657600080fd5b8635612271816121e9565b95506020870135612281816121e9565b94506040870135612291816121e9565b935060608701359250608087013567ffffffffffffffff8111156122b457600080fd5b6122c089828a0161220b565b979a9699509497509295939492505050565b600080604083850312156122e557600080fd5b8235915060208301356122f7816121e9565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561237857612378612302565b604052919050565b600067ffffffffffffffff82111561239a5761239a612302565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b600080600080600060a086880312156123de57600080fd5b85356123e9816121e9565b945060208601356123f9816121e9565b93506040860135612409816121e9565b925060608601359150608086013567ffffffffffffffff81111561242c57600080fd5b8601601f8101881361243d57600080fd5b803561245061244b82612380565b612331565b81815289602083850101111561246557600080fd5b816020840160208301376000602083830101528093505050509295509295909350565b60005b838110156124a357818101518382015260200161248b565b838111156118135750506000910152565b600081518084526124cc816020860160208601612488565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611d5b60208301846124b4565b60006020828403121561252357600080fd5b8135611d5b816121e9565b600080600080600080600060c0888a03121561254957600080fd5b8735612554816121e9565b96506020880135612564816121e9565b955060408801359450606088013593506080880135925060a088013567ffffffffffffffff81111561259557600080fd5b6125a18a828b0161220b565b989b979a50959850939692959293505050565b6000602082840312156125c657600080fd5b8151611d5b816121e9565b600082601f8301126125e257600080fd5b81516125f061244b82612380565b81815284602083860101111561260557600080fd5b612616826020830160208701612488565b949350505050565b6000806040838503121561263157600080fd5b825161263c816121e9565b602084015190925067ffffffffffffffff81111561265957600080fd5b612665858286016125d1565b9150509250929050565b60006020828403121561268157600080fd5b81518015158114611d5b57600080fd5b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516126c9816017850160208801612488565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351612706816028840160208801612488565b01602801949350505050565b6000806040838503121561272557600080fd5b82519150602083015167ffffffffffffffff81111561265957600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127aa576127aa612743565b500290565b600082198211156127c2576127c2612743565b500190565b600061010073ffffffffffffffffffffffffffffffffffffffff808c1684528a602085015289604085015280891660608501528088166080850152508560a08401528460c08401528060e0840152612821818401856124b4565b9b9a5050505050505050505050565b60006020828403121561284257600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008161288757612887612743565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600082516128bf818460208701612488565b919091019291505056fea2646970667358221220642576d766b20f957d531f40e7bcf9f2531c537836e5f72cbb8bd11b2ada2ca864736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000004dbd4fc535ac27206064b68ffcf827b0a60bab3f00000000000000000000000072ce9c846789fdb6fc1f34ac4ad25dd9ef7031ef00000000000000000000000007d4692291b9e30e326fd31706f686f83f331b820000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000005979d7b546e38e414f7e9822514be443a4800529

-----Decoded View---------------
Arg [0] : inbox_ (address): 0x4Dbd4fc535Ac27206064B68FfCf827b0A60BAB3f
Arg [1] : router_ (address): 0x72Ce9c846789fdB6fC1f34aC4AD25Dd9ef7031ef
Arg [2] : counterpartGateway_ (address): 0x07D4692291B9E30E326fd31706f686f83f331B82
Arg [3] : l1Token_ (address): 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0
Arg [4] : l2Token_ (address): 0x5979D7b546E38E414F7E9822514be443A4800529

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000004dbd4fc535ac27206064b68ffcf827b0a60bab3f
Arg [1] : 00000000000000000000000072ce9c846789fdb6fc1f34ac4ad25dd9ef7031ef
Arg [2] : 00000000000000000000000007d4692291b9e30e326fd31706f686f83f331b82
Arg [3] : 0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0
Arg [4] : 0000000000000000000000005979d7b546e38e414f7e9822514be443a4800529


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.