ETH Price: $2,440.44 (-9.40%)

Contract

0x2d5a5306E6Cd7133AE576eb5eDB2128D79D11A88

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Redeem3393464602025-05-22 12:38:21254 days ago1747917501IN
0x2d5a5306...D79D11A88
0 ETH0.000001890.010554
Transfer1832453132024-02-22 6:02:13709 days ago1708581733IN
0x2d5a5306...D79D11A88
0 ETH0.000088960.1
Repay Borrow1831357902024-02-21 22:07:05710 days ago1708553225IN
0x2d5a5306...D79D11A88
0 ETH0.000080510.1
Redeem1752206402024-01-29 1:08:52734 days ago1706490532IN
0x2d5a5306...D79D11A88
0 ETH0.000068430.1
Repay Borrow1752203302024-01-29 1:07:35734 days ago1706490455IN
0x2d5a5306...D79D11A88
0 ETH0.000035350.1
Repay Borrow1652465722023-12-30 9:35:40763 days ago1703928940IN
0x2d5a5306...D79D11A88
0 ETH0.000041410.1
Repay Borrow1652402852023-12-30 9:09:16763 days ago1703927356IN
0x2d5a5306...D79D11A88
0 ETH0.000048550.1
Repay Borrow1637508502023-12-26 0:03:42768 days ago1703549022IN
0x2d5a5306...D79D11A88
0 ETH0.000038930.1
Repay Borrow1470897642023-11-04 15:40:27819 days ago1699112427IN
0x2d5a5306...D79D11A88
0 ETH0.000046620.1
Repay Borrow1470850952023-11-04 15:20:59819 days ago1699111259IN
0x2d5a5306...D79D11A88
0 ETH0.000048450.1
Repay Borrow1462241582023-11-02 1:11:05822 days ago1698887465IN
0x2d5a5306...D79D11A88
0 ETH0.000076370.1
Repay Borrow1462238342023-11-02 1:09:23822 days ago1698887363IN
0x2d5a5306...D79D11A88
0 ETH0.000076340.1
Repay Borrow1462232622023-11-02 1:06:36822 days ago1698887196IN
0x2d5a5306...D79D11A88
0 ETH0.000075860.1
Redeem1403601712023-10-13 20:38:11841 days ago1697229491IN
0x2d5a5306...D79D11A88
0 ETH0.00005770.1
Redeem1391243842023-10-09 19:48:41845 days ago1696880921IN
0x2d5a5306...D79D11A88
0 ETH0.000175280.1
Redeem1389810242023-10-09 9:13:45845 days ago1696842825IN
0x2d5a5306...D79D11A88
0 ETH0.000034930.1
Redeem1389800672023-10-09 9:09:33845 days ago1696842573IN
0x2d5a5306...D79D11A88
0 ETH0.000035790.1
Redeem1372473132023-10-03 23:40:06851 days ago1696376406IN
0x2d5a5306...D79D11A88
0 ETH0.000032030.1
Redeem1309537612023-09-14 7:32:08870 days ago1694676728IN
0x2d5a5306...D79D11A88
0 ETH0.000035830.1
Repay Borrow1293478032023-09-09 0:45:08876 days ago1694220308IN
0x2d5a5306...D79D11A88
0 ETH0.000033120.1
Repay Borrow1293467242023-09-09 0:39:11876 days ago1694219951IN
0x2d5a5306...D79D11A88
0 ETH0.000033190.1
Repay Borrow1293460332023-09-09 0:35:29876 days ago1694219729IN
0x2d5a5306...D79D11A88
0 ETH0.00003450.1
Repay Borrow1280525652023-09-04 20:33:59880 days ago1693859639IN
0x2d5a5306...D79D11A88
0 ETH0.000053860.1
Repay Borrow1280517042023-09-04 20:29:42880 days ago1693859382IN
0x2d5a5306...D79D11A88
0 ETH0.000055490.1
Repay Borrow1273927002023-09-02 16:10:10882 days ago1693671010IN
0x2d5a5306...D79D11A88
0 ETH0.000046310.1
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions

Cross-Chain Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xe57390EB...d6A4faee8
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CErc20Delegator

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, BSD-3-Clause license

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 6 : CErc20Delegator.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

import "./CTokenInterfaces.sol";

/**
 * @title Compound's CErc20Delegator Contract
 * @notice CTokens which wrap an EIP-20 underlying and delegate to an implementation
 * @author Compound
 */
contract CErc20Delegator is CTokenInterface, CErc20Interface, CDelegatorInterface {
    /**
     * @notice Construct a new money market
     * @param underlying_ The address of the underlying asset
     * @param comptroller_ The address of the Comptroller
     * @param interestRateModel_ The address of the interest rate model
     * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18
     * @param name_ ERC-20 name of this token
     * @param symbol_ ERC-20 symbol of this token
     * @param decimals_ ERC-20 decimal precision of this token
     * @param admin_ Address of the administrator of this token
     * @param implementation_ The address of the implementation the contract delegates to
     * @param becomeImplementationData The encoded args for becomeImplementation
     */
    constructor(
        address underlying_,
        ComptrollerInterface comptroller_,
        InterestRateModel interestRateModel_,
        uint initialExchangeRateMantissa_,
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        address payable admin_,
        address implementation_,
        bytes memory becomeImplementationData
    ) {
        // Creator of the contract is admin during initialization
        admin = payable(msg.sender);

        // First delegate gets to initialize the delegator (i.e. storage contract)
        delegateTo(
            implementation_,
            abi.encodeWithSignature(
                "initialize(address,address,address,uint256,string,string,uint8)",
                underlying_,
                comptroller_,
                interestRateModel_,
                initialExchangeRateMantissa_,
                name_,
                symbol_,
                decimals_
            )
        );

        // New implementations always get set via the settor (post-initialize)
        _setImplementation(implementation_, false, becomeImplementationData);

        // Set the proper admin now that initialization is done
        admin = admin_;
    }

    /**
     * @notice Called by the admin to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(
        address implementation_,
        bool allowResign,
        bytes memory becomeImplementationData
    ) public override {
        require(msg.sender == admin, "CErc20Delegator::_setImplementation: Caller must be admin");

        if (allowResign) {
            delegateToImplementation(abi.encodeWithSignature("_resignImplementation()"));
        }

        address oldImplementation = implementation;
        implementation = implementation_;

        delegateToImplementation(abi.encodeWithSignature("_becomeImplementation(bytes)", becomeImplementationData));

        emit NewImplementation(oldImplementation, implementation);
    }

    /**
     * @notice Sender supplies assets into the market and receives cTokens in exchange
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param mintAmount The amount of the underlying asset to supply
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function mint(uint mintAmount) external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("mint(uint256)", mintAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender redeems cTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of cTokens to redeem into underlying
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeem(uint redeemTokens) external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("redeem(uint256)", redeemTokens));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender redeems cTokens in exchange for the underlying asset on behalf of a specified user
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of cTokens to redeem into underlying
     * @param redeemee The user being redeemed on behalf of
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemBehalf(uint redeemTokens, address redeemee) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("redeemBehalf(uint256, address)", redeemTokens, redeemee)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender redeems cTokens in exchange for a specified amount of underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemAmount The amount of underlying to redeem
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemUnderlying(uint redeemAmount) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("redeemUnderlying(uint256)", redeemAmount)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender borrows assets from the protocol to their own address
     * @param borrowAmount The amount of the underlying asset to borrow
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function borrow(uint borrowAmount) external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("borrow(uint256)", borrowAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender borrows assets from the protocol on behalf of another user
     * @param borrowAmount The amount of the underlying asset to borrow
     * @param borrowee the user to borrow for
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function borrowBehalf(uint borrowAmount, address borrowee) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("borrowBehalf(uint256, address)", borrowAmount, borrowee)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender repays their own borrow
     * @param repayAmount The amount to repay, or -1 for the full outstanding amount
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrow(uint repayAmount) external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("repayBorrow(uint256)", repayAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender repays a borrow belonging to borrower
     * @param borrower the account with the debt being payed off
     * @param repayAmount The amount to repay, or -1 for the full outstanding amount
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowBehalf(address borrower, uint repayAmount) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("repayBorrowBehalf(address,uint256)", borrower, repayAmount)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice The sender liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this cToken to be liquidated
     * @param cTokenCollateral The market in which to seize collateral from the borrower
     * @param repayAmount The amount of the underlying borrowed asset to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function liquidateBorrow(
        address borrower,
        uint repayAmount,
        CTokenInterface cTokenCollateral
    ) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("liquidateBorrow(address,uint256,address)", borrower, repayAmount, cTokenCollateral)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint amount) external override returns (bool) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("transfer(address,uint256)", dst, amount));
        return abi.decode(data, (bool));
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint256 amount) external override returns (bool) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("transferFrom(address,address,uint256)", src, dst, amount)
        );
        return abi.decode(data, (bool));
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 amount) external override returns (bool) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("approve(address,uint256)", spender, amount)
        );
        return abi.decode(data, (bool));
    }

    /**
     * @notice Get the current allowance from `owner` for `spender`
     * @param owner The address of the account which owns the tokens to be spent
     * @param spender The address of the account which may transfer tokens
     * @return The number of tokens allowed to be spent (-1 means infinite)
     */
    function allowance(address owner, address spender) external view override returns (uint) {
        bytes memory data = delegateToViewImplementation(
            abi.encodeWithSignature("allowance(address,address)", owner, spender)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Get the token balance of the `owner`
     * @param owner The address of the account to query
     * @return The number of tokens owned by `owner`
     */
    function balanceOf(address owner) external view override returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("balanceOf(address)", owner));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Get the underlying balance of the `owner`
     * @dev This also accrues interest in a transaction
     * @param owner The address of the account to query
     * @return The amount of underlying owned by `owner`
     */
    function balanceOfUnderlying(address owner) external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("balanceOfUnderlying(address)", owner));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Get a snapshot of the account's balances, and the cached exchange rate
     * @dev This is used by comptroller to more efficiently perform liquidity checks.
     * @param account Address of the account to snapshot
     * @return (possible error, token balance, borrow balance, exchange rate mantissa)
     */
    function getAccountSnapshot(address account) external view override returns (uint, uint, uint, uint) {
        bytes memory data = delegateToViewImplementation(
            abi.encodeWithSignature("getAccountSnapshot(address)", account)
        );
        return abi.decode(data, (uint, uint, uint, uint));
    }

    /**
     * @notice Returns the current per-block borrow interest rate for this cToken
     * @return The borrow interest rate per block, scaled by 1e18
     */
    function borrowRatePerBlock() external view override returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("borrowRatePerBlock()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Returns the current per-block supply interest rate for this cToken
     * @return The supply interest rate per block, scaled by 1e18
     */
    function supplyRatePerBlock() external view override returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("supplyRatePerBlock()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Returns the current total borrows plus accrued interest
     * @return The total borrows with interest
     */
    function totalBorrowsCurrent() external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("totalBorrowsCurrent()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrue interest to updated borrowIndex and then calculate account's borrow balance using the updated borrowIndex
     * @param account The address whose balance should be calculated after updating borrowIndex
     * @return The calculated balance
     */
    function borrowBalanceCurrent(address account) external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("borrowBalanceCurrent(address)", account));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Return the borrow balance of account based on stored data
     * @param account The address whose balance should be calculated
     * @return The calculated balance
     */
    function borrowBalanceStored(address account) public view override returns (uint) {
        bytes memory data = delegateToViewImplementation(
            abi.encodeWithSignature("borrowBalanceStored(address)", account)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrue interest then return the up-to-date exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateCurrent() public override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("exchangeRateCurrent()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Calculates the exchange rate from the underlying to the CToken
     * @dev This function does not accrue interest before calculating the exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateStored() public view override returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("exchangeRateStored()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Get cash balance of this cToken in the underlying asset
     * @return The quantity of underlying asset owned by this contract
     */
    function getCash() external view override returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("getCash()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Applies accrued interest to total borrows and reserves.
     * @dev This calculates interest accrued from the last checkpointed block
     *      up to the current block and writes new checkpoint to storage.
     */
    function accrueInterest() public override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("accrueInterest()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Transfers collateral tokens (this market) to the liquidator.
     * @dev Will fail unless called by another cToken during the process of liquidation.
     *  Its absolutely critical to use msg.sender as the borrowed cToken and not a parameter.
     * @param liquidator The account receiving seized collateral
     * @param borrower The account having collateral seized
     * @param seizeTokens The number of cTokens to seize
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function seize(address liquidator, address borrower, uint seizeTokens) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("seize(address,address,uint256)", liquidator, borrower, seizeTokens)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice A public function to sweep accidental ERC-20 transfers to this contract. Tokens are sent to admin (timelock)
     * @param token The address of the ERC-20 token to sweep
     */
    function sweepToken(EIP20NonStandardInterface token) external override {
        delegateToImplementation(abi.encodeWithSignature("sweepToken(address)", token));
    }

    /*** Admin Functions ***/

    /**
     * @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer.
     * @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer.
     * @param newPendingAdmin New pending admin.
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setPendingAdmin(address payable newPendingAdmin) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("_setPendingAdmin(address)", newPendingAdmin)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sets a new comptroller for the market
     * @dev Admin function to set a new comptroller
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setComptroller(ComptrollerInterface newComptroller) public override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("_setComptroller(address)", newComptroller)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice accrues interest and sets a new reserve factor for the protocol using _setReserveFactorFresh
     * @dev Admin function to accrue interest and set a new reserve factor
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setReserveFactor(uint newReserveFactorMantissa) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("_setReserveFactor(uint256)", newReserveFactorMantissa)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin
     * @dev Admin function for pending admin to accept role and update admin
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _acceptAdmin() external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_acceptAdmin()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrues interest and adds reserves by transferring from admin
     * @param addAmount Amount of reserves to add
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _addReserves(uint addAmount) external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_addReserves(uint256)", addAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrues interest and reduces reserves by transferring to admin
     * @param reduceAmount Amount of reduction to reserves
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _reduceReserves(uint reduceAmount) external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_reduceReserves(uint256)", reduceAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrues interest and updates the interest rate model using _setInterestRateModelFresh
     * @dev Admin function to accrue interest and update the interest rate model
     * @param newInterestRateModel the new interest rate model to use
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setInterestRateModel(InterestRateModel newInterestRateModel) public override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("_setInterestRateModel(address)", newInterestRateModel)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Internal method to delegate execution to another contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param callee The contract to delegatecall
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateTo(address callee, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returnData) = callee.delegatecall(data);
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize())
            }
        }
        return returnData;
    }

    /**
     * @notice Delegates execution to the implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToImplementation(bytes memory data) public returns (bytes memory) {
        return delegateTo(implementation, data);
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     *  There are an additional 2 prefix uints from the wrapper returndata, which we ignore since we make an extra hop.
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToViewImplementation(bytes memory data) public view returns (bytes memory) {
        (bool success, bytes memory returnData) = address(this).staticcall(
            abi.encodeWithSignature("delegateToImplementation(bytes)", data)
        );
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize())
            }
        }
        return abi.decode(returnData, (bytes));
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     */
    fallback() external payable {
        require(msg.value == 0, "CErc20Delegator:fallback: cannot send value to fallback");

        // delegate all other functions to current implementation
        (bool success, ) = implementation.delegatecall(msg.data);

        assembly {
            let free_mem_ptr := mload(0x40)
            returndatacopy(free_mem_ptr, 0, returndatasize())

            switch success
            case 0 {
                revert(free_mem_ptr, returndatasize())
            }
            default {
                return(free_mem_ptr, returndatasize())
            }
        }
    }
}

File 2 of 6 : CTokenInterfaces.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

import "./ComptrollerInterface.sol";
import "./InterestRateModel.sol";
import "./EIP20NonStandardInterface.sol";
import "./ErrorReporter.sol";

contract CTokenStorage {
    /**
     * @dev Guard variable for re-entrancy checks
     */
    bool internal _notEntered;

    /**
     * @notice EIP-20 token name for this token
     */
    string public name;

    /**
     * @notice EIP-20 token symbol for this token
     */
    string public symbol;

    /**
     * @notice EIP-20 token decimals for this token
     */
    uint8 public decimals;

    // Maximum borrow rate that can ever be applied (.0005% / block)
    uint internal constant borrowRateMaxMantissa = 0.0005e16;

    // Maximum fraction of interest that can be set aside for reserves
    uint internal constant reserveFactorMaxMantissa = 1e18;

    /**
     * @notice Administrator for this contract
     */
    address payable public admin;

    /**
     * @notice Pending administrator for this contract
     */
    address payable public pendingAdmin;

    /**
     * @notice Contract which oversees inter-cToken operations
     */
    ComptrollerInterface public comptroller;

    /**
     * @notice Model which tells what the current interest rate should be
     */
    InterestRateModel public interestRateModel;

    // Initial exchange rate used when minting the first CTokens (used when totalSupply = 0)
    uint internal initialExchangeRateMantissa;

    /**
     * @notice Fraction of interest currently set aside for reserves
     */
    uint public reserveFactorMantissa;

    /**
     * @notice Block number that interest was last accrued at
     */
    uint public accrualBlockNumber;

    /**
     * @notice Accumulator of the total earned interest rate since the opening of the market
     */
    uint public borrowIndex;

    /**
     * @notice Total amount of outstanding borrows of the underlying in this market
     */
    uint public totalBorrows;

    /**
     * @notice Total amount of reserves of the underlying held in this market
     */
    uint public totalReserves;

    /**
     * @notice Total number of tokens in circulation
     */
    uint public totalSupply;

    // Official record of token balances for each account
    mapping(address => uint) internal accountTokens;

    // Approved token transfer amounts on behalf of others
    mapping(address => mapping(address => uint)) internal transferAllowances;

    /**
     * @notice Container for borrow balance information
     * @member principal Total balance (with accrued interest), after applying the most recent balance-changing action
     * @member interestIndex Global borrowIndex as of the most recent balance-changing action
     */
    struct BorrowSnapshot {
        uint principal;
        uint interestIndex;
    }

    // Mapping of account addresses to outstanding borrow balances
    mapping(address => BorrowSnapshot) internal accountBorrows;

    /**
     * @notice Share of seized collateral that is added to reserves
     */
    uint public constant protocolSeizeShareMantissa = 2.8e16; //2.8%
}

abstract contract CTokenInterface is CTokenStorage {
    /**
     * @notice Indicator that this is a CToken contract (for inspection)
     */
    bool public constant isCToken = true;

    /*** Market Events ***/

    /**
     * @notice Event emitted when interest is accrued
     */
    event AccrueInterest(uint cashPrior, uint interestAccumulated, uint borrowIndex, uint totalBorrows);

    /**
     * @notice Event emitted when tokens are minted
     */
    event Mint(address minter, uint mintAmount, uint mintTokens);

    /**
     * @notice Event emitted when tokens are redeemed
     */
    event Redeem(address redeemer, uint redeemAmount, uint redeemTokens);

    /**
     * @notice Event emitted when underlying is borrowed
     */
    event Borrow(address borrower, uint borrowAmount, uint accountBorrows, uint totalBorrows, uint borrowIndex);

    /**
     * @notice Event emitted when a borrow is repaid
     */
    event RepayBorrow(
        address payer,
        address borrower,
        uint repayAmount,
        uint accountBorrows,
        uint totalBorrows,
        uint borrowIndex
    );

    /**
     * @notice Event emitted when a borrow is liquidated
     */
    event LiquidateBorrow(
        address liquidator,
        address borrower,
        uint repayAmount,
        address cTokenCollateral,
        uint seizeTokens
    );

    /*** Admin Events ***/

    /**
     * @notice Event emitted when pendingAdmin is changed
     */
    event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin);

    /**
     * @notice Event emitted when pendingAdmin is accepted, which means admin is updated
     */
    event NewAdmin(address oldAdmin, address newAdmin);

    /**
     * @notice Event emitted when comptroller is changed
     */
    event NewComptroller(ComptrollerInterface oldComptroller, ComptrollerInterface newComptroller);

    /**
     * @notice Event emitted when interestRateModel is changed
     */
    event NewMarketInterestRateModel(InterestRateModel oldInterestRateModel, InterestRateModel newInterestRateModel);

    /**
     * @notice Event emitted when the reserve factor is changed
     */
    event NewReserveFactor(uint oldReserveFactorMantissa, uint newReserveFactorMantissa);

    /**
     * @notice Event emitted when the reserves are added
     */
    event ReservesAdded(address benefactor, uint addAmount, uint newTotalReserves);

    /**
     * @notice Event emitted when the reserves are reduced
     */
    event ReservesReduced(address admin, uint reduceAmount, uint newTotalReserves);

    /**
     * @notice EIP20 Transfer event
     */
    event Transfer(address indexed from, address indexed to, uint amount);

    /**
     * @notice EIP20 Approval event
     */
    event Approval(address indexed owner, address indexed spender, uint amount);

    /*** User Interface ***/

    function transfer(address dst, uint amount) external virtual returns (bool);

    function transferFrom(address src, address dst, uint amount) external virtual returns (bool);

    function approve(address spender, uint amount) external virtual returns (bool);

    function allowance(address owner, address spender) external view virtual returns (uint);

    function balanceOf(address owner) external view virtual returns (uint);

    function balanceOfUnderlying(address owner) external virtual returns (uint);

    function getAccountSnapshot(address account) external view virtual returns (uint, uint, uint, uint);

    function borrowRatePerBlock() external view virtual returns (uint);

    function supplyRatePerBlock() external view virtual returns (uint);

    function totalBorrowsCurrent() external virtual returns (uint);

    function borrowBalanceCurrent(address account) external virtual returns (uint);

    function borrowBalanceStored(address account) external view virtual returns (uint);

    function exchangeRateCurrent() external virtual returns (uint);

    function exchangeRateStored() external view virtual returns (uint);

    function getCash() external view virtual returns (uint);

    function accrueInterest() external virtual returns (uint);

    function seize(address liquidator, address borrower, uint seizeTokens) external virtual returns (uint);

    /*** Admin Functions ***/

    function _setPendingAdmin(address payable newPendingAdmin) external virtual returns (uint);

    function _acceptAdmin() external virtual returns (uint);

    function _setComptroller(ComptrollerInterface newComptroller) external virtual returns (uint);

    function _setReserveFactor(uint newReserveFactorMantissa) external virtual returns (uint);

    function _reduceReserves(uint reduceAmount) external virtual returns (uint);

    function _setInterestRateModel(InterestRateModel newInterestRateModel) external virtual returns (uint);
}

contract CErc20Storage {
    /**
     * @notice Underlying asset for this CToken
     */
    address public underlying;
}

abstract contract CErc20Interface is CErc20Storage {
    /*** User Interface ***/

    function mint(uint mintAmount) external virtual returns (uint);

    function redeem(uint redeemTokens) external virtual returns (uint);

    function redeemBehalf(uint redeemTokens, address redeemee) external virtual returns (uint);

    function redeemUnderlying(uint redeemAmount) external virtual returns (uint);

    function borrow(uint borrowAmount) external virtual returns (uint);

    function borrowBehalf(uint borrowAmount, address borrowee) external virtual returns (uint);

    function repayBorrow(uint repayAmount) external virtual returns (uint);

    function repayBorrowBehalf(address borrower, uint repayAmount) external virtual returns (uint);

    function liquidateBorrow(
        address borrower,
        uint repayAmount,
        CTokenInterface cTokenCollateral
    ) external virtual returns (uint);

    function sweepToken(EIP20NonStandardInterface token) external virtual;

    /*** Admin Functions ***/

    function _addReserves(uint addAmount) external virtual returns (uint);
}

contract CDelegationStorage {
    /**
     * @notice Implementation address for this contract
     */
    address public implementation;
}

abstract contract CDelegatorInterface is CDelegationStorage {
    /**
     * @notice Emitted when implementation is changed
     */
    event NewImplementation(address oldImplementation, address newImplementation);

    /**
     * @notice Called by the admin to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(
        address implementation_,
        bool allowResign,
        bytes memory becomeImplementationData
    ) external virtual;
}

abstract contract CDelegateInterface is CDelegationStorage {
    /**
     * @notice Called by the delegator on a delegate to initialize it for duty
     * @dev Should revert if any issues arise which make it unfit for delegation
     * @param data The encoded bytes data for any initialization
     */
    function _becomeImplementation(bytes memory data) external virtual;

    /**
     * @notice Called by the delegator on a delegate to forfeit its responsibility
     */
    function _resignImplementation() external virtual;
}

// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

abstract contract ComptrollerInterface {
    /// @notice Indicator that this is a Comptroller contract (for inspection)
    bool public constant isComptroller = true;

    /*** Assets You Are In ***/

    function enterMarkets(address[] calldata cTokens) virtual external returns (uint[] memory);
    function exitMarket(address cToken) virtual external returns (uint);

    /*** Policy Hooks ***/

    function mintAllowed(address cToken, address minter, uint mintAmount) virtual external returns (uint);
    function mintVerify(address cToken, address minter, uint mintAmount, uint mintTokens) virtual external;

    function redeemAllowed(address cToken, address redeemer, uint redeemTokens) virtual external returns (uint);
    function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) virtual external;

    function borrowAllowed(address cToken, address borrower, uint borrowAmount) virtual external returns (uint);
    function borrowVerify(address cToken, address borrower, uint borrowAmount) virtual external;

    function repayBorrowAllowed(
        address cToken,
        address payer,
        address borrower,
        uint repayAmount) virtual external returns (uint);
    function repayBorrowVerify(
        address cToken,
        address payer,
        address borrower,
        uint repayAmount,
        uint borrowerIndex) virtual external;

    function enableLooping(address looper) virtual external returns (bool);

    function isLoopingEnabled(address looper) virtual external view returns (bool);

    function liquidateBorrowAllowed(
        address cTokenBorrowed,
        address cTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount) virtual external returns (uint);
    function liquidateBorrowVerify(
        address cTokenBorrowed,
        address cTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount,
        uint seizeTokens) virtual external;

    function seizeAllowed(
        address cTokenCollateral,
        address cTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) virtual external returns (uint);
    function seizeVerify(
        address cTokenCollateral,
        address cTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) virtual external;

    function transferAllowed(address cToken, address src, address dst, uint transferTokens) virtual external returns (uint);
    function transferVerify(address cToken, address src, address dst, uint transferTokens) virtual external;

    /*** Liquidity/Liquidation Calculations ***/

    function liquidateCalculateSeizeTokens(
        address cTokenBorrowed,
        address cTokenCollateral,
        uint repayAmount) virtual external view returns (uint, uint);
}

// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

/**
 * @title EIP20NonStandardInterface
 * @dev Version of ERC20 with no return values for `transfer` and `transferFrom`
 *  See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
 */
interface EIP20NonStandardInterface {

    /**
     * @notice Get the total number of tokens in circulation
     * @return The supply of tokens
     */
    function totalSupply() external view returns (uint256);

    /**
     * @notice Gets the balance of the specified address
     * @param owner The address from which the balance will be retrieved
     * @return balance The balance
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    ///
    /// !!!!!!!!!!!!!!
    /// !!! NOTICE !!! `transfer` does not return a value, in violation of the ERC-20 specification
    /// !!!!!!!!!!!!!!
    ///

    /**
      * @notice Transfer `amount` tokens from `msg.sender` to `dst`
      * @param dst The address of the destination account
      * @param amount The number of tokens to transfer
      */
    function transfer(address dst, uint256 amount) external;

    ///
    /// !!!!!!!!!!!!!!
    /// !!! NOTICE !!! `transferFrom` does not return a value, in violation of the ERC-20 specification
    /// !!!!!!!!!!!!!!
    ///

    /**
      * @notice Transfer `amount` tokens from `src` to `dst`
      * @param src The address of the source account
      * @param dst The address of the destination account
      * @param amount The number of tokens to transfer
      */
    function transferFrom(address src, address dst, uint256 amount) external;

    /**
      * @notice Approve `spender` to transfer up to `amount` from `src`
      * @dev This will overwrite the approval amount for `spender`
      *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
      * @param spender The address of the account which may transfer tokens
      * @param amount The number of tokens that are approved
      * @return success Whether or not the approval succeeded
      */
    function approve(address spender, uint256 amount) external returns (bool success);

    /**
      * @notice Get the current allowance from `owner` for `spender`
      * @param owner The address of the account which owns the tokens to be spent
      * @param spender The address of the account which may transfer tokens
      * @return remaining The number of tokens allowed to be spent
      */
    function allowance(address owner, address spender) external view returns (uint256 remaining);

    event Transfer(address indexed from, address indexed to, uint256 amount);
    event Approval(address indexed owner, address indexed spender, uint256 amount);
}

// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

contract ComptrollerErrorReporter {
    enum Error {
        NO_ERROR,
        UNAUTHORIZED,
        COMPTROLLER_MISMATCH,
        INSUFFICIENT_SHORTFALL,
        INSUFFICIENT_LIQUIDITY,
        INVALID_CLOSE_FACTOR,
        INVALID_COLLATERAL_FACTOR,
        INVALID_LIQUIDATION_INCENTIVE,
        MARKET_NOT_ENTERED, // no longer possible
        MARKET_NOT_LISTED,
        MARKET_ALREADY_LISTED,
        MATH_ERROR,
        NONZERO_BORROW_BALANCE,
        PRICE_ERROR,
        REJECTION,
        SNAPSHOT_ERROR,
        TOO_MANY_ASSETS,
        TOO_MUCH_REPAY
    }

    enum FailureInfo {
        ACCEPT_ADMIN_PENDING_ADMIN_CHECK,
        ACCEPT_PENDING_IMPLEMENTATION_ADDRESS_CHECK,
        EXIT_MARKET_BALANCE_OWED,
        EXIT_MARKET_REJECTION,
        SET_CLOSE_FACTOR_OWNER_CHECK,
        SET_CLOSE_FACTOR_VALIDATION,
        SET_COLLATERAL_FACTOR_OWNER_CHECK,
        SET_COLLATERAL_FACTOR_NO_EXISTS,
        SET_COLLATERAL_FACTOR_VALIDATION,
        SET_COLLATERAL_FACTOR_WITHOUT_PRICE,
        SET_IMPLEMENTATION_OWNER_CHECK,
        SET_LIQUIDATION_INCENTIVE_OWNER_CHECK,
        SET_LIQUIDATION_INCENTIVE_VALIDATION,
        SET_MAX_ASSETS_OWNER_CHECK,
        SET_PENDING_ADMIN_OWNER_CHECK,
        SET_PENDING_IMPLEMENTATION_OWNER_CHECK,
        SET_PRICE_ORACLE_OWNER_CHECK,
        SUPPORT_MARKET_EXISTS,
        SUPPORT_MARKET_OWNER_CHECK,
        SET_PAUSE_GUARDIAN_OWNER_CHECK
    }

    /**
      * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary
      * contract-specific code that enables us to report opaque error codes from upgradeable contracts.
      **/
    event Failure(uint error, uint info, uint detail);

    /**
      * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator
      */
    function fail(Error err, FailureInfo info) internal returns (uint) {
        emit Failure(uint(err), uint(info), 0);

        return uint(err);
    }

    /**
      * @dev use this when reporting an opaque error from an upgradeable collaborator contract
      */
    function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) {
        emit Failure(uint(err), uint(info), opaqueError);

        return uint(err);
    }
}

contract TokenErrorReporter {
    uint public constant NO_ERROR = 0; // support legacy return codes

    error TransferComptrollerRejection(uint256 errorCode);
    error TransferNotAllowed();
    error TransferNotEnough();
    error TransferTooMuch();

    error MintComptrollerRejection(uint256 errorCode);
    error MintFreshnessCheck();

    error RedeemComptrollerRejection(uint256 errorCode);
    error RedeemFreshnessCheck();
    error RedeemTransferOutNotPossible();

    error BorrowComptrollerRejection(uint256 errorCode);
    error BorrowFreshnessCheck();
    error BorrowCashNotAvailable();

    error RepayBorrowComptrollerRejection(uint256 errorCode);
    error RepayBorrowFreshnessCheck();

    error LiquidateComptrollerRejection(uint256 errorCode);
    error LiquidateFreshnessCheck();
    error LiquidateCollateralFreshnessCheck();
    error LiquidateAccrueBorrowInterestFailed(uint256 errorCode);
    error LiquidateAccrueCollateralInterestFailed(uint256 errorCode);
    error LiquidateLiquidatorIsBorrower();
    error LiquidateCloseAmountIsZero();
    error LiquidateCloseAmountIsUintMax();
    error LiquidateRepayBorrowFreshFailed(uint256 errorCode);

    error LiquidateSeizeComptrollerRejection(uint256 errorCode);
    error LiquidateSeizeLiquidatorIsBorrower();

    error AcceptAdminPendingAdminCheck();

    error SetComptrollerOwnerCheck();
    error SetPendingAdminOwnerCheck();

    error SetReserveFactorAdminCheck();
    error SetReserveFactorFreshCheck();
    error SetReserveFactorBoundsCheck();

    error AddReservesFactorFreshCheck(uint256 actualAddAmount);

    error ReduceReservesAdminCheck();
    error ReduceReservesFreshCheck();
    error ReduceReservesCashNotAvailable();
    error ReduceReservesCashValidation();

    error SetInterestRateModelOwnerCheck();
    error SetInterestRateModelFreshCheck();
}

// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

/**
  * @title Compound's InterestRateModel Interface
  * @author Compound
  */
abstract contract InterestRateModel {
    /// @notice Indicator that this is an InterestRateModel contract (for inspection)
    bool public constant isInterestRateModel = true;

    /**
      * @notice Calculates the current borrow interest rate per block
      * @param cash The total amount of cash the market has
      * @param borrows The total amount of borrows the market has outstanding
      * @param reserves The total amount of reserves the market has
      * @return The borrow rate per block (as a percentage, and scaled by 1e18)
      */
    function getBorrowRate(uint cash, uint borrows, uint reserves) virtual external view returns (uint);

    /**
      * @notice Calculates the current supply interest rate per block
      * @param cash The total amount of cash the market has
      * @param borrows The total amount of borrows the market has outstanding
      * @param reserves The total amount of reserves the market has
      * @param reserveFactorMantissa The current reserve factor the market has
      * @return The supply rate per block (as a percentage, and scaled by 1e18)
      */
    function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) virtual external view returns (uint);
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"underlying_","type":"address"},{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address payable","name":"admin_","type":"address"},{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cashPrior","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestAccumulated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"AccrueInterest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"borrowAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"}],"name":"Borrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"liquidator","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"cTokenCollateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"LiquidateBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintTokens","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract ComptrollerInterface","name":"oldComptroller","type":"address"},{"indexed":false,"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"NewComptroller","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldImplementation","type":"address"},{"indexed":false,"internalType":"address","name":"newImplementation","type":"address"}],"name":"NewImplementation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract InterestRateModel","name":"oldInterestRateModel","type":"address"},{"indexed":false,"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"NewMarketInterestRateModel","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldReserveFactorMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"NewReserveFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"redeemer","type":"address"},{"indexed":false,"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"}],"name":"RepayBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"benefactor","type":"address"},{"indexed":false,"internalType":"uint256","name":"addAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"reduceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesReduced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"addAmount","type":"uint256"}],"name":"_addReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"_setComptroller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bool","name":"allowResign","type":"bool"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"name":"_setImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newPendingAdmin","type":"address"}],"name":"_setPendingAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"_setReserveFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accrueInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"},{"internalType":"address","name":"borrowee","type":"address"}],"name":"borrowBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"borrowIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"borrowRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"comptroller","outputs":[{"internalType":"contract ComptrollerInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToViewImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exchangeRateCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exchangeRateStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"},{"internalType":"contract CTokenInterface","name":"cTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolSeizeShareMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"},{"internalType":"address","name":"redeemee","type":"address"}],"name":"redeemBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrowBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract EIP20NonStandardInterface","name":"token","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

0x60806040523480156200001157600080fd5b506040516200234b3803806200234b83398101604081905262000034916200041a565b60038054610100600160a81b0319163361010002179055604051620000a590839062000071908d908d908d908d908d908d908d9060240162000556565b60408051601f198184030181529190526020810180516001600160e01b03908116631a31d46560e01b17909152620000ea16565b50620000b48260008362000169565b5050600380546001600160a01b0390921661010002610100600160a81b031990921691909117905550620005f995505050505050565b6060600080846001600160a01b031684604051620001099190620005bf565b600060405180830381855af49150503d806000811462000146576040519150601f19603f3d011682016040523d82523d6000602084013e6200014b565b606091505b5091509150600082141562000161573d60208201fd5b949350505050565b60035461010090046001600160a01b03163314620001f35760405162461bcd60e51b815260206004820152603960248201527f43457263323044656c656761746f723a3a5f736574496d706c656d656e74617460448201527f696f6e3a2043616c6c6572206d7573742062652061646d696e00000000000000606482015260840160405180910390fd5b811562000235576040805160048152602481019091526020810180516001600160e01b0390811663153ab50560e01b17909152620002339190620002f016565b505b601280546001600160a01b038581166001600160a01b0319831617909255604051911690620002a2906200026e908490602401620005dd565b60408051601f198184030181529190526020810180516001600160e01b03908116630adccee560e31b17909152620002f016565b50601254604080516001600160a01b03808516825290921660208301527fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a910160405180910390a150505050565b6012546060906200030b906001600160a01b031683620000ea565b92915050565b80516001600160a01b03811681146200032957600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200036157818101518382015260200162000347565b8381111562000371576000848401525b50505050565b600082601f8301126200038957600080fd5b81516001600160401b0380821115620003a657620003a66200032e565b604051601f8301601f19908116603f01168101908282118183101715620003d157620003d16200032e565b81604052838152866020858801011115620003eb57600080fd5b620003fe84602083016020890162000344565b9695505050505050565b805160ff811681146200032957600080fd5b6000806000806000806000806000806101408b8d0312156200043b57600080fd5b620004468b62000311565b99506200045660208c0162000311565b98506200046660408c0162000311565b60608c015160808d015191995097506001600160401b03808211156200048b57600080fd5b620004998e838f0162000377565b975060a08d0151915080821115620004b057600080fd5b620004be8e838f0162000377565b9650620004ce60c08e0162000408565b9550620004de60e08e0162000311565b9450620004ef6101008e0162000311565b93506101208d01519150808211156200050757600080fd5b50620005168d828e0162000377565b9150509295989b9194979a5092959850565b600081518084526200054281602086016020860162000344565b601f01601f19169290920160200192915050565b6001600160a01b0388811682528781166020830152861660408201526060810185905260e060808201819052600090620005939083018662000528565b82810360a0840152620005a7818662000528565b91505060ff831660c083015298975050505050505050565b60008251620005d381846020870162000344565b9190910192915050565b602081526000620005f2602083018462000528565b9392505050565b611d4280620006096000396000f3fe6080604052600436106103355760003560e01c806370a08231116101ab578063bd6d894d116100f7578063f2b3abbd11610095578063f851a4401161006f578063f851a44014610a3f578063f8f9da2814610a64578063fca7820b14610a79578063fe9c44ae14610a9957610335565b8063f2b3abbd146109df578063f3fdb15a146109ff578063f5e3c46214610a1f57610335565b8063db006a75116100d1578063db006a751461096a578063dd62ed3e1461098a578063de3c77eb146109aa578063e9c714f2146109ca57610335565b8063bd6d894d146108f5578063c37f68e21461090a578063c5ebeaec1461094a57610335565b8063a0712d6811610164578063aa5af0fd1161013e578063aa5af0fd1461088a578063ae9d70b0146108a0578063b2a02ff1146108b5578063b71d1a0c146108d557610335565b8063a0712d6814610835578063a6afed9514610855578063a9059cbb1461086a57610335565b806370a082311461079557806373acee98146107b5578063852a12e3146107ca5780638f840ddd146107ea57806395d89b411461080057806395dd91931461081557610335565b80633af9e669116102855780635c60da1b1161022357806360a7cf20116101fd57806360a7cf20146107245780636752e702146107445780636c540baf1461075f5780636f307dc31461077557610335565b80635c60da1b146106c45780635fe3b567146106e4578063601a0bf11461070457610335565b80634487152f1161025f5780634487152f1461064e5780634576b5db1461066e57806347bd37181461068e578063555bcc40146106a457610335565b80633af9e669146105f95780633b1d21a2146106195780633e9410101461062e57610335565b806318160ddd116102f257806323b872dd116102cc57806323b872dd146105555780632608f818146105755780632678224714610595578063313ce567146105cd57610335565b806318160ddd14610508578063182df0f51461051e5780631be195601461053357610335565b806306fdde03146104295780630933c1ed14610454578063095ea7b3146104745780630e752702146104a4578063173b9904146104d257806317bfdfbc146104e8575b34156103ae5760405162461bcd60e51b815260206004820152603760248201527f43457263323044656c656761746f723a66616c6c6261636b3a2063616e6e6f7460448201527f2073656e642076616c756520746f2066616c6c6261636b00000000000000000060648201526084015b60405180910390fd5b6012546040516000916001600160a01b0316906103ce9083903690611897565b600060405180830381855af49150503d8060008114610409576040519150601f19603f3d011682016040523d82523d6000602084013e61040e565b606091505b505090506040513d6000823e818015610425573d82f35b3d82fd5b34801561043557600080fd5b5061043e610aae565b60405161044b9190611903565b60405180910390f35b34801561046057600080fd5b5061043e61046f3660046119db565b610b3c565b34801561048057600080fd5b5061049461048f366004611a28565b610b5b565b604051901515815260200161044b565b3480156104b057600080fd5b506104c46104bf366004611a54565b610bcd565b60405190815260200161044b565b3480156104de57600080fd5b506104c460085481565b3480156104f457600080fd5b506104c4610503366004611a6d565b610c32565b34801561051457600080fd5b506104c4600d5481565b34801561052a57600080fd5b506104c4610c7f565b34801561053f57600080fd5b5061055361054e366004611a6d565b610cd2565b005b34801561056157600080fd5b50610494610570366004611a8a565b610d1d565b34801561058157600080fd5b506104c4610590366004611a28565b610d98565b3480156105a157600080fd5b506004546105b5906001600160a01b031681565b6040516001600160a01b03909116815260200161044b565b3480156105d957600080fd5b506003546105e79060ff1681565b60405160ff909116815260200161044b565b34801561060557600080fd5b506104c4610614366004611a6d565b610e02565b34801561062557600080fd5b506104c4610e4f565b34801561063a57600080fd5b506104c4610649366004611a54565b610e86565b34801561065a57600080fd5b5061043e6106693660046119db565b610ece565b34801561067a57600080fd5b506104c4610689366004611a6d565b610f8c565b34801561069a57600080fd5b506104c4600b5481565b3480156106b057600080fd5b506105536106bf366004611ad9565b610fd9565b3480156106d057600080fd5b506012546105b5906001600160a01b031681565b3480156106f057600080fd5b506005546105b5906001600160a01b031681565b34801561071057600080fd5b506104c461071f366004611a54565b61114b565b34801561073057600080fd5b506104c461073f366004611b3b565b611193565b34801561075057600080fd5b506104c4666379da05b6000081565b34801561076b57600080fd5b506104c460095481565b34801561078157600080fd5b506011546105b5906001600160a01b031681565b3480156107a157600080fd5b506104c46107b0366004611a6d565b6111e7565b3480156107c157600080fd5b506104c4611234565b3480156107d657600080fd5b506104c46107e5366004611a54565b61126b565b3480156107f657600080fd5b506104c4600c5481565b34801561080c57600080fd5b5061043e6112b3565b34801561082157600080fd5b506104c4610830366004611a6d565b6112c0565b34801561084157600080fd5b506104c4610850366004611a54565b61130d565b34801561086157600080fd5b506104c4611355565b34801561087657600080fd5b50610494610885366004611a28565b61138c565b34801561089657600080fd5b506104c4600a5481565b3480156108ac57600080fd5b506104c46113e0565b3480156108c157600080fd5b506104c46108d0366004611a8a565b611417565b3480156108e157600080fd5b506104c46108f0366004611a6d565b611489565b34801561090157600080fd5b506104c46114d6565b34801561091657600080fd5b5061092a610925366004611a6d565b61150d565b60408051948552602085019390935291830152606082015260800161044b565b34801561095657600080fd5b506104c4610965366004611a54565b61158d565b34801561097657600080fd5b506104c4610985366004611a54565b6115d5565b34801561099657600080fd5b506104c46109a5366004611b6b565b61161d565b3480156109b657600080fd5b506104c46109c5366004611b3b565b611672565b3480156109d657600080fd5b506104c46116c6565b3480156109eb57600080fd5b506104c46109fa366004611a6d565b6116fd565b348015610a0b57600080fd5b506006546105b5906001600160a01b031681565b348015610a2b57600080fd5b506104c4610a3a366004611b99565b61174a565b348015610a4b57600080fd5b506003546105b59061010090046001600160a01b031681565b348015610a7057600080fd5b506104c46117a6565b348015610a8557600080fd5b506104c4610a94366004611a54565b6117dd565b348015610aa557600080fd5b50610494600181565b60018054610abb90611bdb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae790611bdb565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b505050505081565b601254606090610b55906001600160a01b031683611825565b92915050565b6040516001600160a01b0383166024820152604481018290526000908190610baf9060640160408051601f198184030181529190526020810180516001600160e01b031663095ea7b360e01b179052610b3c565b905080806020019051810190610bc59190611c16565b949350505050565b600080610c1583604051602401610be691815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663073a938160e11b179052610b3c565b905080806020019051810190610c2b9190611c33565b9392505050565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b03166305eff7ef60e21b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b031663182df0f560e01b1790526000908190610cb690610ece565b905080806020019051810190610ccc9190611c33565b91505090565b6040516001600160a01b0382166024820152610d199060440160408051601f198184030181529190526020810180516001600160e01b031662df0cab60e51b179052610b3c565b5050565b6040516001600160a01b03808516602483015283166044820152606481018290526000908190610d799060840160408051601f198184030181529190526020810180516001600160e01b03166323b872dd60e01b179052610b3c565b905080806020019051810190610d8f9190611c16565b95945050505050565b6040516001600160a01b0383166024820152604481018290526000908190610dec9060640160408051601f198184030181529190526020810180516001600160e01b03166304c11f0360e31b179052610b3c565b905080806020019051810190610bc59190611c33565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b0316633af9e66960e01b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b0316631d8e90d160e11b1790526000908190610cb690610ece565b600080610c1583604051602401610e9f91815260200190565b60408051601f198184030181529190526020810180516001600160e01b03166303e9410160e41b179052610b3c565b6060600080306001600160a01b031684604051602401610eee9190611903565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b17905251610f239190611c4c565b600060405180830381855afa9150503d8060008114610f5e576040519150601f19603f3d011682016040523d82523d6000602084013e610f63565b606091505b50915091506000821415610f78573d60208201fd5b80806020019051810190610bc59190611c68565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b0316634576b5db60e01b179052610b3c565b60035461010090046001600160a01b0316331461105e5760405162461bcd60e51b815260206004820152603960248201527f43457263323044656c656761746f723a3a5f736574496d706c656d656e74617460448201527f696f6e3a2043616c6c6572206d7573742062652061646d696e0000000000000060648201526084016103a5565b8115611098576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b17905261109690610b3c565b505b601280546001600160a01b038581166001600160a01b03198316179092556040519116906110fd906110ce908490602401611903565b60408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b179052610b3c565b50601254604080516001600160a01b03808516825290921660208301527fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a910160405180910390a150505050565b600080610c158360405160240161116491815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663601a0bf160e01b179052610b3c565b604051602481018390526001600160a01b03821660448201526000908190610dec9060640160408051601f198184030181529190526020810180516001600160e01b031663301c272b60e01b179052610b3c565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b03166370a0823160e01b179052610ece565b6040805160048152602481019091526020810180516001600160e01b0316630e759dd360e31b1790526000908190610cb690610b3c565b600080610c158360405160240161128491815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663852a12e360e01b179052610b3c565b60028054610abb90611bdb565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b03166395dd919360e01b179052610ece565b600080610c158360405160240161132691815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663140e25ad60e31b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b031663a6afed9560e01b1790526000908190610cb690610b3c565b6040516001600160a01b0383166024820152604481018290526000908190610baf9060640160408051601f198184030181529190526020810180516001600160e01b031663a9059cbb60e01b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b0316630ae9d70b60e41b1790526000908190610cb690610ece565b6040516001600160a01b038085166024830152831660448201526064810182905260009081906114739060840160408051601f198184030181529190526020810180516001600160e01b031663b2a02ff160e01b179052610b3c565b905080806020019051810190610d8f9190611c33565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b0316632dc7468360e21b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b031663bd6d894d60e01b1790526000908190610cb690610b3c565b60008060008060006115678660405160240161153891906001600160a01b0391909116815260200190565b60408051601f198184030181529190526020810180516001600160e01b03166361bfb47160e11b179052610ece565b90508080602001905181019061157d9190611cd6565b9450945094509450509193509193565b600080610c15836040516024016115a691815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663317afabb60e21b179052610b3c565b600080610c15836040516024016115ee91815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663db006a7560e01b179052610b3c565b6040516001600160a01b038084166024830152821660448201526000908190610dec9060640160408051601f198184030181529190526020810180516001600160e01b0316636eb1769f60e11b179052610ece565b604051602481018390526001600160a01b03821660448201526000908190610dec9060640160408051601f198184030181529190526020810180516001600160e01b031663789fa20960e11b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b03166374e38a7960e11b1790526000908190610cb690610b3c565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b031663f2b3abbd60e01b179052610b3c565b6040516001600160a01b038085166024830152604482018490528216606482015260009081906114739060840160408051601f198184030181529190526020810180516001600160e01b0316637af1e23160e11b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b0316631f1f3b4560e31b1790526000908190610cb690610ece565b600080610c15836040516024016117f691815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663fca7820b60e01b179052610b3c565b6060600080846001600160a01b0316846040516118429190611c4c565b600060405180830381855af49150503d806000811461187d576040519150601f19603f3d011682016040523d82523d6000602084013e611882565b606091505b50915091506000821415610bc5573d60208201fd5b8183823760009101908152919050565b60005b838110156118c25781810151838201526020016118aa565b838111156118d1576000848401525b50505050565b600081518084526118ef8160208601602086016118a7565b601f01601f19169290920160200192915050565b602081526000610c2b60208301846118d7565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561195557611955611916565b604052919050565b600067ffffffffffffffff82111561197757611977611916565b50601f01601f191660200190565b600082601f83011261199657600080fd5b81356119a96119a48261195d565b61192c565b8181528460208386010111156119be57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156119ed57600080fd5b813567ffffffffffffffff811115611a0457600080fd5b610bc584828501611985565b6001600160a01b0381168114611a2557600080fd5b50565b60008060408385031215611a3b57600080fd5b8235611a4681611a10565b946020939093013593505050565b600060208284031215611a6657600080fd5b5035919050565b600060208284031215611a7f57600080fd5b8135610c2b81611a10565b600080600060608486031215611a9f57600080fd5b8335611aaa81611a10565b92506020840135611aba81611a10565b929592945050506040919091013590565b8015158114611a2557600080fd5b600080600060608486031215611aee57600080fd5b8335611af981611a10565b92506020840135611b0981611acb565b9150604084013567ffffffffffffffff811115611b2557600080fd5b611b3186828701611985565b9150509250925092565b60008060408385031215611b4e57600080fd5b823591506020830135611b6081611a10565b809150509250929050565b60008060408385031215611b7e57600080fd5b8235611b8981611a10565b91506020830135611b6081611a10565b600080600060608486031215611bae57600080fd5b8335611bb981611a10565b9250602084013591506040840135611bd081611a10565b809150509250925092565b600181811c90821680611bef57607f821691505b60208210811415611c1057634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611c2857600080fd5b8151610c2b81611acb565b600060208284031215611c4557600080fd5b5051919050565b60008251611c5e8184602087016118a7565b9190910192915050565b600060208284031215611c7a57600080fd5b815167ffffffffffffffff811115611c9157600080fd5b8201601f81018413611ca257600080fd5b8051611cb06119a48261195d565b818152856020838501011115611cc557600080fd5b610d8f8260208301602086016118a7565b60008060008060808587031215611cec57600080fd5b50508251602084015160408501516060909501519196909550909250905056fea2646970667358221220ddb7cd60798950d82655e9ea8df0c05105692015c371cb0d3bdcdc6a91d4a55564736f6c634300080a0033000000000000000000000000fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb900000000000000000000000066a3e782be81c5175171b695e56ae412b6966c150000000000000000000000001e12506643a9e60218b3faf6a038d64aee11889c0000000000000000000000000000000000000000000000000000b5e620f4800000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000800000000000000000000000041c2f1af5a4a4c65b580c1397141684f96b68aab00000000000000000000000038f863433b86df0cd7aabb2cb7da444cd58516f400000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000134c6f64657374617220546574686572205553440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056c555344540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c806370a08231116101ab578063bd6d894d116100f7578063f2b3abbd11610095578063f851a4401161006f578063f851a44014610a3f578063f8f9da2814610a64578063fca7820b14610a79578063fe9c44ae14610a9957610335565b8063f2b3abbd146109df578063f3fdb15a146109ff578063f5e3c46214610a1f57610335565b8063db006a75116100d1578063db006a751461096a578063dd62ed3e1461098a578063de3c77eb146109aa578063e9c714f2146109ca57610335565b8063bd6d894d146108f5578063c37f68e21461090a578063c5ebeaec1461094a57610335565b8063a0712d6811610164578063aa5af0fd1161013e578063aa5af0fd1461088a578063ae9d70b0146108a0578063b2a02ff1146108b5578063b71d1a0c146108d557610335565b8063a0712d6814610835578063a6afed9514610855578063a9059cbb1461086a57610335565b806370a082311461079557806373acee98146107b5578063852a12e3146107ca5780638f840ddd146107ea57806395d89b411461080057806395dd91931461081557610335565b80633af9e669116102855780635c60da1b1161022357806360a7cf20116101fd57806360a7cf20146107245780636752e702146107445780636c540baf1461075f5780636f307dc31461077557610335565b80635c60da1b146106c45780635fe3b567146106e4578063601a0bf11461070457610335565b80634487152f1161025f5780634487152f1461064e5780634576b5db1461066e57806347bd37181461068e578063555bcc40146106a457610335565b80633af9e669146105f95780633b1d21a2146106195780633e9410101461062e57610335565b806318160ddd116102f257806323b872dd116102cc57806323b872dd146105555780632608f818146105755780632678224714610595578063313ce567146105cd57610335565b806318160ddd14610508578063182df0f51461051e5780631be195601461053357610335565b806306fdde03146104295780630933c1ed14610454578063095ea7b3146104745780630e752702146104a4578063173b9904146104d257806317bfdfbc146104e8575b34156103ae5760405162461bcd60e51b815260206004820152603760248201527f43457263323044656c656761746f723a66616c6c6261636b3a2063616e6e6f7460448201527f2073656e642076616c756520746f2066616c6c6261636b00000000000000000060648201526084015b60405180910390fd5b6012546040516000916001600160a01b0316906103ce9083903690611897565b600060405180830381855af49150503d8060008114610409576040519150601f19603f3d011682016040523d82523d6000602084013e61040e565b606091505b505090506040513d6000823e818015610425573d82f35b3d82fd5b34801561043557600080fd5b5061043e610aae565b60405161044b9190611903565b60405180910390f35b34801561046057600080fd5b5061043e61046f3660046119db565b610b3c565b34801561048057600080fd5b5061049461048f366004611a28565b610b5b565b604051901515815260200161044b565b3480156104b057600080fd5b506104c46104bf366004611a54565b610bcd565b60405190815260200161044b565b3480156104de57600080fd5b506104c460085481565b3480156104f457600080fd5b506104c4610503366004611a6d565b610c32565b34801561051457600080fd5b506104c4600d5481565b34801561052a57600080fd5b506104c4610c7f565b34801561053f57600080fd5b5061055361054e366004611a6d565b610cd2565b005b34801561056157600080fd5b50610494610570366004611a8a565b610d1d565b34801561058157600080fd5b506104c4610590366004611a28565b610d98565b3480156105a157600080fd5b506004546105b5906001600160a01b031681565b6040516001600160a01b03909116815260200161044b565b3480156105d957600080fd5b506003546105e79060ff1681565b60405160ff909116815260200161044b565b34801561060557600080fd5b506104c4610614366004611a6d565b610e02565b34801561062557600080fd5b506104c4610e4f565b34801561063a57600080fd5b506104c4610649366004611a54565b610e86565b34801561065a57600080fd5b5061043e6106693660046119db565b610ece565b34801561067a57600080fd5b506104c4610689366004611a6d565b610f8c565b34801561069a57600080fd5b506104c4600b5481565b3480156106b057600080fd5b506105536106bf366004611ad9565b610fd9565b3480156106d057600080fd5b506012546105b5906001600160a01b031681565b3480156106f057600080fd5b506005546105b5906001600160a01b031681565b34801561071057600080fd5b506104c461071f366004611a54565b61114b565b34801561073057600080fd5b506104c461073f366004611b3b565b611193565b34801561075057600080fd5b506104c4666379da05b6000081565b34801561076b57600080fd5b506104c460095481565b34801561078157600080fd5b506011546105b5906001600160a01b031681565b3480156107a157600080fd5b506104c46107b0366004611a6d565b6111e7565b3480156107c157600080fd5b506104c4611234565b3480156107d657600080fd5b506104c46107e5366004611a54565b61126b565b3480156107f657600080fd5b506104c4600c5481565b34801561080c57600080fd5b5061043e6112b3565b34801561082157600080fd5b506104c4610830366004611a6d565b6112c0565b34801561084157600080fd5b506104c4610850366004611a54565b61130d565b34801561086157600080fd5b506104c4611355565b34801561087657600080fd5b50610494610885366004611a28565b61138c565b34801561089657600080fd5b506104c4600a5481565b3480156108ac57600080fd5b506104c46113e0565b3480156108c157600080fd5b506104c46108d0366004611a8a565b611417565b3480156108e157600080fd5b506104c46108f0366004611a6d565b611489565b34801561090157600080fd5b506104c46114d6565b34801561091657600080fd5b5061092a610925366004611a6d565b61150d565b60408051948552602085019390935291830152606082015260800161044b565b34801561095657600080fd5b506104c4610965366004611a54565b61158d565b34801561097657600080fd5b506104c4610985366004611a54565b6115d5565b34801561099657600080fd5b506104c46109a5366004611b6b565b61161d565b3480156109b657600080fd5b506104c46109c5366004611b3b565b611672565b3480156109d657600080fd5b506104c46116c6565b3480156109eb57600080fd5b506104c46109fa366004611a6d565b6116fd565b348015610a0b57600080fd5b506006546105b5906001600160a01b031681565b348015610a2b57600080fd5b506104c4610a3a366004611b99565b61174a565b348015610a4b57600080fd5b506003546105b59061010090046001600160a01b031681565b348015610a7057600080fd5b506104c46117a6565b348015610a8557600080fd5b506104c4610a94366004611a54565b6117dd565b348015610aa557600080fd5b50610494600181565b60018054610abb90611bdb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae790611bdb565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b505050505081565b601254606090610b55906001600160a01b031683611825565b92915050565b6040516001600160a01b0383166024820152604481018290526000908190610baf9060640160408051601f198184030181529190526020810180516001600160e01b031663095ea7b360e01b179052610b3c565b905080806020019051810190610bc59190611c16565b949350505050565b600080610c1583604051602401610be691815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663073a938160e11b179052610b3c565b905080806020019051810190610c2b9190611c33565b9392505050565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b03166305eff7ef60e21b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b031663182df0f560e01b1790526000908190610cb690610ece565b905080806020019051810190610ccc9190611c33565b91505090565b6040516001600160a01b0382166024820152610d199060440160408051601f198184030181529190526020810180516001600160e01b031662df0cab60e51b179052610b3c565b5050565b6040516001600160a01b03808516602483015283166044820152606481018290526000908190610d799060840160408051601f198184030181529190526020810180516001600160e01b03166323b872dd60e01b179052610b3c565b905080806020019051810190610d8f9190611c16565b95945050505050565b6040516001600160a01b0383166024820152604481018290526000908190610dec9060640160408051601f198184030181529190526020810180516001600160e01b03166304c11f0360e31b179052610b3c565b905080806020019051810190610bc59190611c33565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b0316633af9e66960e01b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b0316631d8e90d160e11b1790526000908190610cb690610ece565b600080610c1583604051602401610e9f91815260200190565b60408051601f198184030181529190526020810180516001600160e01b03166303e9410160e41b179052610b3c565b6060600080306001600160a01b031684604051602401610eee9190611903565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b17905251610f239190611c4c565b600060405180830381855afa9150503d8060008114610f5e576040519150601f19603f3d011682016040523d82523d6000602084013e610f63565b606091505b50915091506000821415610f78573d60208201fd5b80806020019051810190610bc59190611c68565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b0316634576b5db60e01b179052610b3c565b60035461010090046001600160a01b0316331461105e5760405162461bcd60e51b815260206004820152603960248201527f43457263323044656c656761746f723a3a5f736574496d706c656d656e74617460448201527f696f6e3a2043616c6c6572206d7573742062652061646d696e0000000000000060648201526084016103a5565b8115611098576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b17905261109690610b3c565b505b601280546001600160a01b038581166001600160a01b03198316179092556040519116906110fd906110ce908490602401611903565b60408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b179052610b3c565b50601254604080516001600160a01b03808516825290921660208301527fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a910160405180910390a150505050565b600080610c158360405160240161116491815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663601a0bf160e01b179052610b3c565b604051602481018390526001600160a01b03821660448201526000908190610dec9060640160408051601f198184030181529190526020810180516001600160e01b031663301c272b60e01b179052610b3c565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b03166370a0823160e01b179052610ece565b6040805160048152602481019091526020810180516001600160e01b0316630e759dd360e31b1790526000908190610cb690610b3c565b600080610c158360405160240161128491815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663852a12e360e01b179052610b3c565b60028054610abb90611bdb565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b03166395dd919360e01b179052610ece565b600080610c158360405160240161132691815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663140e25ad60e31b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b031663a6afed9560e01b1790526000908190610cb690610b3c565b6040516001600160a01b0383166024820152604481018290526000908190610baf9060640160408051601f198184030181529190526020810180516001600160e01b031663a9059cbb60e01b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b0316630ae9d70b60e41b1790526000908190610cb690610ece565b6040516001600160a01b038085166024830152831660448201526064810182905260009081906114739060840160408051601f198184030181529190526020810180516001600160e01b031663b2a02ff160e01b179052610b3c565b905080806020019051810190610d8f9190611c33565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b0316632dc7468360e21b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b031663bd6d894d60e01b1790526000908190610cb690610b3c565b60008060008060006115678660405160240161153891906001600160a01b0391909116815260200190565b60408051601f198184030181529190526020810180516001600160e01b03166361bfb47160e11b179052610ece565b90508080602001905181019061157d9190611cd6565b9450945094509450509193509193565b600080610c15836040516024016115a691815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663317afabb60e21b179052610b3c565b600080610c15836040516024016115ee91815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663db006a7560e01b179052610b3c565b6040516001600160a01b038084166024830152821660448201526000908190610dec9060640160408051601f198184030181529190526020810180516001600160e01b0316636eb1769f60e11b179052610ece565b604051602481018390526001600160a01b03821660448201526000908190610dec9060640160408051601f198184030181529190526020810180516001600160e01b031663789fa20960e11b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b03166374e38a7960e11b1790526000908190610cb690610b3c565b6040516001600160a01b03821660248201526000908190610c159060440160408051601f198184030181529190526020810180516001600160e01b031663f2b3abbd60e01b179052610b3c565b6040516001600160a01b038085166024830152604482018490528216606482015260009081906114739060840160408051601f198184030181529190526020810180516001600160e01b0316637af1e23160e11b179052610b3c565b6040805160048152602481019091526020810180516001600160e01b0316631f1f3b4560e31b1790526000908190610cb690610ece565b600080610c15836040516024016117f691815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663fca7820b60e01b179052610b3c565b6060600080846001600160a01b0316846040516118429190611c4c565b600060405180830381855af49150503d806000811461187d576040519150601f19603f3d011682016040523d82523d6000602084013e611882565b606091505b50915091506000821415610bc5573d60208201fd5b8183823760009101908152919050565b60005b838110156118c25781810151838201526020016118aa565b838111156118d1576000848401525b50505050565b600081518084526118ef8160208601602086016118a7565b601f01601f19169290920160200192915050565b602081526000610c2b60208301846118d7565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561195557611955611916565b604052919050565b600067ffffffffffffffff82111561197757611977611916565b50601f01601f191660200190565b600082601f83011261199657600080fd5b81356119a96119a48261195d565b61192c565b8181528460208386010111156119be57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156119ed57600080fd5b813567ffffffffffffffff811115611a0457600080fd5b610bc584828501611985565b6001600160a01b0381168114611a2557600080fd5b50565b60008060408385031215611a3b57600080fd5b8235611a4681611a10565b946020939093013593505050565b600060208284031215611a6657600080fd5b5035919050565b600060208284031215611a7f57600080fd5b8135610c2b81611a10565b600080600060608486031215611a9f57600080fd5b8335611aaa81611a10565b92506020840135611aba81611a10565b929592945050506040919091013590565b8015158114611a2557600080fd5b600080600060608486031215611aee57600080fd5b8335611af981611a10565b92506020840135611b0981611acb565b9150604084013567ffffffffffffffff811115611b2557600080fd5b611b3186828701611985565b9150509250925092565b60008060408385031215611b4e57600080fd5b823591506020830135611b6081611a10565b809150509250929050565b60008060408385031215611b7e57600080fd5b8235611b8981611a10565b91506020830135611b6081611a10565b600080600060608486031215611bae57600080fd5b8335611bb981611a10565b9250602084013591506040840135611bd081611a10565b809150509250925092565b600181811c90821680611bef57607f821691505b60208210811415611c1057634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611c2857600080fd5b8151610c2b81611acb565b600060208284031215611c4557600080fd5b5051919050565b60008251611c5e8184602087016118a7565b9190910192915050565b600060208284031215611c7a57600080fd5b815167ffffffffffffffff811115611c9157600080fd5b8201601f81018413611ca257600080fd5b8051611cb06119a48261195d565b818152856020838501011115611cc557600080fd5b610d8f8260208301602086016118a7565b60008060008060808587031215611cec57600080fd5b50508251602084015160408501516060909501519196909550909250905056fea2646970667358221220ddb7cd60798950d82655e9ea8df0c05105692015c371cb0d3bdcdc6a91d4a55564736f6c634300080a0033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

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