ETH Price: $2,516.96 (-2.76%)

Contract

0x7b6D3a6b3311e3C5ED3b18f98e9b0eEbE2865Adc
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
_become190650662024-01-22 21:56:35252 days ago1705960595IN
0x7b6D3a6b...bE2865Adc
0 ETH0.0013861818
0x60806040190650572024-01-22 21:54:47252 days ago1705960487IN
 Create: Comptroller
0 ETH0.0949189118

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Comptroller

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
shanghai EvmVersion, BSD-3-Clause license
File 1 of 14 : Comptroller.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

import "CToken.sol";
import "ErrorReporter.sol";
import "PriceOracle.sol";
import "ComptrollerInterface.sol";
import "ComptrollerStorage.sol";
import "Unitroller.sol";
import "CErc20InterestMarketInterfaces.sol";
import "CErc721TokenInterfaces.sol";

/**
 * @title Compound's Comptroller Contract
 * @author Compound
 */
contract Comptroller is ComptrollerV8Storage, ComptrollerInterface, ComptrollerErrorReporter, ExponentialNoError {
    /// @notice Emitted when an admin supports a market
    event MarketListed(CToken cToken);

    /// @notice Emitted when an account enters a market
    event MarketEntered(CToken cToken, address account);

    /// @notice Emitted when an account exits a market
    event MarketExited(CToken cToken, address account);

    /// @notice Emitted when a collateral factor is changed by admin
    event NewCollateralFactor(CToken cToken, uint oldCollateralFactorMantissa, uint newCollateralFactorMantissa);

    /// @notice Emitted when liquidation incentive is changed by admin
    event NewLiquidationIncentive(uint oldLiquidationIncentiveMantissa, uint newLiquidationIncentiveMantissa);

    /// @notice Emitted when price oracle is changed
    event NewPriceOracle(PriceOracle oldPriceOracle, PriceOracle newPriceOracle);

    /// @notice Emitted when pause guardian is changed
    event NewPauseGuardian(address oldPauseGuardian, address newPauseGuardian);

    /// @notice Emitted when an action is paused globally
    event ActionPaused(string action, bool pauseState);

    /// @notice Emitted when an action is paused on a market
    event ActionPaused(CToken cToken, string action, bool pauseState);

    /// @notice Emitted when borrow cap for a cToken is changed
    event NewBorrowCap(CToken indexed cToken, uint newBorrowCap);

    /// @notice Emitted when borrow cap guardian is changed
    event NewBorrowCapGuardian(address oldBorrowCapGuardian, address newBorrowCapGuardian);

    /// @notice Emitted when COMP is granted by admin
    event CompGranted(address recipient, uint amount);

    /// @notice Emitted when COMP accrued for a user has been manually adjusted.
    event CompAccruedAdjusted(address indexed user, uint oldCompAccrued, uint newCompAccrued);

    /// @notice Emitted when COMP receivable for a user has been updated.
    event CompReceivableUpdated(address indexed user, uint oldCompReceivable, uint newCompReceivable);

    event InterestShortfallTopUp(address borrower, address cTokenInterestMarket, address cTokenCollateral, uint topUpAmount, uint seizeAmount);

    event LiquidateBorrow(address borrower, uint liquidatedValueTotal, address[] cTokenCollaterals, uint[] seizeTokensList);

    /// @notice The initial COMP index for a market
    uint224 public constant compInitialIndex = 1e36;

    // No collateralFactorMantissa may exceed this value
    uint internal constant collateralFactorMaxMantissa = 0.9e18; // 0.9


    /*** Reentrancy Guard ***/

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     */
    modifier nonReentrantWL() {
        if (!_checkEoaOrWL(msg.sender)) {
            revert Unauthorized();
        }
        if (!_notEntered) {
            revert Reentry();
        }
        _notEntered = false;
        _;
        _notEntered = true; // get a gas-refund post-Istanbul
    }

    constructor() {
        admin = msg.sender;
    }

    function initialize() public {
        if (msg.sender != address(this) && msg.sender != admin) {
            revert Unauthorized();
        }

        // The counter starts true to prevent changing it from zero to non-zero (i.e. smaller cost/refund)
        _notEntered = true;
    }

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

    /**
     * @notice Returns the assets an account has entered
     * @param account The address of the account to pull assets for
     * @return A dynamic list with the assets the account has entered
     */
    function getAssetsIn(address account) external view returns (CToken[] memory) {
        CToken[] memory assetsIn = accountAssets[account];

        return assetsIn;
    }

    /**
     * @notice Returns whether the given account is entered in the given asset
     * @param account The address of the account to check
     * @param cToken The cToken to check
     * @return True if the account is in the asset, otherwise false.
     */
    function checkMembership(address account, CToken cToken) external view returns (bool) {
        return markets[address(cToken)].accountMembership[account];
    }

    /**
     * @notice When a market calls this function the account is added to this market
     * @param account The account to enter the market
     */
    function autoEnterMarkets(address account) override public {
        if (addToMarketInternal(CToken(msg.sender), account) != Error.NO_ERROR) {
            revert Unauthorized();
        }
    }

    /**
     * @notice Add assets to be included in account liquidity calculation
     * @param cTokens The list of addresses of the cToken markets to be enabled
     * @return Success indicator for whether each corresponding market was entered
     */
    function enterMarkets(address[] memory cTokens) override public returns (uint[] memory) {
        uint len = cTokens.length;

        uint[] memory results = new uint[](len);
        for (uint i = 0; i < len; i++) {
            CToken cToken = CToken(cTokens[i]);

            results[i] = uint(addToMarketInternal(cToken, msg.sender));
        }

        return results;
    }

    /**
     * @notice Add the market to the borrower's "assets in" for liquidity calculations
     * @param cToken The market to enter
     * @param borrower The address of the account to modify
     * @return Success indicator for whether the market was entered
     */
    function addToMarketInternal(CToken cToken, address borrower) internal returns (Error) {
        Market storage marketToJoin = markets[address(cToken)];

        if (!marketToJoin.isListed) {
            // market is not listed, cannot join
            return Error.MARKET_NOT_LISTED;
        }

        if (marketToJoin.accountMembership[borrower]) {
            // already joined
            return Error.NO_ERROR;
        }

        // survived the gauntlet, add to list
        // NOTE: we store these somewhat redundantly as a significant optimization
        //  this avoids having to iterate through the list for the most common use cases
        //  that is, only when we need to perform liquidity checks
        //  and not whenever we want to check if an account is in a particular market
        marketToJoin.accountMembership[borrower] = true;
        accountAssets[borrower].push(cToken);

        if (cToken.marketType() == CTokenStorage.MarketType.ERC721_MARKET) {
            accountAssetsErc721[borrower].push(cToken);
        }

        emit MarketEntered(cToken, borrower);

        return Error.NO_ERROR;
    }

    /**
     * @notice When a market calls this function the account is removed from this market
     * @param account The account to exit the market
     */
    function autoExitMarkets(address account) override public {
        if (exitFromMarketInternal(CToken(msg.sender), account) != Error.NO_ERROR) {
            revert Unauthorized();
        }
    }

    /**
     * @notice Removes asset from sender's account liquidity calculation
     * @dev Sender must not have an outstanding borrow balance in the asset,
     *  or be providing necessary collateral for an outstanding borrow.
     * @param cTokenAddress The address of the asset to be removed
     * @return Whether or not the account successfully exited the market
     */
    function exitMarket(address cTokenAddress) override external returns (uint) {
        CToken cToken = CToken(cTokenAddress);
        /* Get sender tokensHeld and amountOwed underlying from the cToken */
        (uint oErr, uint tokensHeld, uint amountOwed, , uint interestBalance) = cToken.getAccountSnapshot(msg.sender);
        if (oErr != 0) {
            revert GetAccountSnapshotFailed(oErr);
        }

        /* Fail if the sender has a borrow balance */
        if (amountOwed != 0) {
            return fail(Error.NONZERO_BORROW_BALANCE, FailureInfo.EXIT_MARKET_BALANCE_OWED);
        }

        /* Fail if the sender has an interest owed balance */
        if (interestBalance != 0) {
            return fail(Error.NONZERO_INTEREST_BALANCE, FailureInfo.EXIT_MARKET_BALANCE_OWED);
        }

        /* Fail if the sender is not permitted to redeem all of their tokens */
        uint allowed = redeemAllowedInternal(cTokenAddress, msg.sender, tokensHeld);
        if (allowed != 0) {
            return failOpaque(Error.REJECTION, FailureInfo.EXIT_MARKET_REJECTION, allowed);
        }

        return uint(exitFromMarketInternal(cToken, msg.sender));
    }

    /**
     * @notice Removes asset from sender's account liquidity calculation
     * @param cToken The address of the asset to be removed
     * @param borrower The address of the account to remove the asset from
     * @return Error Whether or not the account successfully exited the market
     */
    function exitFromMarketInternal(CToken cToken, address borrower) internal returns (Error) {
        Market storage marketToExit = markets[address(cToken)];

        if (!marketToExit.isListed) {
            // market is not listed, cannot exit
            return Error.MARKET_NOT_LISTED;
        }

        /* Return true if the sender is not already ‘in’ the market */
        if (!marketToExit.accountMembership[borrower]) {
            return Error.NO_ERROR;
        }

        /* Set cToken account membership to false */
        delete marketToExit.accountMembership[borrower];

        removeFromArray(accountAssets[borrower], cToken);

        if (cToken.marketType() == CTokenStorage.MarketType.ERC721_MARKET) {
            removeFromArray(accountAssetsErc721[borrower], cToken);
        }

        emit MarketExited(cToken, borrower);

        return Error.NO_ERROR;
    }

    function removeFromArray(CToken[] storage storedList, CToken cToken) internal {
        uint len = storedList.length;
        uint assetIndex = len;
        for (uint i = 0; i < len;) {
            if (storedList[i] == cToken) {
                assetIndex = i;
                break;
            }
            unchecked { i++; }
        }

        // We *must* have found the asset in the list or our redundant data structure is broken
        assert(assetIndex < len);

        // copy last item in list to location of item to be removed, reduce length by 1
        storedList[assetIndex] = storedList[len - 1];
        storedList.pop();
    }

    /**
     * @notice Redeems the interest accrued for the given cTokens.
     * @param lender The address of the lender from which to claim.
     * @param cTokens The list of cToken addresses to redeem interest from.
     *                Only possible for cErc721 markets.
     * @return uint[] Amount of interest redeemed for each corresponding cToken
     *                or Error.MARKET_NOT_LISTED, Error.INVALID_MARKET_TYPE for invalid markets.
     */
    function redeemAllInterest(address lender, address[] memory cTokens) override external returns (uint[] memory) {
        if (msg.sender != _interestMarket) {
            if (lender != msg.sender || !_checkEoaOrWL(msg.sender)) {
                revert Unauthorized();
            }
        }

        uint len = cTokens.length;

        uint[] memory results = new uint[](len);
        for (uint i = 0; i < len; i++) {
            if (!markets[cTokens[i]].isListed) {
                results[i] = uint(Error.MARKET_NOT_LISTED);
            } else if (CToken(cTokens[i]).marketType() != CTokenStorage.MarketType.ERC721_MARKET) {
                results[i] = uint(Error.INVALID_MARKET_TYPE);
            } else {
                results[i] = uint(CErc721Interface(cTokens[i]).redeemInterest(lender));
            }
        }

        return results;
    }

    /**
     * @notice Topup interest shortfall of a borrower and seize collateral tokens.
     * @param borrower The borrower whose shortfall to topup
     * @param maxTopUpTokens Maximum amount of shortfall to topup (actual amount will be <= maxTopUpTokens)
     *                       The caller must have enough tokens of the interest market
     * @param cTokenCollateral The market where the collateral is held
     * @return (uint, uint) Actual topup amount, actual seize amount
     */
    function topUpInterestShortfall(address borrower, uint maxTopUpTokens, address cTokenCollateral) override external nonReentrantWL returns (uint[2] memory) {
        if (seizeGuardianPaused) {
            revert SeizePaused();
        }
        if (maxTopUpTokens == 0) {
            revert InvalidTopUpLimit();
        }

        address interestMarket_ = _interestMarket;

        CTokenInterface(interestMarket_).accrueInterest();
        if (CToken(cTokenCollateral).marketType() != CTokenStorage.MarketType.ERC721_MARKET) {
            CTokenInterface(cTokenCollateral).accrueInterest();
        }

        for (uint i = 0; i < accountAssetsErc721[borrower].length;) {
            // redeems earned NFT market interest for the borrower, which could make their account solvent; also calls accrueInterest() internally
            CErc721Interface(address(accountAssetsErc721[borrower][i]))._redeemInterestForLiquidation(borrower);
            unchecked { i++; }
        }

        (uint err, , uint shortfallUsd) = getAccountLiquidity(borrower);
        if (err != uint(Error.TOO_LITTLE_INTEREST_RESERVE) || shortfallUsd == 0) {
            revert InsufficientShortfall(err, shortfallUsd);
        }

        if (interestMarket_ == cTokenCollateral) {
            revert SameMarket();
        }
        if (address(CToken(interestMarket_).comptroller()) != address(this)) {
            revert ComptrollerMismatch();
        }
        if (!markets[cTokenCollateral].isListed) {
            revert MarketNotListed();
        }

        // max topup amount is shortfall + 5% (unless a greater value NFT is seized)
        shortfallUsd = shortfallUsd * 105 / 100;

        (uint actualTopUpTokens, uint actualSeizeTokens) = _adjustTopUpValues(borrower, shortfallUsd, interestMarket_, cTokenCollateral);
        if (maxTopUpTokens < actualTopUpTokens) {
            revert TopUpLimitExceeded();
        }
        if (actualTopUpTokens == 0 && actualSeizeTokens != 0) {
            revert TopUpZero();
        }

        // seize tokens
        if (CTokenInterface(cTokenCollateral)._seize(msg.sender, borrower, actualSeizeTokens) != actualSeizeTokens) {
            revert SeizeFailed();
        }

        // topup interest
        if (!CToken(interestMarket_).transferFrom(msg.sender, borrower, actualTopUpTokens)) {
            revert TopUpFailed();
        }

        emit InterestShortfallTopUp(borrower, interestMarket_, cTokenCollateral, actualTopUpTokens, actualSeizeTokens);

        return [actualTopUpTokens, actualSeizeTokens];
    }

    /**
     * @notice Liquidates multiple positions in one transaction.
     * @dev cETH is liquidated using WETH.
     * @param borrower The borrower of this cToken to be liquidated
     * @param liquidatables The list of Liquidatables
     *                      If Liquidatables.amount is non-zero, we assume an ERC20 market and ignore nftIds, if zero we assume a NFT market.
     * @param cTokenCollaterals The list of cTokenCollaterals
     * @param minSeizedValue slippage protection. The adjusted (scaled) prices from the oracle are used for the value.
     * @return results uint[][] 0:x the repay amount for the liquidatables. 1:x the seize amount for the cTokenCollaterals
     */
    function batchLiquidateBorrow(address borrower, Liquidatables[] memory liquidatables, address[] memory cTokenCollaterals, uint minSeizedValue) override external nonReentrantWL returns (uint[][2] memory results) {
        if (seizeGuardianPaused) {
            revert SeizePaused();
        }

        {
            uint i;
            for (i = 0; i < liquidatables.length;) {
                if (CTokenInterface(liquidatables[i].cToken).marketType() != CTokenStorage.MarketType.ERC721_MARKET) {
                    CTokenInterface(liquidatables[i].cToken).accrueInterest();
                }
                unchecked { i++; }
            }
            for (i = 0; i < cTokenCollaterals.length;) {
                if (CTokenInterface(cTokenCollaterals[i]).marketType() != CTokenStorage.MarketType.ERC721_MARKET) {
                    CTokenInterface(cTokenCollaterals[i]).accrueInterest();
                }
                unchecked { i++; }
            }
            for (i = 0; i < accountAssetsErc721[borrower].length;) {
                // redeems earned NFT market interest for the borrower, which could make their account solvent; also calls accrueInterest() internally
                CErc721Interface(address(accountAssetsErc721[borrower][i]))._redeemInterestForLiquidation(borrower);
                unchecked { i++; }
            }
        }

        (uint err, uint beforeRatio) = getAccountDebtRatioWhenShortfall(borrower);
        if (err != uint(Error.NO_ERROR) || beforeRatio == 0) {
            revert InsufficientShortfall(err, beforeRatio);
        }

        results[0] = new uint[](liquidatables.length);
        results[1] = new uint[](cTokenCollaterals.length);

        PriceOracle oracle_ = oracle; 

        uint liquidatedValueTotal;
        {
            for (uint i = 0; i < liquidatables.length;) {

                if (!markets[liquidatables[i].cToken].isListed) {
                    revert MarketNotListed();
                }

                if (liquidatables[i].amount != 0) {
                    results[0][i] = CErc20Interface(liquidatables[i].cToken)._liquidateBorrow(msg.sender, borrower, liquidatables[i].amount);
                } else {
                    results[0][i] = CErc721Interface(liquidatables[i].cToken)._liquidateBorrow(msg.sender, borrower, liquidatables[i].nftIds);
                }

                uint priceMantissa = oracle_.getUnderlyingPrice(CToken(liquidatables[i].cToken));
                if (priceMantissa == 0) {
                    revert PriceError();
                }

                liquidatedValueTotal = mul_ScalarTruncateAddUInt(Exp({mantissa: priceMantissa}), results[0][i], liquidatedValueTotal);

                unchecked { i++; }
            }
            if (liquidatedValueTotal == 0) {
                revert LiquidateError();
            }
        }

        {
            uint liquidatedValueRemaining = liquidatedValueTotal;
            uint liquidatedValueExcess = 0;
            for (uint i = 0; i < cTokenCollaterals.length && liquidatedValueRemaining != 0;) {

                if (!markets[cTokenCollaterals[i]].isListed) {
                    revert MarketNotListed();
                }

                uint actualSeizeTokens;
                (liquidatedValueRemaining, liquidatedValueExcess, actualSeizeTokens) = _liquidateSeize(CTokenInterface(cTokenCollaterals[i]), liquidatedValueRemaining, borrower);

                results[1][i] = actualSeizeTokens;

                unchecked { i++; }
            }

            if (liquidatedValueRemaining != 0) {
                revert LiquidateSeizeTooLittle();
            }

            if (liquidatedValueTotal + liquidatedValueExcess < minSeizedValue) {
                revert LiquidateSeizeBellowMinValue(minSeizedValue, liquidatedValueTotal + liquidatedValueExcess);
            }

            // A non-zero liquidatedValueExcess indicates that collateral in excess of liquidationIncentive was seized,
            // which can occur with NFT collaterals. The liquidator must refund this value to the borrower. We use interestMarket
            // tokens for this, so the liquidator needs a sufficient balance to cover the excess.
            if (liquidatedValueExcess != 0) {
                CToken interestMarket_ = CToken(_interestMarket);

                uint refundTokens = liquidatedValueExcess * doubleScale /
                    oracle_.getUnderlyingPrice(interestMarket_) /
                    interestMarket_.exchangeRateCurrent();

                if (!interestMarket_.transferFrom(msg.sender, borrower, refundTokens)) {
                    revert ExcessRefundFailed();
                }
            }
        }

        /* We emit a LiquidateBorrow event */
        emit LiquidateBorrow(borrower, liquidatedValueTotal, cTokenCollaterals, results[1]);

        uint afterRatio;
        (err, afterRatio) = getAccountDebtRatioWhenShortfall(borrower);
        
        // we allow Error.TOO_LITTLE_INTEREST_RESERVE here as long as debt ratio is improved or unchanged
        if ((err != uint(Error.NO_ERROR) && err != uint(Error.TOO_LITTLE_INTEREST_RESERVE)) || afterRatio > beforeRatio) {
            revert LiquidateSeizeTooMuch();
        }

        return results;
    }

    function _liquidateSeize(CTokenInterface collateral, uint liquidatedValueRemaining, address borrower) internal returns (uint liquidatedValueRemainingNew, uint liquidatedValueExcess, uint actualSeizeTokens) {
        /* We calculate the number of collateral tokens that will be seized */
        uint seizeTokens = liquidateCalculateSeizeTokensNormed(address(collateral), liquidatedValueRemaining);

        uint borrowerBalance = collateral.balanceOf(borrower);
        if (borrowerBalance < seizeTokens) {
            // can't seize more collateral than owned by the borrower
            actualSeizeTokens = borrowerBalance;
        } else {
            actualSeizeTokens = seizeTokens;
        }

        actualSeizeTokens = collateral._seize(msg.sender, borrower, actualSeizeTokens);
        if (actualSeizeTokens == 0) {
            revert SeizeFailed();
        }

        uint actualRepayAmount = liquidatedValueRemaining;
        if (actualSeizeTokens != seizeTokens) {
            actualRepayAmount = actualRepayAmount * actualSeizeTokens / seizeTokens;
        }

        if (liquidatedValueRemaining > actualRepayAmount) {
            liquidatedValueRemainingNew = liquidatedValueRemaining - actualRepayAmount;
        } else {
            liquidatedValueExcess = actualRepayAmount - liquidatedValueRemaining;
            liquidatedValueRemainingNew = 0;
        }
    }

    /*** Policy Hooks ***/

    /**
     * @notice Checks if the account should be allowed to mint tokens in the given market
     * @param cToken The market to verify the mint against
     * @param minter The account which would get the minted tokens
     * @param mintAmount The amount of underlying being supplied to the market in exchange for tokens
     * @return 0 if the mint is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol)
     */
    function mintAllowed(address cToken, address minter, uint mintAmount) override external returns (uint) {
        // Pausing is a very serious situation - we revert to sound the alarms
        if (mintGuardianPaused[cToken]) {
            revert MintPaused();
        }

        // Shh - currently unused
        minter;
        mintAmount;

        if (!markets[cToken].isListed) {
            return uint(Error.MARKET_NOT_LISTED);
        }

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Checks if the account should be allowed to redeem tokens in the given market
     * @param cToken The market to verify the redeem against
     * @param redeemer The account which would redeem the tokens
     * @param redeemTokens The number of cTokens to exchange for the underlying asset in the market
     * @return 0 if the redeem is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol)
     */
    function redeemAllowed(address cToken, address redeemer, uint redeemTokens) override external returns (uint) {
        uint allowed = redeemAllowedInternal(cToken, redeemer, redeemTokens);
        if (allowed != uint(Error.NO_ERROR)) {
            return allowed;
        }

        return uint(Error.NO_ERROR);
    }

    function redeemAllowedInternal(address cToken, address redeemer, uint redeemTokens) internal view returns (uint) {
        if (!markets[cToken].isListed) {
            return uint(Error.MARKET_NOT_LISTED);
        }

        /* If the redeemer is not 'in' the market, then we can bypass the liquidity check */
        if (!markets[cToken].accountMembership[redeemer]) {
            return uint(Error.NO_ERROR);
        }

        /* Otherwise, perform a hypothetical liquidity check to guard against shortfall */
        // uint[4] memory retVals; /* liquidity, shortfall, sumCollateral, sumBorrowPlusEffects */
        (Error err, uint[4] memory retVals) = getHypotheticalAccountLiquidityInternal(redeemer, CToken(cToken), redeemTokens, 0);
        if (err != Error.NO_ERROR) {
            return uint(err);
        }
        if (retVals[1] != 0) {
            return uint(Error.INSUFFICIENT_LIQUIDITY);
        }

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Checks if the account should be allowed to borrow the underlying asset of the given market
     * @param cToken The market to verify the borrow against
     * @param borrower The account which would borrow the asset
     * @param borrowAmount The amount of underlying the account would borrow
     * @return 0 if the borrow is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol)
     */
    function borrowAllowed(address cToken, address borrower, uint borrowAmount) override external returns (uint) {
        // Pausing is a very serious situation - we revert to sound the alarms
        if (borrowGuardianPaused[cToken]) {
            revert BorrowPaused();
        }

        if (!markets[cToken].isListed) {
            return uint(Error.MARKET_NOT_LISTED);
        }

        Error err;
        if (!markets[cToken].accountMembership[borrower]) {
            // only cTokens may call borrowAllowed if borrower not in market
            if (msg.sender != cToken) {
                revert Unauthorized();
            }

            // attempt to add borrower to the market
            err = addToMarketInternal(CToken(msg.sender), borrower);
            if (err != Error.NO_ERROR) {
                return uint(err);
            }

            // it should be impossible to break the important invariant
            assert(markets[cToken].accountMembership[borrower]);
        }

        if (oracle.getUnderlyingPrice(CToken(cToken)) == 0) {
            return uint(Error.PRICE_ERROR);
        }


        uint borrowCap = borrowCaps[cToken];
        // Borrow cap of 0 corresponds to unlimited borrowing
        if (borrowCap != 0) {
            uint totalBorrows = CToken(cToken).totalBorrows();
            uint nextTotalBorrows = add_(totalBorrows, borrowAmount);
            if (nextTotalBorrows >= borrowCap) {
                revert BorrowCapReached();
            }
        }

        uint[4] memory retVals; /* liquidity, shortfall, sumCollateral, sumBorrowPlusEffects */
        (err, retVals) = getHypotheticalAccountLiquidityInternal(borrower, CToken(cToken), 0, borrowAmount);
        if (err != Error.NO_ERROR) {
            return uint(err);
        }
        if (retVals[1] != 0) {
            return uint(Error.INSUFFICIENT_LIQUIDITY);
        }

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Checks if the account should be allowed to repay a borrow in the given market
     * @param cToken The market to verify the repay against
     * @param payer The account which would repay the asset
     * @param borrower The account which would borrowed the asset
     * @param repayAmount The amount of the underlying asset the account would repay
     * @return 0 if the repay is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol)
     */
    function repayBorrowAllowed(
        address cToken,
        address payer,
        address borrower,
        uint repayAmount) override external returns (uint) {
        // Shh - currently unused
        payer;
        borrower;
        repayAmount;

        if (!markets[cToken].isListed) {
            return uint(Error.MARKET_NOT_LISTED);
        }

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Checks if the collecting of interest should be allowed to occur
     * @param cTokenInterestMarket Asset which is payed out as interest
     * @param cTokenSupplyMarket Asset which accrues interest
     * @param lender The address who would receive the tokens
     * @param interestAmount The amount of tokens to receive as interest
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function collectInterestAllowed(
        address cTokenInterestMarket,
        address cTokenSupplyMarket,
        address lender,
        uint interestAmount) override external returns (uint) {
        // Pausing is a very serious situation - we revert to sound the alarms
        if (collectInterestGuardianPaused) {
            revert CollectInterestPaused();
        }

        lender;
        interestAmount;

        if (cTokenInterestMarket != _interestMarket) {
            revert InvalidMarket();
        }

        if (!markets[cTokenSupplyMarket].isListed) {
            revert MarketNotListed();
        }

        if (CToken(cTokenInterestMarket).comptroller() != CToken(cTokenSupplyMarket).comptroller()) {
            revert ComptrollerMismatch();
        }

        if (CToken(cTokenSupplyMarket).marketType() != CTokenStorage.MarketType.ERC721_MARKET) {
            revert WrongMarketType();
        }

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Checks if paying interest should be allowed to occur
     * @param cTokenInterestMarket Asset which is used as payment
     * @param cTokenBorrowMarket Asset which accrues interest
     * @param payer The address who would pay the tokens
     * @param payTokens The amount of tokens to pay as interest
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function payInterestAllowed(
        address cTokenInterestMarket,
        address cTokenBorrowMarket,
        address payer,
        uint payTokens) override external returns (uint) {
        // Pausing is a very serious situation - we revert to sound the alarms
        if (payInterestGuardianPaused) {
            revert PayInterestPaused();
        }

        if (cTokenInterestMarket != _interestMarket) {
            revert InvalidMarket();
        }

        if (!markets[cTokenBorrowMarket].isListed) {
            revert MarketNotListed();
        }

        if (CToken(cTokenInterestMarket).comptroller() != CToken(cTokenBorrowMarket).comptroller()) {
            revert ComptrollerMismatch();
        }

        if (CToken(cTokenBorrowMarket).marketType() != CTokenStorage.MarketType.ERC721_MARKET) {
            revert WrongMarketType();
        }

        /* If the payer is not 'in' the market, then we can bypass the liquidity check */
        if (!markets[cTokenInterestMarket].accountMembership[payer]) {
            return uint(Error.NO_ERROR);
        }

        /* Otherwise, perform a hypothetical liquidity check to guard against shortfall */
        // uint[4] memory retVals; /* liquidity, shortfall, sumCollateral, sumBorrowPlusEffects */
        (Error err, uint[4] memory retVals) = getHypotheticalAccountLiquidityInternal(payer, CToken(cTokenInterestMarket), payTokens, 0);
        if (err == Error.NO_ERROR) {
            if (retVals[1] != 0) {
                return uint(Error.INSUFFICIENT_LIQUIDITY);
            }
        } else if (err != Error.TOO_LITTLE_INTEREST_RESERVE) {
            return uint(err);
        }

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Checks if the account should be allowed to transfer tokens in the given market
     * @param cToken The market to verify the transfer against
     * @param src The account which sources the tokens
     * @param dst The account which receives the tokens
     * @param transferTokens The number of cTokens to transfer
     * @return 0 if the transfer is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol)
     */
    function transferAllowed(address cToken, address src, address dst, uint transferTokens) override external returns (uint) {
        // Pausing is a very serious situation - we revert to sound the alarms
        if (transferGuardianPaused) {
            revert TransferPaused();
        }

        // Currently the only consideration is whether or not
        //  the src is allowed to redeem this many tokens
        uint allowed = redeemAllowedInternal(cToken, src, transferTokens);
        if (allowed != uint(Error.NO_ERROR)) {
            return allowed;
        }

        return uint(Error.NO_ERROR);
    }

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

    /**
     * @dev Local vars for avoiding stack-depth limits in calculating account liquidity.
     *  Note that `cTokenBalance` is the number of cTokens the account owns in the market,
     *  whereas `borrowBalance` is the amount of underlying that the account has borrowed.
     */
    struct AccountLiquidityLocalVars {
        uint sumCollateral;
        uint sumBorrowPlusEffects;
        uint sumInterestOwed;
        uint interestMarketBalance;
        uint cTokenBalance;
        uint borrowBalance;
        uint interestBalance;
        uint exchangeRateMantissa;
        uint oraclePriceMantissa;
        CTokenStorage.MarketType marketType;
        bool interestTokenNeeded;
        Exp collateralFactor;
        Exp exchangeRate;
        Exp oraclePrice;
        Exp tokensToDenom;
        Exp normedExchangeRate;
    }

    /**
     * @notice Calculates the account's ratio between collateral and borrows if the account is underwater or 0 if the account is solvent.
     * @param account The account to examine
     * @return (possible error code (semi-opaque), debt ratio)
     */
    function getAccountDebtRatioWhenShortfall(address account) public view returns (uint, uint) {
        // uint[4] memory retVals; /* liquidity, shortfall, sumCollateral, sumBorrowPlusEffects */
        (Error err, uint[4] memory retVals) = getHypotheticalAccountLiquidityInternal(account, CToken(address(0)), 0, 0);
        if (retVals[1] == 0) {
            return (uint(err), 0);
        } else if (retVals[2] == 0) {
            return (uint(err), type(uint).max);
        }
        return (uint(err), retVals[3] * expScale / retVals[2]);
    }

    /**
     * @notice Determine the current account liquidity wrt collateral requirements
     * @return (possible error code (semi-opaque),
     *          account liquidity in excess of collateral requirements,
     *          account shortfall below collateral requirements)
     */
    function getAccountLiquidity(address account) public view returns (uint, uint, uint) {
        // uint[4] memory retVals; /* liquidity, shortfall, sumCollateral, sumBorrowPlusEffects */
        (Error err, uint[4] memory retVals) = getHypotheticalAccountLiquidityInternal(account, CToken(address(0)), 0, 0);

        return (uint(err), retVals[0], retVals[1]);
    }

    /**
     * @notice Determine the current account liquidity wrt collateral requirements
     * @return (possible error code,
     *          account liquidity in excess of collateral requirements,
     *          account shortfall below collateral requirements, 
     *          account total collateral,
     *          account total borrow + effects)
     */
    function getAccountLiquidityInternal(address account) internal view returns (Error, uint, uint, uint, uint) {
        // uint[4] memory retVals; /* liquidity, shortfall, sumCollateral, sumBorrowPlusEffects */
        (Error err, uint[4] memory retVals) = getHypotheticalAccountLiquidityInternal(account, CToken(address(0)), 0, 0);
        return (err, retVals[0], retVals[1], retVals[2], retVals[3]);
    }

    /**
     * @notice Determine what the account liquidity would be if the given amounts were redeemed/borrowed
     * @param cTokenModify The market to hypothetically redeem/borrow in
     * @param account The account to determine liquidity for
     * @param redeemTokens The number of tokens to hypothetically redeem
     * @param borrowAmount The amount of underlying to hypothetically borrow
     * @return (possible error code (semi-opaque),
     *          hypothetical account liquidity in excess of collateral requirements,
     *          hypothetical account shortfall below collateral requirements)
     */
    function getHypotheticalAccountLiquidity(
        address account,
        address cTokenModify,
        uint redeemTokens,
        uint borrowAmount) public view returns (uint, uint, uint) {
        // uint[4] memory retVals; /* liquidity, shortfall, sumCollateral, sumBorrowPlusEffects */
        (Error err, uint[4] memory retVals) = getHypotheticalAccountLiquidityInternal(account, CToken(cTokenModify), redeemTokens, borrowAmount);
        return (uint(err), retVals[0], retVals[1]);
    }

    /**
     * @notice Determine what the account liquidity would be if the given amounts were redeemed/borrowed
     * @param account The account to determine liquidity for
     * @param cTokenModify The market to hypothetically redeem/borrow in
     * @param redeemTokens The number of tokens to hypothetically redeem
     * @param borrowAmount The amount of underlying to hypothetically borrow
     * @dev Note that we calculate the exchangeRateStored for each collateral cToken using stored data,
     *  without calculating accumulated interest.
     * @return (possible error code,
     *          hypothetical account liquidity in excess of collateral requirements,
     *          hypothetical account shortfall below collateral requirements,
     *          hypothetical account USD valued sum of all collaterals,
     *          hypothetical account USD valued sum of all borrows + effects)
     */
    function getHypotheticalAccountLiquidityInternal(
        address account,
        CToken cTokenModify,
        uint redeemTokens,
        uint borrowAmount) internal view returns (Error, uint[4] memory) {

        AccountLiquidityLocalVars memory vars; // Holds all our calculation results
        uint oErr;

        PriceOracle oracle_ = oracle;

        address interestMarket_ = _interestMarket;

        // For each asset the account is in
        CToken[] memory assets = accountAssets[account];
        for (uint i = 0; i < assets.length; i++) {
            CToken asset = assets[i];

            // Read the balances and exchange rate from the cToken
            // vars.interestBalance is denominated in interest market tokens
            (oErr, vars.cTokenBalance, vars.borrowBalance, vars.exchangeRateMantissa, vars.interestBalance) = asset.getAccountSnapshot(account);
            if (oErr != 0) { // semi-opaque error code, we assume NO_ERROR == 0 is invariant between upgrades
                return (Error.SNAPSHOT_ERROR, [uint(0), 0, 0, 0]);
            }
            vars.collateralFactor = Exp({mantissa: markets[address(asset)].collateralFactorMantissa});
            vars.exchangeRate = Exp({mantissa: vars.exchangeRateMantissa});

            // Get the normalized price of the asset
            vars.oraclePriceMantissa = oracle_.getUnderlyingPrice(asset);
            if (vars.oraclePriceMantissa == 0) {
                return (Error.PRICE_ERROR, [uint(0), 0, 0, 0]);
            }
            vars.oraclePrice = Exp({mantissa: vars.oraclePriceMantissa});

            vars.normedExchangeRate = mul_(vars.exchangeRate, vars.oraclePrice);

            // Pre-compute a conversion factor from tokens -> usd (normalized price value)
            vars.tokensToDenom = mul_(vars.collateralFactor, vars.normedExchangeRate);

            // sumCollateral += tokensToDenom * cTokenBalance
            vars.sumCollateral = mul_ScalarTruncateAddUInt(vars.tokensToDenom, vars.cTokenBalance, vars.sumCollateral);

            // sumBorrowPlusEffects += oraclePrice * borrowBalance
            vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(vars.oraclePrice, vars.borrowBalance, vars.sumBorrowPlusEffects);

            vars.marketType = asset.marketType();

            if (vars.marketType == CTokenStorage.MarketType.ERC721_MARKET) {
                // nft market
                vars.sumInterestOwed = vars.sumInterestOwed + vars.interestBalance;
            } else if (address(asset) == interestMarket_) {
                // nft interest market
                vars.interestMarketBalance = vars.cTokenBalance;
            }

            // Calculate effects of interacting with cTokenModify
            if (asset == cTokenModify) {
                // redeem effect
                // sumBorrowPlusEffects += tokensToDenom * redeemTokens
                vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(vars.tokensToDenom, redeemTokens, vars.sumBorrowPlusEffects);

                if (vars.marketType == CTokenStorage.MarketType.ERC721_MARKET) {
                    if (borrowAmount != 0) {
                        vars.interestTokenNeeded = true;
                    }
                } else if (address(asset) == interestMarket_) {
                    if (vars.interestMarketBalance >= redeemTokens) {
                        vars.interestMarketBalance = vars.interestMarketBalance - redeemTokens;
                    } else {
                        return (Error.INSUFFICIENT_LIQUIDITY, [uint(0), 0, 0, 0]);
                    }
                }

                // borrow effect
                // sumBorrowPlusEffects += oraclePrice * borrowAmount
                vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(vars.oraclePrice, borrowAmount, vars.sumBorrowPlusEffects);
            }
        }

        uint interestExchangeRateMantissa;
        uint interestOraclePriceMantissa;
        if (vars.sumInterestOwed != 0 || (vars.interestTokenNeeded && vars.interestMarketBalance == 0)) {
            interestExchangeRateMantissa = CToken(interestMarket_).exchangeRateStored();
            interestOraclePriceMantissa = oracle_.getUnderlyingPrice(CToken(interestMarket_));

            // add interest owed to effects
            vars.sumBorrowPlusEffects = vars.sumBorrowPlusEffects +
                vars.sumInterestOwed * interestExchangeRateMantissa * interestOraclePriceMantissa / doubleScale;
        }

        // These are safe, as the underflow condition is checked first
        if (vars.sumCollateral > vars.sumBorrowPlusEffects) {

            // if no collateral shorfall, check for interest reserve shortfall
            if (vars.interestMarketBalance < vars.sumInterestOwed ||
                (vars.interestTokenNeeded && vars.interestMarketBalance == 0)) {
                return (Error.TOO_LITTLE_INTEREST_RESERVE, [
                    0,
                    (vars.sumInterestOwed - vars.interestMarketBalance) * interestExchangeRateMantissa * interestOraclePriceMantissa / doubleScale,
                    vars.sumCollateral,
                    vars.sumBorrowPlusEffects
                ]);
            }

            return (Error.NO_ERROR, [vars.sumCollateral - vars.sumBorrowPlusEffects, 0, vars.sumCollateral, vars.sumBorrowPlusEffects]);
        } else {
            return (Error.NO_ERROR, [0, vars.sumBorrowPlusEffects - vars.sumCollateral, vars.sumCollateral, vars.sumBorrowPlusEffects]);
        }
    }

    /**
     * @notice Calculates the amount of collateral to seize for the given repay amount
     * @param cTokenCollateral Asset to seize collateral from
     * @param normedRepayAmount Repay amount in normalized USD value
     * @return uint Amount of tokens to seize in a liquidation
     */
    function liquidateCalculateSeizeTokensNormed(address cTokenCollateral, uint normedRepayAmount) override public view returns (uint) {
        uint priceCollateralMantissa = oracle.getUnderlyingPrice(CToken(cTokenCollateral));
        if (priceCollateralMantissa == 0) {
            revert PriceError();
        }

        uint exchangeRateMantissa = CToken(cTokenCollateral).exchangeRateStored(); // Note: reverts on error

        uint numerator = liquidationIncentiveMantissa * normedRepayAmount * expScale;
        uint denominator = priceCollateralMantissa * exchangeRateMantissa;

        uint seizeTokens = numerator / denominator;

        return seizeTokens;
    }

    /**
     * @notice Calculates the amount of collateral to seize and the amount of tokens to top up for the given shortfall
     * @param borrower Account with the shortfall
     * @param shortfallUsd Shortfall in normalized USD value
     * @param cTokenInterestMarket Asset to top up
     * @param cTokenCollateral Asset to seize collateral from
     * @return (uint, uint) Amount of tokens to top up, amount of tokens to seize
     */
    function _adjustTopUpValues(address borrower, uint shortfallUsd, address cTokenInterestMarket, address cTokenCollateral) internal view returns (uint, uint) {

        uint exchangeRateInterestMantissa = CToken(cTokenInterestMarket).exchangeRateStored(); // Note: reverts on error
        uint exchangeRateCollateralMantissa = CToken(cTokenCollateral).exchangeRateStored(); // Note: reverts on error

        uint priceInterestMantissa = oracle.getUnderlyingPrice(CToken(cTokenInterestMarket));
        uint priceCollateralMantissa = oracle.getUnderlyingPrice(CToken(cTokenCollateral));
        if (priceInterestMantissa == 0 || priceCollateralMantissa == 0) {
            revert PriceError();
        }

        uint seizeTokens = liquidationIncentiveMantissa * shortfallUsd * expScale;
        seizeTokens = seizeTokens / (priceCollateralMantissa * exchangeRateCollateralMantissa);

        // check and adjust amounts

        uint actualTopUpTokens = shortfallUsd * doubleScale / (priceInterestMantissa * exchangeRateInterestMantissa);
        uint actualSeizeTokens = seizeTokens;

        if (CTokenInterface(cTokenCollateral).marketType() == CTokenStorage.MarketType.ERC721_MARKET) {
            // nft market
            uint oneNFTAmount = doubleScale / exchangeRateCollateralMantissa;
            if (actualSeizeTokens % oneNFTAmount != 0) {
                // ensure whole nft seize size by rounding up to the next whole NFT
                actualSeizeTokens = ((actualSeizeTokens / oneNFTAmount) + 1) * oneNFTAmount;
            }
        }

        uint borrowerBalance = CTokenInterface(cTokenCollateral).balanceOf(borrower);
        if (borrowerBalance < actualSeizeTokens) {
            actualSeizeTokens = borrowerBalance;
        }

        if (actualSeizeTokens != seizeTokens) {
            actualTopUpTokens = actualTopUpTokens * actualSeizeTokens / seizeTokens;
        }

        return (actualTopUpTokens, actualSeizeTokens);
    }


    /*** Admin Functions ***/

    /**
      * @notice Sets a new price oracle for the comptroller
      * @dev Admin function to set a new price oracle
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _setPriceOracle(PriceOracle newOracle) public returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_PRICE_ORACLE_OWNER_CHECK);
        }

        // Track the old oracle for the comptroller
        PriceOracle oldOracle = oracle;

        // Set comptroller's oracle to newOracle
        oracle = newOracle;

        // Emit NewPriceOracle(oldOracle, newOracle)
        emit NewPriceOracle(oldOracle, newOracle);

        return uint(Error.NO_ERROR);
    }

    /**
      * @notice Sets the collateralFactor for a market
      * @dev Admin function to set per-market collateralFactor
      * @param cToken The market to set the factor on
      * @param newCollateralFactorMantissa The new collateral factor, scaled by 1e18
      * @return uint 0=success, otherwise a failure. (See ErrorReporter for details)
      */
    function _setCollateralFactor(CToken cToken, uint newCollateralFactorMantissa) external returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_COLLATERAL_FACTOR_OWNER_CHECK);
        }

        // Verify market is listed
        Market storage market = markets[address(cToken)];
        if (!market.isListed) {
            return fail(Error.MARKET_NOT_LISTED, FailureInfo.SET_COLLATERAL_FACTOR_NO_EXISTS);
        }

        Exp memory newCollateralFactorExp = Exp({mantissa: newCollateralFactorMantissa});

        // Check collateral factor <= 0.9
        Exp memory highLimit = Exp({mantissa: collateralFactorMaxMantissa});
        if (lessThanExp(highLimit, newCollateralFactorExp)) {
            return fail(Error.INVALID_COLLATERAL_FACTOR, FailureInfo.SET_COLLATERAL_FACTOR_VALIDATION);
        }

        // If collateral factor != 0, fail if price == 0
        if (newCollateralFactorMantissa != 0 && oracle.getUnderlyingPrice(cToken) == 0) {
            return fail(Error.PRICE_ERROR, FailureInfo.SET_COLLATERAL_FACTOR_WITHOUT_PRICE);
        }

        // Set market's collateral factor to new collateral factor, remember old value
        uint oldCollateralFactorMantissa = market.collateralFactorMantissa;
        market.collateralFactorMantissa = newCollateralFactorMantissa;

        // Emit event with asset, old collateral factor, and new collateral factor
        emit NewCollateralFactor(cToken, oldCollateralFactorMantissa, newCollateralFactorMantissa);

        return uint(Error.NO_ERROR);
    }

    /**
      * @notice Sets liquidationIncentive
      * @dev Admin function to set liquidationIncentive
      * @param newLiquidationIncentiveMantissa New liquidationIncentive scaled by 1e18
      * @return uint 0=success, otherwise a failure. (See ErrorReporter for details)
      */
    function _setLiquidationIncentive(uint newLiquidationIncentiveMantissa) external returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_LIQUIDATION_INCENTIVE_OWNER_CHECK);
        }

        // Save current value for use in log
        uint oldLiquidationIncentiveMantissa = liquidationIncentiveMantissa;

        // Set liquidation incentive to new incentive
        liquidationIncentiveMantissa = newLiquidationIncentiveMantissa;

        // Emit event with old incentive, new incentive
        emit NewLiquidationIncentive(oldLiquidationIncentiveMantissa, newLiquidationIncentiveMantissa);

        return uint(Error.NO_ERROR);
    }

    /**
      * @notice Add the market to the markets mapping and set it as listed
      * @dev Admin function to set isListed and add support for the market
      * @param cToken The address of the market (token) to list
      * @param amount Amount to initially mint.
      * @return uint 0=success, otherwise a failure. (See enum Error for details)
      */
    function _supportMarket(CToken cToken, uint amount) external returns (uint) {
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SUPPORT_MARKET_OWNER_CHECK);
        }

        if (markets[address(cToken)].isListed) {
            return fail(Error.MARKET_ALREADY_LISTED, FailureInfo.SUPPORT_MARKET_EXISTS);
        }

        cToken.isCToken(); // Sanity check to make sure its really a CToken

        // Note that isComped is not in active use anymore
        Market storage newMarket = markets[address(cToken)];
        assert(newMarket.collateralFactorMantissa == 0);

        newMarket.isListed = true;
        newMarket.isComped = false;
        //newMarket.collateralFactorMantissa = 0;

        _addMarketInternal(address(cToken));

        emit MarketListed(cToken);

        // mint a small amount and burn to ensure non-empty token pools (not needed for ERC721 markets)
        if (amount != 0 && cToken.marketType() != CTokenStorage.MarketType.ERC721_MARKET) {
            cToken._ensureNonEmpty(msg.sender, amount);
        }

        return uint(Error.NO_ERROR);
    }

    function _addMarketInternal(address cToken) internal {
        for (uint i = 0; i < allMarkets.length;) {
            if (allMarkets[i] == CToken(cToken)) {
                revert MarketAlreadyAdded();
            }
            unchecked { i++; }
        }
        allMarkets.push(CToken(cToken));
    }

    /**
      * @notice Set the given borrow caps for the given cToken markets. Borrowing that brings total borrows to or above borrow cap will revert.
      * @dev Admin or borrowCapGuardian function to set the borrow caps. A borrow cap of 0 corresponds to unlimited borrowing.
      * @param cTokens The addresses of the markets (tokens) to change the borrow caps for
      * @param newBorrowCaps The new borrow cap values in underlying to be set. A value of 0 corresponds to unlimited borrowing.
      */
    function _setMarketBorrowCaps(CToken[] calldata cTokens, uint[] calldata newBorrowCaps) external {
        if (msg.sender != admin && msg.sender != borrowCapGuardian) {
            revert Unauthorized();
        }

        uint numMarkets = cTokens.length;
        uint numBorrowCaps = newBorrowCaps.length;

        if (numMarkets == 0 || numMarkets != numBorrowCaps) {
            revert InvalidInput();
        }

        for(uint i = 0; i < numMarkets; i++) {
            borrowCaps[address(cTokens[i])] = newBorrowCaps[i];
            emit NewBorrowCap(cTokens[i], newBorrowCaps[i]);
        }
    }

    /**
     * @notice Admin function to change the Borrow Cap Guardian
     * @param newBorrowCapGuardian The address of the new Borrow Cap Guardian
     */
    function _setBorrowCapGuardian(address newBorrowCapGuardian) external {
        if (msg.sender != admin) {
            revert Unauthorized();
        }

        // Save current value for inclusion in log
        address oldBorrowCapGuardian = borrowCapGuardian;

        // Store borrowCapGuardian with value newBorrowCapGuardian
        borrowCapGuardian = newBorrowCapGuardian;

        // Emit NewBorrowCapGuardian(OldBorrowCapGuardian, NewBorrowCapGuardian)
        emit NewBorrowCapGuardian(oldBorrowCapGuardian, newBorrowCapGuardian);
    }

    /**
     * @notice Admin function to change the Pause Guardian
     * @param newPauseGuardian The address of the new Pause Guardian
     * @return uint 0=success, otherwise a failure. (See enum Error for details)
     */
    function _setPauseGuardian(address newPauseGuardian) public returns (uint) {
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_PAUSE_GUARDIAN_OWNER_CHECK);
        }

        // Save current value for inclusion in log
        address oldPauseGuardian = pauseGuardian;

        // Store pauseGuardian with value newPauseGuardian
        pauseGuardian = newPauseGuardian;

        // Emit NewPauseGuardian(OldPauseGuardian, NewPauseGuardian)
        emit NewPauseGuardian(oldPauseGuardian, pauseGuardian);

        return uint(Error.NO_ERROR);
    }

    function _setMintPaused(CToken cToken, bool state) public returns (bool) {
        if (!markets[address(cToken)].isListed) {
            revert MarketNotListed();
        }
        if (msg.sender != admin && msg.sender != pauseGuardian) {
            revert Unauthorized();
        }
        if (msg.sender != admin && !state) {
            revert OnlyAdminCanUnpause();
        }

        mintGuardianPaused[address(cToken)] = state;
        emit ActionPaused(cToken, "Mint", state);
        return state;
    }

    function _setBorrowPaused(CToken cToken, bool state) public returns (bool) {
        if (!markets[address(cToken)].isListed) {
            revert MarketNotListed();
        }
        if (msg.sender != admin && msg.sender != pauseGuardian) {
            revert Unauthorized();
        }
        if (msg.sender != admin && !state) {
            revert OnlyAdminCanUnpause();
        }

        borrowGuardianPaused[address(cToken)] = state;
        emit ActionPaused(cToken, "Borrow", state);
        return state;
    }

    function _setTransferPaused(bool state) public returns (bool) {
        if (msg.sender != admin && msg.sender != pauseGuardian) {
            revert Unauthorized();
        }
        if (msg.sender != admin && !state) {
            revert OnlyAdminCanUnpause();
        }

        transferGuardianPaused = state;
        emit ActionPaused("Transfer", state);
        return state;
    }

    function _setSeizePaused(bool state) public returns (bool) {
        if (msg.sender != admin && msg.sender != pauseGuardian) {
            revert Unauthorized();
        }
        if (msg.sender != admin && !state) {
            revert OnlyAdminCanUnpause();
        }

        seizeGuardianPaused = state;
        emit ActionPaused("Seize", state);
        return state;
    }

    function _setCollectInterestPaused(bool state) public returns (bool) {
        if (msg.sender != admin && msg.sender != pauseGuardian) {
            revert Unauthorized();
        }
        if (msg.sender != admin && !state) {
            revert OnlyAdminCanUnpause();
        }

        collectInterestGuardianPaused = state;
        emit ActionPaused("CollectInterest", state);
        return state;
    }

    function _setPayInterestPaused(bool state) public returns (bool) {
        if (msg.sender != admin && msg.sender != pauseGuardian) {
            revert Unauthorized();
        }
        if (msg.sender != admin && !state) {
            revert OnlyAdminCanUnpause();
        }

        payInterestGuardianPaused = state;
        emit ActionPaused("PayInterest", state);
        return state;
    }

    function _setWhitelist(address user, bool isTrue) public {
        if (msg.sender != admin) {
            revert Unauthorized();
        }
        whitelist[user] = isTrue;
    }

    /**
    * @notice Sets a new interest market
    * @dev Admin function to set a new interest market
    * @param interestMarket_ The address of the new interest market
    */
    function _updateInterestMarket(address interestMarket_) external {
        if (msg.sender != admin) {
            revert Unauthorized();
        }
        if (!markets[interestMarket_].isListed) {
            revert MarketNotListed();
        }
        if (CTokenInterface(interestMarket_).marketType() != CTokenStorage.MarketType.ERC20_INTEREST_MARKET) {
            revert WrongMarketType();
        }
        _interestMarket = interestMarket_;
    }

    function _become(Unitroller unitroller) public {
        if (msg.sender != unitroller.admin()) {
            revert Unauthorized();
        }
        if (unitroller._acceptImplementation() != 0) {
            revert ChangeNotAuthorized();
        }
    }

    /**
     * @notice Checks caller is admin, or this contract is becoming the new implementation
     */
    function adminOrInitializing() internal view returns (bool) {
        return msg.sender == admin || msg.sender == comptrollerImplementation;
    }

    /**
     * @notice Return all of the markets
     * @dev The automatic getter may be used to access an individual market.
     * @return The list of market addresses
     */
    function getAllMarkets() public view returns (CToken[] memory) {
        return allMarkets;
    }

    function getBlockNumber() virtual public view returns (uint) {
        return block.number;
    }

    function isListed(address cToken) override public view returns (bool) {
        return markets[cToken].isListed;
    }

    /**
     * @notice Calculate the exchange rate between the underlyings of the given cTokens
     * @param cTokenA The first cToken
     * @param cTokenB The second cToken
     * @return uint The exchange rate from cTokenA.underlying() to cTokenB.underlying().
     */
    function getAssetsExchangeRate(address cTokenA, address cTokenB) override public view returns (uint) {
        PriceOracle oracle_ = oracle;
        uint priceA = oracle_.getUnderlyingPrice(CToken(cTokenA));
        uint priceB = oracle_.getUnderlyingPrice(CToken(cTokenB));
        return priceA != 0 && priceB != 0 ? priceA * expScale / priceB : 0;
    }

    function _checkEoaOrWL(address msgSender) override public view returns (bool) {
        if (whitelist[msgSender]) { return true; }
        if (tx.origin != msgSender) { return false; }
        uint size;
        assembly { size := extcodesize(msgSender) }
        return size == 0;
    }

    function interestMarket() override external view returns (address) {
        return _interestMarket;
    }
}

File 2 of 14 : CToken.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

import "ComptrollerInterface.sol";
import "CTokenInterfaces.sol";
import "ErrorReporter.sol";
import "EIP20Interface.sol";
import "InterestRateModel.sol";
import "ExponentialNoError.sol";


/**
 * @title Compound's CToken Contract
 * @notice Abstract base for CTokens
 * @author Compound
 */
abstract contract CToken is CTokenInterface, ExponentialNoError, TokenErrorReporter {
    /**
     * @notice Initialize the money market
     * @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_ EIP-20 name of this token
     * @param symbol_ EIP-20 symbol of this token
     * @param decimals_ EIP-20 decimal precision of this token
     */
    function initialize(ComptrollerInterface comptroller_,
                        InterestRateModel interestRateModel_,
                        uint initialExchangeRateMantissa_,
                        string memory name_,
                        string memory symbol_,
                        uint8 decimals_) virtual public {
        if (msg.sender != admin) {
            revert Unauthorized();
        }
        if (accrualBlockNumber != 0 || borrowIndex != 0) {
            revert AlreadyInitialized();
        }

        // Set initial exchange rate
        initialExchangeRateMantissa = initialExchangeRateMantissa_;
        if (initialExchangeRateMantissa == 0) {
            revert InitializeExchangeRateInvalid();
        }

        // Set the comptroller
        uint err = _setComptroller(comptroller_);
        if (err != NO_ERROR) {
            revert InitializeSetComptrollerFailed(err);
        }

        // Initialize block number and borrow index (block number mocks depend on comptroller being set)
        accrualBlockNumber = getBlockNumber();
        borrowIndex = mantissaOne;

        // Set the interest rate model (depends on block number / borrow index)
        err = _setInterestRateModelFresh(interestRateModel_);
        if (err != NO_ERROR) {
            revert InitializeSetInterestRateModelFailed(err);
        }

        name = name_;
        symbol = symbol_;
        decimals = decimals_;

        // The counter starts true to prevent changing it from zero to non-zero (i.e. smaller cost/refund)
        _notEntered = true;

        if (marketType == CTokenStorage.MarketType.UNDEFINED_MARKET) {
            revert InitializeMarketTypeNotSet();
        }
    }

    /**
     * @notice Transfer `tokens` tokens from `src` to `dst` by `spender`
     * @dev Called by both `transfer` and `transferFrom` internally
     * @param spender The address of the account performing the transfer
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param tokens The number of tokens to transfer
     * @return 0 if the transfer succeeded, else revert
     */
    function transferTokens(address spender, address src, address dst, uint tokens) virtual internal returns (uint) {
        /* Fail if transfer not allowed */
        uint allowed = comptroller.transferAllowed(address(this), src, dst, tokens);
        if (allowed != 0) {
            revert TransferComptrollerRejection(allowed);
        }

        /* Do not allow self-transfers */
        if (src == dst) {
            revert TransferNotAllowed();
        }

        /* Get the allowance, infinite for the account owner */
        uint startingAllowance = 0;
        if (spender == src) {
            startingAllowance = type(uint).max;
        } else {
            startingAllowance = transferAllowances[src][spender];
        }

        /* Do the calculations, checking for {under,over}flow */
        uint allowanceNew = startingAllowance - tokens;
        uint srcTokensNew = accountTokens[src] - tokens;
        uint dstTokensNew = accountTokens[dst] + tokens;

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        accountTokens[src] = srcTokensNew;
        accountTokens[dst] = dstTokensNew;

        /* Eat some of the allowance (if necessary) */
        if (startingAllowance != type(uint).max) {
            transferAllowances[src][spender] = allowanceNew;
        }

        /* We emit a Transfer event */
        emit Transfer(src, dst, tokens);

        return NO_ERROR;
    }

    /**
     * @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, uint256 amount) override external nonReentrant returns (bool) {
        return transferTokens(msg.sender, msg.sender, dst, amount) == NO_ERROR;
    }

    /**
     * @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) override external nonReentrant returns (bool) {
        return transferTokens(msg.sender, src, dst, amount) == NO_ERROR;
    }

    /**
     * @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 (uint256.max means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 amount) override external returns (bool) {
        address src = msg.sender;
        transferAllowances[src][spender] = amount;
        emit Approval(src, spender, amount);
        return true;
    }

    /**
     * @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) override external view returns (uint256) {
        return transferAllowances[owner][spender];
    }

    /**
     * @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) override external view returns (uint256) {
        return accountTokens[owner];
    }

    /**
     * @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) override external returns (uint) {
        Exp memory exchangeRate = Exp({mantissa: exchangeRateCurrent()});
        return mul_ScalarTruncate(exchangeRate, accountTokens[owner]);
    }

    /**
     * @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, borrow interest balance (always 0))
     */
    function getAccountSnapshot(address account) virtual override external view returns (uint, uint, uint, uint, uint) {
        return (
            NO_ERROR,
            accountTokens[account],
            borrowBalanceStoredInternal(account),
            exchangeRateStoredInternal(),
            0
        );
    }

    /**
     * @dev Function to simply retrieve block number
     *  This exists mainly for inheriting test contracts to stub this result.
     */
    function getBlockNumber() virtual internal view returns (uint) {
        return block.number;
    }

    /**
     * @notice Returns the current per-block borrow interest rate for this cToken
     * @return The borrow interest rate per block, scaled by 1e18
     */
    function borrowRatePerBlock() override external view returns (uint) {
        return interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves);
    }

    /**
     * @notice Returns the current per-block supply interest rate for this cToken
     * @return The supply interest rate per block, scaled by 1e18
     */
    function supplyRatePerBlock() override external view returns (uint) {
        return interestRateModel.getSupplyRate(getCashPrior(), totalBorrows, totalReserves, reserveFactorMantissa);
    }

    /**
     * @notice Returns the current total borrows plus accrued interest
     * @return The total borrows with interest
     */
    function totalBorrowsCurrent() override external nonReentrant returns (uint) {
        accrueInterest();
        return totalBorrows;
    }

    /**
     * @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) override external nonReentrant returns (uint) {
        accrueInterest();
        return borrowBalanceStored(account);
    }

    /**
     * @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) override public view returns (uint) {
        return borrowBalanceStoredInternal(account);
    }

    /**
     * @notice Return the borrow balance of account based on stored data
     * @param account The address whose balance should be calculated
     * @return (error code, the calculated balance or 0 if error code is non-zero)
     */
    function borrowBalanceStoredInternal(address account) virtual internal view returns (uint) {
        /* Get borrowBalance and borrowIndex */
        BorrowSnapshot storage borrowSnapshot = accountBorrows[account];

        /* If borrowBalance = 0 then borrowIndex is likely also 0.
         * Rather than failing the calculation with a division by 0, we immediately return 0 in this case.
         */
        if (borrowSnapshot.principal == 0) {
            return 0;
        }

        /* Calculate new borrow balance using the interest index:
         *  recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex
         */
        uint principalTimesIndex = borrowSnapshot.principal * borrowIndex;
        return principalTimesIndex / borrowSnapshot.interestIndex;
    }

    /**
     * @notice Accrue interest then return the up-to-date exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateCurrent() override public nonReentrant returns (uint) {
        accrueInterest();
        return exchangeRateStored();
    }

    /**
     * @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() override public view returns (uint) {
        return exchangeRateStoredInternal();
    }

    /**
     * @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 exchangeRateStoredInternal() virtual internal view returns (uint) {
        uint _totalSupply = totalSupply;
        if (_totalSupply == 0) {
            /*
             * If there are no tokens minted:
             *  exchangeRate = initialExchangeRate
             */
            return initialExchangeRateMantissa;
        } else {
            /*
             * Otherwise:
             *  exchangeRate = (totalCash + totalBorrows - totalReserves) / totalSupply
             */
            uint totalCash = getCashPrior();
            uint cashPlusBorrowsMinusReserves = totalCash + totalBorrows - totalReserves;
            uint exchangeRate = cashPlusBorrowsMinusReserves * expScale / _totalSupply;

            return exchangeRate;
        }
    }

    /**
     * @notice Get cash balance of this cToken in the underlying asset
     * @return The quantity of underlying asset owned by this contract
     */
    function getCash() override external view returns (uint) {
        return getCashPrior();
    }

    /**
     * @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() virtual override public returns (uint) {
        /* Remember the initial block number */
        uint currentBlockNumber = getBlockNumber();
        uint accrualBlockNumberPrior = accrualBlockNumber;

        /* Short-circuit accumulating 0 interest */
        if (accrualBlockNumberPrior == currentBlockNumber) {
            return NO_ERROR;
        }

        /* Read the previous values out of storage */
        uint cashPrior = getCashPrior();
        uint borrowsPrior = totalBorrows;
        uint reservesPrior = totalReserves;
        uint borrowIndexPrior = borrowIndex;

        /* Calculate the current borrow interest rate */
        uint borrowRateMantissa = interestRateModel.getBorrowRate(cashPrior, borrowsPrior, reservesPrior);
        if (borrowRateMantissa > borrowRateMaxMantissa) {
            revert BorrowRateIsAbsurdlyHigh(borrowRateMantissa);
        }

        /* Calculate the number of blocks elapsed since the last accrual */
        uint blockDelta = currentBlockNumber - accrualBlockNumberPrior;

        /*
         * Calculate the interest accumulated into borrows and reserves and the new index:
         *  simpleInterestFactor = borrowRate * blockDelta
         *  interestAccumulated = simpleInterestFactor * totalBorrows
         *  totalBorrowsNew = interestAccumulated + totalBorrows
         *  totalReservesNew = interestAccumulated * reserveFactor + totalReserves
         *  borrowIndexNew = simpleInterestFactor * borrowIndex + borrowIndex
         */

        Exp memory simpleInterestFactor = mul_(Exp({mantissa: borrowRateMantissa}), blockDelta);
        uint interestAccumulated = mul_ScalarTruncate(simpleInterestFactor, borrowsPrior);
        uint totalBorrowsNew = interestAccumulated + borrowsPrior;
        uint totalReservesNew = mul_ScalarTruncateAddUInt(Exp({mantissa: reserveFactorMantissa}), interestAccumulated, reservesPrior);
        uint borrowIndexNew = mul_ScalarTruncateAddUInt(simpleInterestFactor, borrowIndexPrior, borrowIndexPrior);

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /* We write the previously calculated values into storage */
        accrualBlockNumber = currentBlockNumber;
        borrowIndex = borrowIndexNew;
        totalBorrows = totalBorrowsNew;
        totalReserves = totalReservesNew;

        /* We emit an AccrueInterest event */
        emit AccrueInterest(cashPrior, interestAccumulated, borrowIndexNew, totalBorrowsNew);

        return NO_ERROR;
    }

    /**
     * @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
     */
    function mintInternal(uint mintAmount) internal nonReentrantWL {
        accrueInterest();
        // mintFresh emits the actual Mint event if successful and logs on errors, so we don't need to
        mintFresh(msg.sender, mintAmount);
    }

    /**
     * @notice User supplies assets into the market and receives cTokens in exchange
     * @dev Assumes interest has already been accrued up to the current block
     * @param minter The address of the account which is supplying the assets
     * @param mintAmount The amount of the underlying asset to supply
     */
    function mintFresh(address minter, uint mintAmount) internal {
        /* Fail if mint not allowed */
        uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount);
        if (allowed != 0) {
            revert MintComptrollerRejection(allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            revert MintFreshnessCheck();
        }

        Exp memory exchangeRate = Exp({mantissa: exchangeRateStoredInternal()});

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /*
         *  We call `doTransferIn` for the minter and the mintAmount.
         *  Note: The cToken must handle variations between ERC-20 and ETH underlying.
         *  `doTransferIn` reverts if anything goes wrong, since we can't be sure if
         *  side-effects occurred. The function returns the amount actually transferred,
         *  in case of a fee. On success, the cToken holds an additional `actualMintAmount`
         *  of cash.
         */
        uint actualMintAmount = doTransferIn(minter, mintAmount);

        /*
         * We get the current exchange rate and calculate the number of cTokens to be minted:
         *  mintTokens = actualMintAmount / exchangeRate
         */

        uint mintTokens = div_(actualMintAmount, exchangeRate);

        /*
         * We calculate the new total supply of cTokens and minter token balance, checking for overflow:
         *  totalSupplyNew = totalSupply + mintTokens
         *  accountTokensNew = accountTokens[minter] + mintTokens
         * And write them into storage
         */
        totalSupply = totalSupply + mintTokens;
        accountTokens[minter] = accountTokens[minter] + mintTokens;

        /* We emit a Mint event, and a Transfer event */
        emit Mint(minter, actualMintAmount, mintTokens);
        emit Transfer(address(this), minter, mintTokens);
    }

    /**
     * @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
     */
    function redeemInternal(uint redeemTokens) internal nonReentrantWL {
        accrueInterest();
        // redeemFresh emits redeem-specific logs on errors, so we don't need to
        redeemFresh(payable(msg.sender), redeemTokens, 0);
    }

    /**
     * @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 receive from redeeming cTokens
     */
    function redeemUnderlyingInternal(uint redeemAmount) internal nonReentrantWL {
        accrueInterest();
        // redeemFresh emits redeem-specific logs on errors, so we don't need to
        redeemFresh(payable(msg.sender), 0, redeemAmount);
    }

    /**
     * @notice User redeems cTokens in exchange for the underlying asset
     * @dev Assumes interest has already been accrued up to the current block
     * @param redeemer The address of the account which is redeeming the tokens
     * @param redeemTokensIn The number of cTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be non-zero)
     * @param redeemAmountIn The number of underlying tokens to receive from redeeming cTokens (only one of redeemTokensIn or redeemAmountIn may be non-zero)
     */
    function redeemFresh(address payable redeemer, uint redeemTokensIn, uint redeemAmountIn) internal virtual {
        // Fail if both redeemTokensIn and redeemAmountIn are non-zero
        if (redeemTokensIn != 0 && redeemAmountIn != 0) {
            revert RedeemInvalidInputs();
        }

        /* exchangeRate = invoke Exchange Rate Stored() */
        Exp memory exchangeRate = Exp({mantissa: exchangeRateStoredInternal() });

        uint redeemTokens;
        uint redeemAmount;
        /* If redeemTokensIn > 0: */
        if (redeemTokensIn > 0) {
            /*
             * We calculate the exchange rate and the amount of underlying to be redeemed:
             *  redeemTokens = redeemTokensIn
             *  redeemAmount = redeemTokensIn x exchangeRateCurrent
             */
            redeemTokens = redeemTokensIn;
            redeemAmount = mul_ScalarTruncate(exchangeRate, redeemTokensIn);
        } else {
            /*
             * We get the current exchange rate and calculate the amount to be redeemed:
             *  redeemTokens = redeemAmountIn / exchangeRate
             *  redeemAmount = redeemAmountIn
             */
            redeemTokens = div_(redeemAmountIn, exchangeRate);
            redeemAmount = redeemAmountIn;
        }

        /* Fail if redeem not allowed */
        uint allowed = comptroller.redeemAllowed(address(this), redeemer, redeemTokens);
        if (allowed != 0) {
            revert RedeemComptrollerRejection(allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            revert RedeemFreshnessCheck();
        }

        /* Fail gracefully if protocol has insufficient cash */
        if (getCashPrior() < redeemAmount) {
            revert RedeemTransferOutNotPossible();
        }

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)


        /*
         * We write the previously calculated values into storage.
         *  Note: Avoid token reentrancy attacks by writing reduced supply before external transfer.
         */
        totalSupply = totalSupply - redeemTokens;

        uint accountTokensNew = accountTokens[redeemer] - redeemTokens;
        accountTokens[redeemer] = accountTokensNew;

        /*
         * We invoke doTransferOut for the redeemer and the redeemAmount.
         *  Note: The cToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the cToken has redeemAmount less of cash.
         *  doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred.
         */
        doTransferOut(redeemer, redeemAmount);

        /* We emit a Transfer event, and a Redeem event */
        emit Transfer(redeemer, address(this), redeemTokens);
        emit Redeem(redeemer, redeemAmount, redeemTokens);

        // Require tokens is zero or amount is also zero (defense check)
        if (redeemTokens == 0 && redeemAmount > 0) {
            revert("redeemTokens zero");
        }

        if (accountTokensNew == 0 && borrowBalanceStoredInternal(redeemer) == 0) {
            comptroller.autoExitMarkets(redeemer); // silent failure allowed
        }
    }

    /**
      * @notice Sender borrows assets from the protocol to their own address
      * @param borrowAmount The amount of the underlying asset to borrow
      */
    function borrowInternal(uint borrowAmount) internal nonReentrantWL {
        accrueInterest();
        // borrowFresh emits borrow-specific logs on errors, so we don't need to
        borrowFresh(payable(msg.sender), borrowAmount);
    }

    /**
      * @notice Users borrow assets from the protocol to their own address
      * @param borrowAmount The amount of the underlying asset to borrow
      */
    function borrowFresh(address payable borrower, uint borrowAmount) internal virtual {
        /* Fail if borrow not allowed */
        uint allowed = comptroller.borrowAllowed(address(this), borrower, borrowAmount);
        if (allowed != 0) {
            revert BorrowComptrollerRejection(allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            revert BorrowFreshnessCheck();
        }

        /* Fail gracefully if protocol has insufficient underlying cash */
        if (getCashPrior() < borrowAmount) {
            revert BorrowCashNotAvailable();
        }

        /*
         * We calculate the new borrower and total borrow balances, failing on overflow:
         *  accountBorrowNew = accountBorrow + borrowAmount
         *  totalBorrowsNew = totalBorrows + borrowAmount
         */
        uint accountBorrowsPrev = borrowBalanceStoredInternal(borrower);
        uint accountBorrowsNew = accountBorrowsPrev + borrowAmount;
        uint totalBorrowsNew = totalBorrows + borrowAmount;

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /*
         * We write the previously calculated values into storage.
         *  Note: Avoid token reentrancy attacks by writing increased borrow before external transfer.
        `*/
        accountBorrows[borrower].principal = accountBorrowsNew;
        accountBorrows[borrower].interestIndex = borrowIndex;
        totalBorrows = totalBorrowsNew;

        /*
         * We invoke doTransferOut for the borrower and the borrowAmount.
         *  Note: The cToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the cToken borrowAmount less of cash.
         *  doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred.
         */
        doTransferOut(borrower, borrowAmount);

        /* We emit a Borrow event */
        emit Borrow(borrower, borrowAmount, accountBorrowsNew, totalBorrowsNew);
    }

    /**
     * @notice Sender repays their own borrow
     * @param repayAmount The amount to repay, or -1 for the full outstanding amount
     */
    function repayBorrowInternal(uint repayAmount) internal nonReentrantWL {
        accrueInterest();
        // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to
        repayBorrowFresh(msg.sender, msg.sender, repayAmount);
    }

    /**
     * @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
     */
    function repayBorrowBehalfInternal(address borrower, uint repayAmount) internal nonReentrantWL {
        accrueInterest();
        // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to
        repayBorrowFresh(msg.sender, borrower, repayAmount);
    }

    /**
     * @notice Borrows are repaid by another user (possibly the borrower).
     * @param payer the account paying off the borrow
     * @param borrower the account with the debt being payed off
     * @param repayAmount the amount of underlying tokens being returned, or -1 for the full outstanding amount
     * @return (uint) the actual repayment amount.
     */
    function repayBorrowFresh(address payer, address borrower, uint repayAmount) internal virtual returns (uint) {
        /* Fail if repayBorrow not allowed */
        uint allowed = comptroller.repayBorrowAllowed(address(this), payer, borrower, repayAmount);
        if (allowed != 0) {
            revert RepayBorrowComptrollerRejection(allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            revert RepayBorrowFreshnessCheck();
        }

        /* We fetch the amount the borrower owes, with accumulated interest */
        uint accountBorrowsPrev = borrowBalanceStoredInternal(borrower);

        /* If repayAmount == -1, repayAmount = accountBorrows */
        uint repayAmountFinal = repayAmount == type(uint).max ? accountBorrowsPrev : repayAmount;

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /*
         * We call doTransferIn for the payer and the repayAmount
         *  Note: The cToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the cToken holds an additional repayAmount of cash.
         *  doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred.
         *   it returns the amount actually transferred, in case of a fee.
         */
        uint actualRepayAmount = doTransferIn(payer, repayAmountFinal);

        /*
         * We calculate the new borrower and total borrow balances, failing on underflow:
         *  accountBorrowsNew = accountBorrows - actualRepayAmount
         *  totalBorrowsNew = totalBorrows - actualRepayAmount
         */
        uint accountBorrowsNew = accountBorrowsPrev - actualRepayAmount;
        uint totalBorrowsNew = totalBorrows > actualRepayAmount ? totalBorrows - actualRepayAmount : 0;

        /* We write the previously calculated values into storage */
        accountBorrows[borrower].principal = accountBorrowsNew;
        accountBorrows[borrower].interestIndex = borrowIndex;
        totalBorrows = totalBorrowsNew;

        /* We emit a RepayBorrow event */
        emit RepayBorrow(payer, borrower, actualRepayAmount, accountBorrowsNew, totalBorrowsNew);

        if (accountBorrowsNew == 0 && accountTokens[borrower] == 0) {
            comptroller.autoExitMarkets(borrower); // silent failure allowed
        }

        return actualRepayAmount;
    }

    /**
     * @notice The sender liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param liquidator The liquidator repaying the borrow and seizing collateral
     * @param borrower The borrower of this cToken to be liquidated
     * @param repayAmount The amount of the underlying borrowed asset to repay
     */
    function _liquidateBorrowInternal(address liquidator, address borrower, uint repayAmount) internal nonReentrant returns (uint) {
        if (msg.sender != address(comptroller)) {
            revert Unauthorized();
        }

        accrueInterest();

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            revert LiquidateFreshnessCheck();
        }

        /* Fail if borrower = liquidator */
        if (borrower == liquidator) {
            revert LiquidateLiquidatorIsBorrower();
        }

        /* Fail if repayAmount = 0 */
        if (repayAmount == 0) {
            revert LiquidateCloseAmountIsZero();
        }

        /* Fail if repayBorrow fails */
        uint actualRepayAmount = repayBorrowFresh(liquidator, borrower, repayAmount);

        /* We emit a LiquidateBorrow event */
        emit LiquidateBorrow(liquidator, borrower, actualRepayAmount);

        return actualRepayAmount;
    }

    /**
     * @notice Transfers collateral tokens (this market) to the liquidator.
     *         This function can only be called by the Comptroller.
     * @param liquidator The account receiving seized collateral
     * @param borrower The account having collateral seized
     * @param seizeTokens The number of cTokens to seize
     * @return uint actual seizeTokens
     */
    function _seize(address liquidator, address borrower, uint seizeTokens) override virtual external nonReentrant returns (uint) {
        if (msg.sender != address(comptroller)) {
            revert Unauthorized();
        }

        accrueInterest();

        /* Fail if borrower = liquidator */
        if (borrower == liquidator) {
            revert LiquidateSeizeLiquidatorIsBorrower();
        }

        /*
         * We calculate the new borrower and liquidator token balances, failing on underflow/overflow:
         *  borrowerTokensNew = accountTokens[borrower] - seizeTokens
         *  liquidatorTokensNew = accountTokens[liquidator] + seizeTokens
         */
        uint protocolSeizeTokens = mul_(seizeTokens, Exp({mantissa: protocolSeizeShareMantissa}));
        uint liquidatorSeizeTokens = seizeTokens - protocolSeizeTokens;
        Exp memory exchangeRate = Exp({mantissa: exchangeRateStoredInternal()});
        uint protocolSeizeAmount = mul_ScalarTruncate(exchangeRate, protocolSeizeTokens);
        uint totalReservesNew = totalReserves + protocolSeizeAmount;


        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /* We write the calculated values into storage */
        totalReserves = totalReservesNew;
        totalSupply = totalSupply - protocolSeizeTokens;
        accountTokens[borrower] = accountTokens[borrower] - seizeTokens;
        accountTokens[liquidator] = accountTokens[liquidator] + liquidatorSeizeTokens;

        /* Emit a Transfer event */
        emit Transfer(borrower, liquidator, liquidatorSeizeTokens);
        emit Transfer(borrower, address(this), protocolSeizeTokens);
        emit ReservesAdded(address(this), protocolSeizeAmount, totalReservesNew);

        return seizeTokens;
    }

    /*** 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) override external returns (uint) {
        // Check caller = admin
        if (msg.sender != admin) {
            revert SetPendingAdminOwnerCheck();
        }

        // Save current value, if any, for inclusion in log
        address oldPendingAdmin = pendingAdmin;

        // Store pendingAdmin with value newPendingAdmin
        pendingAdmin = newPendingAdmin;

        // Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin)
        emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin);

        return NO_ERROR;
    }

    /**
      * @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() override external returns (uint) {
        // Check caller is pendingAdmin and pendingAdmin ≠ address(0)
        if (msg.sender != pendingAdmin || msg.sender == address(0)) {
            revert AcceptAdminPendingAdminCheck();
        }

        // Save current values for inclusion in log
        address oldAdmin = admin;
        address oldPendingAdmin = pendingAdmin;

        // Store admin with value pendingAdmin
        admin = pendingAdmin;

        // Clear the pending value
        pendingAdmin = payable(address(0));

        emit NewAdmin(oldAdmin, admin);
        emit NewPendingAdmin(oldPendingAdmin, pendingAdmin);

        return NO_ERROR;
    }

    /**
      * @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) override public returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            revert SetComptrollerOwnerCheck();
        }

        ComptrollerInterface oldComptroller = comptroller;
        // Ensure invoke comptroller.isComptroller() returns true
        if (!newComptroller.isComptroller()) {
            revert InvalidComptrollerAddress(address(newComptroller));
        }

        // Set market's comptroller to newComptroller
        comptroller = newComptroller;

        // Emit NewComptroller(oldComptroller, newComptroller)
        emit NewComptroller(oldComptroller, newComptroller);

        return NO_ERROR;
    }

    /**
      * @notice Sets protocolSeizeShareMantissa
      * @dev Admin function to set protocolSeizeShareMantissa
      * @param newProtocolSeizeShareMantissa New protocolSeizeShareMantissa scaled by 1e18
      * @return uint 0=success, otherwise a failure. (See ErrorReporter for details)
      */
    function _setProtocolSeizeShare(uint newProtocolSeizeShareMantissa) virtual override external returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            revert SetProtocolSeizeShareAdminCheck();
        }

        if (newProtocolSeizeShareMantissa > protocolSeizeShareMaxMantissa) {
            revert SetProtocolSeizeShareTooHigh();
        }

        // Save current value for use in log
        uint oldProtocolSeizeShareMantissa = protocolSeizeShareMantissa;

        // Set liquidation incentive to new incentive
        protocolSeizeShareMantissa = newProtocolSeizeShareMantissa;

        // Emit event with old incentive, new incentive
        emit NewProtocolSeizeShare(oldProtocolSeizeShareMantissa, newProtocolSeizeShareMantissa);

        return NO_ERROR;
    }

    /**
      * @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) override external nonReentrant returns (uint) {
        accrueInterest();
        // _setReserveFactorFresh emits reserve-factor-specific logs on errors, so we don't need to.
        return _setReserveFactorFresh(newReserveFactorMantissa);
    }

    /**
      * @notice Sets a new reserve factor for the protocol (*requires fresh interest accrual)
      * @dev Admin function to set a new reserve factor
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _setReserveFactorFresh(uint newReserveFactorMantissa) internal returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            revert SetReserveFactorAdminCheck();
        }

        // Verify market's block number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            revert SetReserveFactorFreshCheck();
        }

        // Check newReserveFactor ≤ maxReserveFactor
        if (newReserveFactorMantissa > reserveFactorMaxMantissa) {
            revert SetReserveFactorBoundsCheck();
        }

        uint oldReserveFactorMantissa = reserveFactorMantissa;
        reserveFactorMantissa = newReserveFactorMantissa;

        emit NewReserveFactor(oldReserveFactorMantissa, newReserveFactorMantissa);

        return NO_ERROR;
    }

    /**
     * @notice Accrues interest and reduces reserves by transferring from msg.sender
     * @param addAmount Amount of addition to reserves
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _addReservesInternal(uint addAmount) internal nonReentrantWL returns (uint) {
        accrueInterest();

        // _addReservesFresh emits reserve-addition-specific logs on errors, so we don't need to.
        _addReservesFresh(addAmount);
        return NO_ERROR;
    }

    /**
     * @notice Add reserves by transferring from caller
     * @dev Requires fresh interest accrual
     * @param addAmount Amount of addition to reserves
     * @return (uint, uint) An error code (0=success, otherwise a failure (see ErrorReporter.sol for details)) and the actual amount added, net token fees
     */
    function _addReservesFresh(uint addAmount) internal virtual returns (uint, uint) {
        // totalReserves + actualAddAmount
        uint totalReservesNew;
        uint actualAddAmount = 0;

        // We fail gracefully unless market's block number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            revert AddReservesFactorFreshCheck(actualAddAmount);
        }

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /*
         * We call doTransferIn for the caller and the addAmount
         *  Note: The cToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the cToken holds an additional addAmount of cash.
         *  doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred.
         *  it returns the amount actually transferred, in case of a fee.
         */

        actualAddAmount = doTransferIn(msg.sender, addAmount);

        totalReservesNew = totalReserves + actualAddAmount;

        // Store reserves[n+1] = reserves[n] + actualAddAmount
        totalReserves = totalReservesNew;

        /* Emit NewReserves(admin, actualAddAmount, reserves[n+1]) */
        emit ReservesAdded(msg.sender, actualAddAmount, totalReservesNew);

        /* Return (NO_ERROR, actualAddAmount) */
        return (NO_ERROR, actualAddAmount);
    }


    /**
     * @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) override external nonReentrant returns (uint) {
        accrueInterest();
        // _reduceReservesFresh emits reserve-reduction-specific logs on errors, so we don't need to.
        return _reduceReservesFresh(reduceAmount);
    }

    /**
     * @notice Reduces reserves by transferring to admin
     * @dev Requires fresh interest accrual
     * @param reduceAmount Amount of reduction to reserves
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _reduceReservesFresh(uint reduceAmount) internal virtual returns (uint) {
        // totalReserves - reduceAmount
        uint totalReservesNew;

        // Check caller is admin
        if (msg.sender != admin) {
            revert ReduceReservesAdminCheck();
        }

        // We fail gracefully unless market's block number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            revert ReduceReservesFreshCheck();
        }

        // Fail gracefully if protocol has insufficient underlying cash
        if (getCashPrior() < reduceAmount) {
            revert ReduceReservesCashNotAvailable();
        }

        // Check reduceAmount ≤ reserves[n] (totalReserves)
        if (reduceAmount > totalReserves) {
            revert ReduceReservesCashValidation();
        }

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        totalReservesNew = totalReserves - reduceAmount;

        // Store reserves[n+1] = reserves[n] - reduceAmount
        totalReserves = totalReservesNew;

        // doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred.
        doTransferOut(admin, reduceAmount);

        emit ReservesReduced(admin, reduceAmount, totalReservesNew);

        return NO_ERROR;
    }

    /**
     * @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) override public returns (uint) {
        accrueInterest();
        // _setInterestRateModelFresh emits interest-rate-model-update-specific logs on errors, so we don't need to.
        return _setInterestRateModelFresh(newInterestRateModel);
    }

    /**
     * @notice updates the interest rate model (*requires fresh interest accrual)
     * @dev Admin function to 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 _setInterestRateModelFresh(InterestRateModel newInterestRateModel) internal returns (uint) {

        // Used to store old model for use in the event that is emitted on success
        InterestRateModel oldInterestRateModel;

        // Check caller is admin
        if (msg.sender != admin) {
            revert SetInterestRateModelOwnerCheck();
        }

        // We fail gracefully unless market's block number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            revert SetInterestRateModelFreshCheck();
        }

        // Track the market's current interest rate model
        oldInterestRateModel = interestRateModel;

        // Ensure invoke newInterestRateModel.isInterestRateModel() returns true
        if (!newInterestRateModel.isInterestRateModel()) {
            revert InvalidRateModelAddress(address(newInterestRateModel));
        }

        // Set the interest rate model to newInterestRateModel
        interestRateModel = newInterestRateModel;

        // Emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel)
        emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel);

        return NO_ERROR;
    }

    function _ensureNonEmpty(address minter, uint amount) virtual external;

    // called only once by the comptroller during _supportMarket
    function _ensureNonEmptyInternal(address minter, uint amount) internal nonReentrant {
        if (msg.sender != address(comptroller)) {
            revert Unauthorized();
        }

        if (amount == 0) {
            revert EnsureNonEmptyAmountTooSmall();
        }

        // this function is called during market setup, so an existing totalSupply should not be possible
        assert(totalSupply == 0);

        accrueInterest();
        mintFresh(minter, amount);

        uint totalSupply_ = totalSupply;
        if (totalSupply_ == 0) {
            revert EnsureNonEmptyAmountTooSmall();
        }
        assert(totalSupply_ == accountTokens[minter]);

        // burn minted balance
        accountTokens[minter] = 0;
        accountTokens[address(0)] = totalSupply_;
        emit Transfer(minter, address(0), totalSupply_);
    }

    /*** Safe Token ***/

    /**
     * @notice Gets balance of this contract in terms of the underlying
     * @dev This excludes the value of the current message, if any
     * @return The quantity of underlying owned by this contract
     */
    function getCashPrior() virtual internal view returns (uint);

    /**
     * @dev Performs a transfer in, reverting upon failure. Returns the amount actually transferred to the protocol, in case of a fee.
     *  This may revert due to insufficient balance or insufficient allowance.
     */
    function doTransferIn(address from, uint amount) virtual internal returns (uint);

    /**
     * @dev Performs a transfer out, ideally returning an explanatory error code upon failure rather than reverting.
     *  If caller has not called checked protocol's balance, may revert due to insufficient cash held in the contract.
     *  If caller has checked protocol's balance, and verified it is >= amount, this should not revert in normal conditions.
     */
    function doTransferOut(address payable to, uint amount) virtual internal;


    /*** Reentrancy Guard ***/

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     */
    modifier nonReentrant() {
        if (!_notEntered) {
            revert Reentry();
        }
        _notEntered = false;
        _;
        _notEntered = true; // get a gas-refund post-Istanbul
    }

    modifier nonReentrantWL() {
        if (!comptroller._checkEoaOrWL(msg.sender)) {
            revert Unauthorized();
        }
        if (!_notEntered) {
            revert Reentry();
        }
        _notEntered = false;
        _;
        _notEntered = true; // get a gas-refund post-Istanbul
    }
}

File 3 of 14 : ComptrollerInterface.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

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

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

    function autoEnterMarkets(address account) virtual external;
    function autoExitMarkets(address account) virtual external;
    function enterMarkets(address[] calldata cTokens) virtual external returns (uint[] memory);
    function exitMarket(address cToken) virtual external returns (uint);
    function redeemAllInterest(address lender, address[] memory cTokens) virtual external returns (uint[] memory);

    /*** Policy Hooks ***/

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

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

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

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

    function collectInterestAllowed(
        address cTokenInterestMarket,
        address cTokenSupplyMarket,
        address lender,
        uint interestAmount) virtual external returns (uint);

    function payInterestAllowed(
        address cTokenInterestMarket,
        address cTokenBorrowMarket,
        address payer,
        uint payTokens) virtual external returns (uint);

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

    function isListed(address cToken) virtual external view returns (bool);

    function getAssetsExchangeRate(address cTokenA, address cTokenB) virtual external view returns (uint);

    function _checkEoaOrWL(address msgSender) virtual external view returns (bool);

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

    struct Liquidatables {
        address cToken; // token to liquidate
        uint amount;    // non-NFT markets
        uint[] nftIds;  // NFT markets
    }

    function topUpInterestShortfall(address borrower, uint maxTopUpTokens, address cTokenCollateral) virtual external returns (uint[2] memory);

    function batchLiquidateBorrow(address borrower, Liquidatables[] memory liquidatables, address[] memory cTokenCollaterals, uint minSeizedValue) virtual external returns (uint[][2] memory results);

    function liquidateCalculateSeizeTokensNormed(address cTokenCollateral, uint normedRepayAmount) virtual public view returns (uint);

    function interestMarket() virtual external view returns (address);
}

File 4 of 14 : CTokenInterfaces.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

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;

    // Maximum protocol seize share that can be set
    uint internal constant protocolSeizeShareMaxMantissa = 20e16;

    /**
     * @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
     * @member interestAccrued Total interest accrued for markets that track it separately from borrow balance
     */
    struct BorrowSnapshot {
        uint principal;
        uint interestIndex;
        uint interestAccrued;
    }

    // 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 protocolSeizeShareMantissa = 2.8e16; //2.8%

    /**
     * @notice MarketType enum
     */
    enum MarketType {
        UNDEFINED_MARKET,
        ERC20_MARKET,
        ERC721_MARKET,
        ERC20_INTEREST_MARKET
    }

    /**
     * @notice Indicates a token market type
     */
    MarketType public marketType;
}

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);

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

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


    /*** 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 seize share is changed
     */
    event NewProtocolSeizeShare(uint oldProtocolSeizeShareMantissa, uint newProtocolSeizeShareMantissa);

    /**
     * @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) virtual external returns (bool);
    function transferFrom(address src, address dst, uint amount) virtual external returns (bool);
    function approve(address spender, uint amount) virtual external returns (bool);
    function allowance(address owner, address spender) virtual external view returns (uint);
    function balanceOf(address owner) virtual external view returns (uint);
    function balanceOfUnderlying(address owner) virtual external returns (uint);
    function getAccountSnapshot(address account) virtual external view returns (uint, uint, uint, uint, uint);
    function borrowRatePerBlock() virtual external view returns (uint);
    function supplyRatePerBlock() virtual external view returns (uint);
    function totalBorrowsCurrent() virtual external returns (uint);
    function borrowBalanceCurrent(address account) virtual external returns (uint);
    function borrowBalanceStored(address account) virtual external view returns (uint);
    function exchangeRateCurrent() virtual external returns (uint);
    function exchangeRateStored() virtual external view returns (uint);
    function getCash() virtual external view returns (uint);
    function accrueInterest() virtual external returns (uint);
    function _seize(address liquidator, address borrower, uint seizeTokens) virtual external returns (uint);
    function sweepToken(EIP20NonStandardInterface token) virtual external;


    /*** Admin Functions ***/

    function _setPendingAdmin(address payable newPendingAdmin) virtual external returns (uint);
    function _acceptAdmin() virtual external returns (uint);
    function _setComptroller(ComptrollerInterface newComptroller) virtual external returns (uint);
    function _setProtocolSeizeShare(uint newProtocolSeizeShareMantissa) virtual external returns (uint);
    function _setReserveFactor(uint newReserveFactorMantissa) virtual external returns (uint);
    function _reduceReserves(uint reduceAmount) virtual external returns (uint);
    function _setInterestRateModel(InterestRateModel newInterestRateModel) virtual external returns (uint);
}

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

abstract contract CErc20Interface is CErc20Storage {

    /*** User Interface ***/

    function mint(uint mintAmount) virtual external returns (uint);
    function redeem(uint redeemTokens) virtual external returns (uint);
    function redeemUnderlying(uint redeemAmount) virtual external returns (uint);
    function borrow(uint borrowAmount) virtual external returns (uint);
    function repayBorrow(uint repayAmount) virtual external returns (uint);
    function repayBorrowBehalf(address borrower, uint repayAmount) virtual external returns (uint);
    function _liquidateBorrow(address liquidator, address borrower, uint repayAmount) virtual external returns (uint);

    /*** Admin Functions ***/

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

interface IWeth {
    function transferFrom(address src, address dst, uint wad) external;
    function withdraw(uint256 wad) external;
}

abstract contract CEtherInterface is CErc20Storage {

    /*** User Interface ***/

    function mint() virtual external payable;
    function redeem(uint redeemTokens) virtual external returns (uint);
    function redeemUnderlying(uint redeemAmount) virtual external returns (uint);
    function borrow(uint borrowAmount) virtual external returns (uint);
    function repayBorrow() virtual external payable;
    function repayBorrowBehalf(address borrower) virtual external payable;
    function _liquidateBorrow(address liquidator, address borrower, uint repayAmount) virtual external returns (uint);

    /*** Admin Functions ***/

    function _addReserves() virtual external payable 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);

    error CannotReceiveValueGtZero();

    /**
     * @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) virtual external;
}

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) virtual external;

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

File 5 of 14 : InterestRateModel.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

/**
  * @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 public 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 public view returns (uint);

    /**
     * @notice Calculates the current borrow and supply rate per block
     * @param cash The amount of cash in the market
     * @param borrows The amount of borrows in the market
     * @param reserves The amount of reserves in the market
     * @param reserveFactorMantissa The current reserve factor for the market
     * @return (uint, uint) The borrow rate percentage per block as a mantissa (scaled by BASE),
     *         supply rate percentage per block as a mantissa (scaled by BASE)
     */
    function getMarketRates(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) virtual public view returns (uint, uint) {
      return (getBorrowRate(cash, borrows, reserves), getSupplyRate(cash, borrows, reserves, reserveFactorMantissa));
    }
}

File 6 of 14 : EIP20NonStandardInterface.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

/**
 * @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);
}

File 7 of 14 : ErrorReporter.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

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,
        INVALID_MARKET_TYPE,
        TOO_LITTLE_INTEREST_RESERVE,
        NONZERO_INTEREST_BALANCE,
        LIQUIDATE_SEIZE_TOO_LITTLE
    }

    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);

    error Unauthorized();
    error InitializationFailed();

    error GetAccountSnapshotFailed(uint256 errorCode);

    error SeizePaused();
    error MintPaused();
    error BorrowPaused();
    error CollectInterestPaused();
    error PayInterestPaused();
    error TransferPaused();

    error InsufficientShortfall(uint errorCode, uint value);
    error InvalidTopUpLimit();
    error TopUpLimitExceeded();
    error TopUpZero();
    error SeizeFailed();
    error TopUpFailed();
    error LiquidateError();
    error LiquidateSeizeTooLittle();
    error LiquidateSeizeTooMuch();
    error LiquidateSeizeBellowMinValue(uint minSeizedValue, uint liquidatedValueTotal);
    error ExcessRefundFailed();
    error BorrowCapReached();
    error MarketAlreadyAdded();
    error InvalidInput();
    error OnlyAdminCanUnpause();
    error ChangeNotAuthorized();

    error MarketNotListed();
    error SameMarket();
    error WrongMarketType();
    error PriceError();
    error ComptrollerMismatch();
    error InvalidMarket();
    

    /**
      * @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 Unauthorized();
    error Unsupported();

    error AlreadyInitialized();
    error InitializeExchangeRateInvalid();
    error InitializeSetComptrollerFailed(uint256 errorCode);
    error InitializeSetInterestRateModelFailed(uint256 errorCode);
    error InitializeMarketTypeNotSet();
    error InitializeInvalidMarketType();
    error EnsureNonEmptyAmountTooSmall();

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

    error TransferInFailed();
    error InsufficientBalanceAfterTransfer();
    error TransferOutFailed();

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

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

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

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

    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();

    error SetProtocolSeizeShareAdminCheck();
    error SetProtocolSeizeShareTooHigh();

    error BorrowRateIsAbsurdlyHigh(uint borrowRateMantissa);

    error InvalidComptrollerAddress(address comptrollerAddress);
    error InvalidRateModelAddress(address interestRateModelAddress);

    error Reentry();

    error CannotSweepUnderlying();

    error CollectInterestFailed();
    error CollectInterestNotAllowed();
    error PayInterestNotAllowed();
    error InsufficientBalance();
    error PayInterestError();

    error SenderMismatch();
    error ValueMismatch();

    error PriceError();
}

File 8 of 14 : EIP20Interface.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

/**
 * @title ERC 20 Token Standard Interface
 *  https://eips.ethereum.org/EIPS/eip-20
 */
interface EIP20Interface {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);

    /**
      * @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 `amount` tokens from `msg.sender` to `dst`
      * @param dst The address of the destination account
      * @param amount The number of tokens to transfer
      * @return success Whether or not the transfer succeeded
      */
    function transfer(address dst, uint256 amount) external returns (bool success);

    /**
      * @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 success Whether or not the transfer succeeded
      */
    function transferFrom(address src, address dst, uint256 amount) external returns (bool success);

    /**
      * @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 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 (-1 means infinite)
      */
    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);
}

File 9 of 14 : ExponentialNoError.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

/**
 * @title Exponential module for storing fixed-precision decimals
 * @author Compound
 * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places.
 *         Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is:
 *         `Exp({mantissa: 5100000000000000000})`.
 */
contract ExponentialNoError {
    uint constant expScale = 1e18;
    uint constant doubleScale = 1e36;
    uint constant halfExpScale = expScale/2;
    uint constant mantissaOne = expScale;

    struct Exp {
        uint mantissa;
    }

    struct Double {
        uint mantissa;
    }

    /**
     * @dev Truncates the given exp to a whole number value.
     *      For example, truncate(Exp{mantissa: 15 * expScale}) = 15
     */
    function truncate(Exp memory exp) pure internal returns (uint) {
        // Note: We are not using careful math here as we're performing a division that cannot fail
        return exp.mantissa / expScale;
    }

    /**
     * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer.
     */
    function mul_ScalarTruncate(Exp memory a, uint scalar) pure internal returns (uint) {
        Exp memory product = mul_(a, scalar);
        return truncate(product);
    }

    /**
     * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer.
     */
    function mul_ScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (uint) {
        Exp memory product = mul_(a, scalar);
        return add_(truncate(product), addend);
    }

    /**
     * @dev Checks if first Exp is less than second Exp.
     */
    function lessThanExp(Exp memory left, Exp memory right) pure internal returns (bool) {
        return left.mantissa < right.mantissa;
    }

    /**
     * @dev Checks if left Exp <= right Exp.
     */
    function lessThanOrEqualExp(Exp memory left, Exp memory right) pure internal returns (bool) {
        return left.mantissa <= right.mantissa;
    }

    /**
     * @dev Checks if left Exp > right Exp.
     */
    function greaterThanExp(Exp memory left, Exp memory right) pure internal returns (bool) {
        return left.mantissa > right.mantissa;
    }

    /**
     * @dev returns true if Exp is exactly zero
     */
    function isZeroExp(Exp memory value) pure internal returns (bool) {
        return value.mantissa == 0;
    }

    function safe224(uint n, string memory errorMessage) pure internal returns (uint224) {
        require(n < 2**224, errorMessage);
        return uint224(n);
    }

    function safe32(uint n, string memory errorMessage) pure internal returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function add_(Exp memory a, Exp memory b) pure internal returns (Exp memory) {
        return Exp({mantissa: add_(a.mantissa, b.mantissa)});
    }

    function add_(Double memory a, Double memory b) pure internal returns (Double memory) {
        return Double({mantissa: add_(a.mantissa, b.mantissa)});
    }

    function add_(uint a, uint b) pure internal returns (uint) {
        return a + b;
    }

    function sub_(Exp memory a, Exp memory b) pure internal returns (Exp memory) {
        return Exp({mantissa: sub_(a.mantissa, b.mantissa)});
    }

    function sub_(Double memory a, Double memory b) pure internal returns (Double memory) {
        return Double({mantissa: sub_(a.mantissa, b.mantissa)});
    }

    function sub_(uint a, uint b) pure internal returns (uint) {
        return a - b;
    }

    function mul_(Exp memory a, Exp memory b) pure internal returns (Exp memory) {
        return Exp({mantissa: mul_(a.mantissa, b.mantissa) / expScale});
    }

    function mul_(Exp memory a, uint b) pure internal returns (Exp memory) {
        return Exp({mantissa: mul_(a.mantissa, b)});
    }

    function mul_(uint a, Exp memory b) pure internal returns (uint) {
        return mul_(a, b.mantissa) / expScale;
    }

    function mul_(Double memory a, Double memory b) pure internal returns (Double memory) {
        return Double({mantissa: mul_(a.mantissa, b.mantissa) / doubleScale});
    }

    function mul_(Double memory a, uint b) pure internal returns (Double memory) {
        return Double({mantissa: mul_(a.mantissa, b)});
    }

    function mul_(uint a, Double memory b) pure internal returns (uint) {
        return mul_(a, b.mantissa) / doubleScale;
    }

    function mul_(uint a, uint b) pure internal returns (uint) {
        return a * b;
    }

    function div_(Exp memory a, Exp memory b) pure internal returns (Exp memory) {
        return Exp({mantissa: div_(mul_(a.mantissa, expScale), b.mantissa)});
    }

    function div_(Exp memory a, uint b) pure internal returns (Exp memory) {
        return Exp({mantissa: div_(a.mantissa, b)});
    }

    function div_(uint a, Exp memory b) pure internal returns (uint) {
        return div_(mul_(a, expScale), b.mantissa);
    }

    function div_(Double memory a, Double memory b) pure internal returns (Double memory) {
        return Double({mantissa: div_(mul_(a.mantissa, doubleScale), b.mantissa)});
    }

    function div_(Double memory a, uint b) pure internal returns (Double memory) {
        return Double({mantissa: div_(a.mantissa, b)});
    }

    function div_(uint a, Double memory b) pure internal returns (uint) {
        return div_(mul_(a, doubleScale), b.mantissa);
    }

    function div_(uint a, uint b) pure internal returns (uint) {
        return a / b;
    }

    function fraction(uint a, uint b) pure internal returns (Double memory) {
        return Double({mantissa: div_(mul_(a, doubleScale), b)});
    }
}

File 10 of 14 : PriceOracle.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

import "CToken.sol";

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

    /**
      * @notice Get the underlying price of a cToken asset
      * @param cToken The cToken to get the underlying price of
      * @return The underlying asset price mantissa (scaled by 1e18).
      *  Zero means the price is unavailable.
      */
    function getUnderlyingPrice(CToken cToken) virtual external view returns (uint);
}

File 11 of 14 : ComptrollerStorage.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

import "CToken.sol";
import "CErc20InterestMarketInterfaces.sol";
import "PriceOracle.sol";

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

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

    /**
    * @notice Active brains of Unitroller
    */
    address public comptrollerImplementation;

    /**
    * @notice Pending brains of Unitroller
    */
    address public pendingComptrollerImplementation;
}

contract ComptrollerV1Storage is UnitrollerAdminStorage {

    /**
     * @notice Oracle which gives the price of any given asset
     */
    PriceOracle public oracle;

    /**
     * @notice Multiplier used to calculate the maximum repayAmount when liquidating a borrow
     */
    uint public closeFactorMantissa;

    /**
     * @notice Multiplier representing the discount on collateral that a liquidator receives
     */
    uint public liquidationIncentiveMantissa;

    /**
     * @notice Max number of assets a single account can participate in (borrow or use as collateral)
     */
    uint public maxAssets;

    /**
     * @notice Per-account mapping of "assets you are in", capped by maxAssets
     */
    mapping(address => CToken[]) public accountAssets;

}

contract ComptrollerV2Storage is ComptrollerV1Storage {
    struct Market {
        // Whether or not this market is listed
        bool isListed;

        //  Multiplier representing the most one can borrow against their collateral in this market.
        //  For instance, 0.9 to allow borrowing 90% of collateral value.
        //  Must be between 0 and 1, and stored as a mantissa.
        uint collateralFactorMantissa;

        // Per-market mapping of "accounts in this asset"
        mapping(address => bool) accountMembership;

        // Whether or not this market receives COMP
        bool isComped;
    }

    /**
     * @notice Official mapping of cTokens -> Market metadata
     * @dev Used e.g. to determine if a market is supported
     */
    mapping(address => Market) public markets;


    /**
     * @notice The Pause Guardian can pause certain actions as a safety mechanism.
     *  Actions which allow users to remove their own assets cannot be paused.
     *  Liquidation / seizing / transfer can only be paused globally, not by market.
     */
    address public pauseGuardian;
    bool public _mintGuardianPaused;
    bool public _borrowGuardianPaused;
    bool public transferGuardianPaused;
    bool public seizeGuardianPaused;
    bool public collectInterestGuardianPaused;
    bool public payInterestGuardianPaused;
    mapping(address => bool) public mintGuardianPaused;
    mapping(address => bool) public borrowGuardianPaused;
}

contract ComptrollerV3Storage is ComptrollerV2Storage {
    struct CompMarketState {
        // The market's last updated compBorrowIndex or compSupplyIndex
        uint224 index;

        // The block number the index was last updated at
        uint32 block;
    }

    /// @notice A list of all markets
    CToken[] public allMarkets;

    /// @notice The rate at which the flywheel distributes COMP, per block
    uint public compRate;

    /// @notice The portion of compRate that each market currently receives
    mapping(address => uint) public compSpeeds;

    /// @notice The COMP market supply state for each market
    mapping(address => CompMarketState) public compSupplyState;

    /// @notice The COMP market borrow state for each market
    mapping(address => CompMarketState) public compBorrowState;

    /// @notice The COMP borrow index for each market for each supplier as of the last time they accrued COMP
    mapping(address => mapping(address => uint)) public compSupplierIndex;

    /// @notice The COMP borrow index for each market for each borrower as of the last time they accrued COMP
    mapping(address => mapping(address => uint)) public compBorrowerIndex;

    /// @notice The COMP accrued but not yet transferred to each user
    mapping(address => uint) public compAccrued;
}

contract ComptrollerV4Storage is ComptrollerV3Storage {
    // @notice The borrowCapGuardian can set borrowCaps to any number for any market. Lowering the borrow cap could disable borrowing on the given market.
    address public borrowCapGuardian;

    // @notice Borrow caps enforced by borrowAllowed for each cToken address. Defaults to zero which corresponds to unlimited borrowing.
    mapping(address => uint) public borrowCaps;
}

contract ComptrollerV5Storage is ComptrollerV4Storage {
    /// @notice The portion of COMP that each contributor receives per block
    mapping(address => uint) public compContributorSpeeds;

    /// @notice Last block at which a contributor's COMP rewards have been allocated
    mapping(address => uint) public lastContributorBlock;
}

contract ComptrollerV6Storage is ComptrollerV5Storage {
    /// @notice The rate at which comp is distributed to the corresponding borrow market (per block)
    mapping(address => uint) public compBorrowSpeeds;

    /// @notice The rate at which comp is distributed to the corresponding supply market (per block)
    mapping(address => uint) public compSupplySpeeds;
}

contract ComptrollerV7Storage is ComptrollerV6Storage {
    /// @notice Flag indicating whether the function to fix COMP accruals has been executed (RE: proposal 62 bug)
    bool public proposal65FixExecuted;

    /// @notice Accounting storage mapping account addresses to how much COMP they owe the protocol.
    mapping(address => uint) public compReceivable;
}

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

    mapping(address => bool) public whitelist;

    address internal _interestMarket;

    /**
     * @notice Per-account mapping of "ERC721 assets you are in", capped by maxAssets
     */
    mapping(address => CToken[]) public accountAssetsErc721;

    /*** Reentrancy Guard ***/

    error Reentry();

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     */
    modifier nonReentrant() {
        if (!_notEntered) {
            revert Reentry();
        }
        _notEntered = false;
        _;
        _notEntered = true; // get a gas-refund post-Istanbul
    }
}

File 12 of 14 : CErc20InterestMarketInterfaces.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

import "CTokenInterfaces.sol";


contract CErc20InterestMarketStorage {

    uint public totalVirtual;
}

abstract contract CErc20InterestMarketInterface is CErc20Interface, CErc20InterestMarketStorage {

    /**
     * @notice Collect the interest from supplied ERC721 tokens for the lender and adds them to his supply.
     *         Must be called by the supply market.
     * @param lender The address for which the interest should be collected
     * @param interestTokens The amount of market tokens to claim
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function collectInterest(address lender, uint interestTokens) virtual external returns (uint);

    /**
     * @notice Pay the interest for borrowed ERC721 tokens.
     *         Must be called by the borrow market.
     * @param payer The address that pays the interest
     * @param interestTokens The amount of market tokens to pay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function payInterest(address payer, uint interestTokens) virtual external returns (uint);

    /**
     * @notice Sender claims interest from NFT markets then 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
     * @param cTokens The list of cToken addresses to redeem interest from.
     *                Only possible for cErc721 markets.
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemWithClaim(uint redeemTokens, address[] memory cTokens) virtual external returns (uint);

    /**
     * @notice Sender claims interest from NFT markets then 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
     * @param cTokens The list of cToken addresses to redeem interest from.
     *                Only possible for cErc721 markets.
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemUnderlyingWithClaim(uint redeemAmount, address[] memory cTokens) virtual external returns (uint);
}

File 13 of 14 : Unitroller.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

import "ErrorReporter.sol";
import "ComptrollerStorage.sol";

/**
 * @title ComptrollerCore
 * @dev Storage for the comptroller is at this address, while execution is delegated to the `comptrollerImplementation`.
 * CTokens should reference this contract as their comptroller.
 */
contract Unitroller is UnitrollerAdminStorage, ComptrollerErrorReporter {

    /**
      * @notice Emitted when pendingComptrollerImplementation is changed
      */
    event NewPendingImplementation(address oldPendingImplementation, address newPendingImplementation);

    /**
      * @notice Emitted when pendingComptrollerImplementation is accepted, which means comptroller implementation is updated
      */
    event NewImplementation(address oldImplementation, address newImplementation);

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

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

    constructor() public {
        // Set admin to caller
        admin = msg.sender;
    }

    /*** Admin Functions ***/

    function initialize() public {
        if (msg.sender != address(this) && msg.sender != admin) {
            revert Unauthorized();
        }

        (bool success,) = comptrollerImplementation.delegatecall(abi.encodeWithSignature("initialize()"));
        if (!success) {
            revert InitializationFailed();
        }
    }

    function _setPendingImplementation(address newPendingImplementation) public returns (uint) {

        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_PENDING_IMPLEMENTATION_OWNER_CHECK);
        }

        address oldPendingImplementation = pendingComptrollerImplementation;

        pendingComptrollerImplementation = newPendingImplementation;

        emit NewPendingImplementation(oldPendingImplementation, pendingComptrollerImplementation);

        return uint(Error.NO_ERROR);
    }

    /**
    * @notice Accepts new implementation of comptroller. msg.sender must be pendingImplementation
    * @dev Admin function for new implementation to accept it's role as implementation
    * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
    */
    function _acceptImplementation() public returns (uint) {
        // Check caller is pendingImplementation and pendingImplementation ≠ address(0)
        if (msg.sender != pendingComptrollerImplementation || pendingComptrollerImplementation == address(0)) {
            return fail(Error.UNAUTHORIZED, FailureInfo.ACCEPT_PENDING_IMPLEMENTATION_ADDRESS_CHECK);
        }

        // Save current values for inclusion in log
        address oldImplementation = comptrollerImplementation;
        address oldPendingImplementation = pendingComptrollerImplementation;

        comptrollerImplementation = pendingComptrollerImplementation;

        pendingComptrollerImplementation = address(0);

        // calls externally to change context to unitroller
        Unitroller(this).initialize();

        emit NewImplementation(oldImplementation, comptrollerImplementation);
        emit NewPendingImplementation(oldPendingImplementation, pendingComptrollerImplementation);

        return uint(Error.NO_ERROR);
    }

    /**
      * @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 newPendingAdmin) public returns (uint) {
        // Check caller = admin
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_PENDING_ADMIN_OWNER_CHECK);
        }

        // Save current value, if any, for inclusion in log
        address oldPendingAdmin = pendingAdmin;

        // Store pendingAdmin with value newPendingAdmin
        pendingAdmin = newPendingAdmin;

        // Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin)
        emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin);

        return uint(Error.NO_ERROR);
    }

    /**
      * @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() public returns (uint) {
        // Check caller is pendingAdmin and pendingAdmin ≠ address(0)
        if (msg.sender != pendingAdmin || msg.sender == address(0)) {
            return fail(Error.UNAUTHORIZED, FailureInfo.ACCEPT_ADMIN_PENDING_ADMIN_CHECK);
        }

        // Save current values for inclusion in log
        address oldAdmin = admin;
        address oldPendingAdmin = pendingAdmin;

        // Store admin with value pendingAdmin
        admin = pendingAdmin;

        // Clear the pending value
        pendingAdmin = address(0);

        emit NewAdmin(oldAdmin, admin);
        emit NewPendingAdmin(oldPendingAdmin, pendingAdmin);

        return uint(Error.NO_ERROR);
    }

    /**
     * @dev Delegates execution to an implementation contract.
     * It returns to the external caller whatever the implementation returns
     * or forwards reverts.
     */
    fallback() external payable {
        // delegate all other functions to current implementation
        (bool success, ) = comptrollerImplementation.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 14 of 14 : CErc721TokenInterfaces.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

import "CErc20InterestMarketInterfaces.sol";

contract CErc721Storage {

    /**
     * @notice NFTs supplied
     */
    uint[] public heldNFTs;

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

    struct SupplyInterestSnapshot {
        uint interestIndex;
        uint interestAccrued;
    }
    mapping(address => SupplyInterestSnapshot) internal supplyInterest;
}

abstract contract CErc721Interface is CErc20Interface, CErc721Storage {

    /**
     * @notice Event emitted when interest tokens are redeemed
     */
    event RedeemInterest(address redeemer, uint redeemInterest, uint redeemTokens);

    /**
     * @notice Not supported. Use mint(uint[]) instead.
     */
    function mint(uint) override external returns (uint) {
        revert("unsupported");
    }
    /**
     * @notice Sender supplies assets into the market and receives cTokens in exchange
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param nftIds The NFT IDs to supply
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function mint(uint[] memory nftIds) virtual external returns (uint);

    /**
     * @notice Redeems the interest accrued from the supplied assets. Owed interest will also be paid from this amount.
     * @param redeemer The address to redeem the interest for
     *                 If the caller is not the comptroller the sender is the redeemer.
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemInterest(address redeemer) virtual external returns (uint);

    /**
     * @notice Redeems the interest accrued from the supplied assets. Owed interest will also be paid from this amount.
     * @param redeemer The address to redeem the interest for
     *                 Only the comptroller can call.
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _redeemInterestForLiquidation(address redeemer) virtual external returns (uint);

    /**
     * @notice Not supported. Use repayBorrow(uint[], uint) instead.
     */
    function repayBorrow(uint) override external returns (uint) {
        revert("unsupported");
    }
    /**
     * @notice Sender repays their own borrow
     * @param nftIds The NFT IDs to be used for the repayment
     * @param repayInterest The min amount of interest to be repaid in interest market units
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrow(uint[] memory nftIds, uint repayInterest) virtual external returns (uint);

    /**
     * @notice Not supported. Use repayBorrowBehalf(address, uint[], uint) instead.
     */
    function repayBorrowBehalf(address, uint) override external returns (uint) {
        revert("unsupported");
    }
    /**
     * @notice Repays a loan on behalf of another user
     * @param borrower The account with the debt being payed off
     * @param nftIds The NFT IDs to be used for the repayment
     * @param repayInterest The min amount of interest to be repaid in interest market units
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowBehalf(address borrower, uint[] memory nftIds, uint repayInterest) virtual external returns (uint);

    /**
     * @notice Not supported.
     */
    function _addReserves(uint addAmount) override external returns (uint) {
        revert("unsupported");
    }

    /**
     * @notice Not supported. Use _liquidateBorrow(address, address, uint[]) instead.
     */
    function _liquidateBorrow(address liquidator, address borrower, uint repayAmount) override external returns (uint) {
        revert("unsupported");
    }
    /**
     * @notice The liquidator liquidates the borrowers collateral.
     *         This function can only be called by the Comptroller.
     * @param liquidator The liquidator who called Comptroller::batchLiquidateBorrow
     * @param borrower The borrower of this cToken to be liquidated
     * @param nftIds The NFT IDs of the underlying borrowed asset to repay
     * @return uint The amount of the underlying borrowed asset that was actually repaid
     */
    function _liquidateBorrow(address liquidator, address borrower, uint[] memory nftIds) virtual external returns (uint);

    event Mint(address minter, uint mintAmount, uint mintTokens, uint[] nftIds);
    event Redeem(address redeemer, uint redeemAmount, uint redeemTokens, uint[] nftIds);
    event Borrow(address borrower, uint[] nftIds, uint accountBorrows, uint totalBorrows);
    event RepayBorrow(address payer, address borrower, uint[] nftIds, uint repayInterest, uint accountBorrows, uint totalBorrows);
    event LiquidateBorrow(address liquidator, address borrower, uint[] nftIds, uint repayInterest);
}

Settings
{
  "evmVersion": "shanghai",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "libraries": {
    "Comptroller.sol": {}
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BorrowCapReached","type":"error"},{"inputs":[],"name":"BorrowPaused","type":"error"},{"inputs":[],"name":"ChangeNotAuthorized","type":"error"},{"inputs":[],"name":"CollectInterestPaused","type":"error"},{"inputs":[],"name":"ComptrollerMismatch","type":"error"},{"inputs":[],"name":"ExcessRefundFailed","type":"error"},{"inputs":[{"internalType":"uint256","name":"errorCode","type":"uint256"}],"name":"GetAccountSnapshotFailed","type":"error"},{"inputs":[],"name":"InitializationFailed","type":"error"},{"inputs":[{"internalType":"uint256","name":"errorCode","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"InsufficientShortfall","type":"error"},{"inputs":[],"name":"InvalidInput","type":"error"},{"inputs":[],"name":"InvalidMarket","type":"error"},{"inputs":[],"name":"InvalidTopUpLimit","type":"error"},{"inputs":[],"name":"LiquidateError","type":"error"},{"inputs":[{"internalType":"uint256","name":"minSeizedValue","type":"uint256"},{"internalType":"uint256","name":"liquidatedValueTotal","type":"uint256"}],"name":"LiquidateSeizeBellowMinValue","type":"error"},{"inputs":[],"name":"LiquidateSeizeTooLittle","type":"error"},{"inputs":[],"name":"LiquidateSeizeTooMuch","type":"error"},{"inputs":[],"name":"MarketAlreadyAdded","type":"error"},{"inputs":[],"name":"MarketNotListed","type":"error"},{"inputs":[],"name":"MintPaused","type":"error"},{"inputs":[],"name":"OnlyAdminCanUnpause","type":"error"},{"inputs":[],"name":"PayInterestPaused","type":"error"},{"inputs":[],"name":"PriceError","type":"error"},{"inputs":[],"name":"Reentry","type":"error"},{"inputs":[],"name":"SameMarket","type":"error"},{"inputs":[],"name":"SeizeFailed","type":"error"},{"inputs":[],"name":"SeizePaused","type":"error"},{"inputs":[],"name":"TopUpFailed","type":"error"},{"inputs":[],"name":"TopUpLimitExceeded","type":"error"},{"inputs":[],"name":"TopUpZero","type":"error"},{"inputs":[],"name":"TransferPaused","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"WrongMarketType","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"action","type":"string"},{"indexed":false,"internalType":"bool","name":"pauseState","type":"bool"}],"name":"ActionPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract CToken","name":"cToken","type":"address"},{"indexed":false,"internalType":"string","name":"action","type":"string"},{"indexed":false,"internalType":"bool","name":"pauseState","type":"bool"}],"name":"ActionPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldCompAccrued","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCompAccrued","type":"uint256"}],"name":"CompAccruedAdjusted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CompGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldCompReceivable","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCompReceivable","type":"uint256"}],"name":"CompReceivableUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"error","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"info","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"detail","type":"uint256"}],"name":"Failure","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"address","name":"cTokenInterestMarket","type":"address"},{"indexed":false,"internalType":"address","name":"cTokenCollateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"topUpAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seizeAmount","type":"uint256"}],"name":"InterestShortfallTopUp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidatedValueTotal","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"cTokenCollaterals","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"seizeTokensList","type":"uint256[]"}],"name":"LiquidateBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract CToken","name":"cToken","type":"address"},{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"MarketEntered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract CToken","name":"cToken","type":"address"},{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"MarketExited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract CToken","name":"cToken","type":"address"}],"name":"MarketListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract CToken","name":"cToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"newBorrowCap","type":"uint256"}],"name":"NewBorrowCap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldBorrowCapGuardian","type":"address"},{"indexed":false,"internalType":"address","name":"newBorrowCapGuardian","type":"address"}],"name":"NewBorrowCapGuardian","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract CToken","name":"cToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldCollateralFactorMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCollateralFactorMantissa","type":"uint256"}],"name":"NewCollateralFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldLiquidationIncentiveMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLiquidationIncentiveMantissa","type":"uint256"}],"name":"NewLiquidationIncentive","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPauseGuardian","type":"address"},{"indexed":false,"internalType":"address","name":"newPauseGuardian","type":"address"}],"name":"NewPauseGuardian","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract PriceOracle","name":"oldPriceOracle","type":"address"},{"indexed":false,"internalType":"contract PriceOracle","name":"newPriceOracle","type":"address"}],"name":"NewPriceOracle","type":"event"},{"inputs":[{"internalType":"contract Unitroller","name":"unitroller","type":"address"}],"name":"_become","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_borrowGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"msgSender","type":"address"}],"name":"_checkEoaOrWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newBorrowCapGuardian","type":"address"}],"name":"_setBorrowCapGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract CToken","name":"cToken","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"_setBorrowPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract CToken","name":"cToken","type":"address"},{"internalType":"uint256","name":"newCollateralFactorMantissa","type":"uint256"}],"name":"_setCollateralFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"_setCollectInterestPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLiquidationIncentiveMantissa","type":"uint256"}],"name":"_setLiquidationIncentive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract CToken[]","name":"cTokens","type":"address[]"},{"internalType":"uint256[]","name":"newBorrowCaps","type":"uint256[]"}],"name":"_setMarketBorrowCaps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract CToken","name":"cToken","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"_setMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPauseGuardian","type":"address"}],"name":"_setPauseGuardian","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"_setPayInterestPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract PriceOracle","name":"newOracle","type":"address"}],"name":"_setPriceOracle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"_setSeizePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"_setTransferPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"isTrue","type":"bool"}],"name":"_setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract CToken","name":"cToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"_supportMarket","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"interestMarket_","type":"address"}],"name":"_updateInterestMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"accountAssets","outputs":[{"internalType":"contract CToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"accountAssetsErc721","outputs":[{"internalType":"contract CToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allMarkets","outputs":[{"internalType":"contract CToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"autoEnterMarkets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"autoExitMarkets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"components":[{"internalType":"address","name":"cToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"nftIds","type":"uint256[]"}],"internalType":"struct ComptrollerInterface.Liquidatables[]","name":"liquidatables","type":"tuple[]"},{"internalType":"address[]","name":"cTokenCollaterals","type":"address[]"},{"internalType":"uint256","name":"minSeizedValue","type":"uint256"}],"name":"batchLiquidateBorrow","outputs":[{"internalType":"uint256[][2]","name":"results","type":"uint256[][2]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"cToken","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrowAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"borrowCapGuardian","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"borrowCaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"borrowGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"contract CToken","name":"cToken","type":"address"}],"name":"checkMembership","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"cTokenInterestMarket","type":"address"},{"internalType":"address","name":"cTokenSupplyMarket","type":"address"},{"internalType":"address","name":"lender","type":"address"},{"internalType":"uint256","name":"interestAmount","type":"uint256"}],"name":"collectInterestAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectInterestGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compAccrued","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compBorrowSpeeds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compBorrowState","outputs":[{"internalType":"uint224","name":"index","type":"uint224"},{"internalType":"uint32","name":"block","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"compBorrowerIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compContributorSpeeds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"compInitialIndex","outputs":[{"internalType":"uint224","name":"","type":"uint224"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"compRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compReceivable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compSpeeds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"compSupplierIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compSupplySpeeds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compSupplyState","outputs":[{"internalType":"uint224","name":"index","type":"uint224"},{"internalType":"uint32","name":"block","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"comptrollerImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"cTokens","type":"address[]"}],"name":"enterMarkets","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"cTokenAddress","type":"address"}],"name":"exitMarket","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDebtRatioWhenShortfall","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllMarkets","outputs":[{"internalType":"contract CToken[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"cTokenA","type":"address"},{"internalType":"address","name":"cTokenB","type":"address"}],"name":"getAssetsExchangeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAssetsIn","outputs":[{"internalType":"contract CToken[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"cTokenModify","type":"address"},{"internalType":"uint256","name":"redeemTokens","type":"uint256"},{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"getHypotheticalAccountLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"interestMarket","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isComptroller","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"cToken","type":"address"}],"name":"isListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastContributorBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"cTokenCollateral","type":"address"},{"internalType":"uint256","name":"normedRepayAmount","type":"uint256"}],"name":"liquidateCalculateSeizeTokensNormed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidationIncentiveMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"markets","outputs":[{"internalType":"bool","name":"isListed","type":"bool"},{"internalType":"uint256","name":"collateralFactorMantissa","type":"uint256"},{"internalType":"bool","name":"isComped","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"cToken","type":"address"},{"internalType":"address","name":"minter","type":"address"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"contract PriceOracle","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseGuardian","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"cTokenInterestMarket","type":"address"},{"internalType":"address","name":"cTokenBorrowMarket","type":"address"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"uint256","name":"payTokens","type":"uint256"}],"name":"payInterestAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"payInterestGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingComptrollerImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposal65FixExecuted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lender","type":"address"},{"internalType":"address[]","name":"cTokens","type":"address[]"}],"name":"redeemAllInterest","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"cToken","type":"address"},{"internalType":"address","name":"redeemer","type":"address"},{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeemAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"cToken","type":"address"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrowAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seizeGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"maxTopUpTokens","type":"uint256"},{"internalType":"address","name":"cTokenCollateral","type":"address"}],"name":"topUpInterestShortfall","outputs":[{"internalType":"uint256[2]","name":"","type":"uint256[2]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"cToken","type":"address"},{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"transferTokens","type":"uint256"}],"name":"transferAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

608060405234801561000f575f80fd5b505f80546001600160a01b03191633179055615de1806200002f5f395ff3fe608060405234801561000f575f80fd5b5060043610610484575f3560e01c806387f7630311610258578063c29982381161014b578063e6653f3d116100ca578063ede4edd01161008f578063ede4edd014610c10578063f00a7a9214610c23578063f4a433c014610c30578063f794062e14610c4f578063f851a44014610c7a578063fa71f96814610c8c575f80fd5b8063e6653f3d14610bad578063e875544614610bc1578063e8bc514c14610bca578063eabe7d9114610bea578063ed08b4b614610bfd575f80fd5b8063dcfbc0c711610110578063dcfbc0c714610b39578063debf5a1814610b4c578063e4028eee14610b74578063e4ca78d914610b87578063e61a13ce14610b9a575f80fd5b8063c299823814610ab7578063ca0af04314610aca578063cc7ebdc414610af4578063da3d454c14610b13578063dce1544914610b26575f80fd5b8063aa900754116101d7578063b21be7fd1161019c578063b21be7fd14610a37578063b86d1e7414610a61578063bb82aa5e14610a72578063bdcdc25814610a85578063bea6b8b814610a98575f80fd5b8063aa900754146109df578063abfceffc146109e8578063ac0b0bb714610a08578063aca178a314610a1c578063b0772d0b14610a2f575f80fd5b8063929fe9a11161021d578063929fe9a11461092757806394b2294b14610967578063986ab838146109705780639b19251a1461098f578063a7f0e231146109b1575f80fd5b806387f763031461086457806389cdf2ba146108785780638c57804e1461088b5780638e8f294b146108c25780638ebf636414610914575f80fd5b80634ef4c3e11161037b578063607ef6c1116102fa5780636fb5745c116102bf5780636fb5745c146107e1578063731f0c2b146107f55780637a228c60146108175780637dc0d1d01461082a5780638129fc1c1461083d57806385b7beb814610845575f80fd5b8063607ef6c11461071f5780636a33129d146107325780636aa875b5146107455780636b79c38d146107645780636d154ea5146107bf575f80fd5b806355ee1fe11161034057806355ee1fe1146106c05780635855464a146106d35780635930f632146106e65780635ec88c79146106f95780635f5af1aa1461070c575f80fd5b80634ef4c3e1146106615780634fd42e171461067457806350598ca4146106875780635066cc711461069a57806352d84d1e146106ad575f80fd5b806326782247116104075780633c94786f116103cc5780633c94786f146105f157806342cbb15c146106055780634a5844321461060b5780634ada90af1461062a5780634e79238f14610633575f80fd5b806326782247146105925780632d70db78146105a55780633712e7f2146105b8578063391957d7146105cb5780633bcf7ec1146105de575f80fd5b80631d504dc61161044d5780631d504dc61461050d5780631d7b33d71461052257806321af45691461054157806324008a621461056c57806324a3d6221461057f575f80fd5b80627e3dd2146104885780630e9e1c58146104a5578063174fff36146104b957806318c882a5146104d9578063196c0fda146104ec575b5f80fd5b610490600181565b60405190151581526020015b60405180910390f35b600a5461049090600160c01b900460ff1681565b6104cc6104c7366004615558565b610cac565b60405161049c91906155df565b6104906104e73660046155fe565b610f04565b6104ff6104fa366004615635565b61103b565b60405190815260200161049c565b61052061051b366004615683565b61125c565b005b6104ff610530366004615683565b600f6020525f908152604090205481565b601554610554906001600160a01b031681565b6040516001600160a01b03909116815260200161049c565b6104ff61057a366004615635565b61136e565b600a54610554906001600160a01b031681565b600154610554906001600160a01b031681565b6104906105b336600461569e565b611397565b6104ff6105c63660046156b9565b611474565b6105206105d9366004615683565b611696565b6104906105ec3660046155fe565b611720565b600a5461049090600160a01b900460ff1681565b436104ff565b6104ff610619366004615683565b60166020525f908152604090205481565b6104ff60065481565b6106466106413660046156e3565b61184b565b6040805193845260208401929092529082015260600161049c565b6104ff61066f366004615726565b61188a565b6104ff610682366004615764565b6118f8565b610520610695366004615683565b611960565b6104906106a836600461569e565b611999565b6105546106bb366004615764565b611a70565b6104ff6106ce366004615683565b611a98565b6104906106e1366004615683565b611b10565b6104906106f436600461569e565b611b55565b610646610707366004615683565b611c30565b6104ff61071a366004615683565b611c6c565b61052061072d3660046157c3565b611ce4565b6105206107403660046155fe565b611e4b565b6104ff610753366004615683565b601a6020525f908152604090205481565b61079b610772366004615683565b60106020525f90815260409020546001600160e01b03811690600160e01b900463ffffffff1682565b604080516001600160e01b03909316835263ffffffff90911660208301520161049c565b6104906107cd366004615683565b600c6020525f908152604090205460ff1681565b600a5461049090600160c81b900460ff1681565b610490610803366004615683565b600b6020525f908152604090205460ff1681565b6104ff610825366004615635565b611e9e565b600454610554906001600160a01b031681565b610520612165565b6104ff610853366004615683565b601c6020525f908152604090205481565b600a5461049090600160b01b900460ff1681565b610520610886366004615683565b6121ab565b61079b610899366004615683565b60116020525f90815260409020546001600160e01b03811690600160e01b900463ffffffff1682565b6108f56108d0366004615683565b60096020525f908152604090208054600182015460039092015460ff91821692911683565b604080519315158452602084019290925215159082015260600161049c565b61049061092236600461569e565b6121b6565b61049061093536600461582a565b6001600160a01b038082165f908152600960209081526040808320938616835260029093019052205460ff1692915050565b6104ff60075481565b6104ff61097e366004615683565b60176020525f908152604090205481565b61049061099d366004615683565b601e6020525f908152604090205460ff1681565b6109c76ec097ce7bc90715b34b9f100000000081565b6040516001600160e01b03909116815260200161049c565b6104ff600e5481565b6109fb6109f6366004615683565b61228a565b60405161049c9190615856565b600a5461049090600160b81b900460ff1681565b610554610a2a3660046156b9565b6122fd565b6109fb612330565b6104ff610a4536600461582a565b601260209081525f928352604080842090915290825290205481565b601f546001600160a01b0316610554565b600254610554906001600160a01b031681565b6104ff610a93366004615635565b612390565b6104ff610aa6366004615683565b60186020525f908152604090205481565b6104cc610ac53660046158a2565b6123e3565b6104ff610ad836600461582a565b601360209081525f928352604080842090915290825290205481565b6104ff610b02366004615683565b60146020525f908152604090205481565b6104ff610b21366004615726565b61249e565b610554610b343660046156b9565b612757565b600354610554906001600160a01b031681565b610b5f610b5a366004615683565b612770565b6040805192835260208301919091520161049c565b6104ff610b823660046156b9565b61281a565b6104ff610b953660046156b9565b6129a0565b6104ff610ba836600461582a565b612ade565b600a5461049090600160a81b900460ff1681565b6104ff60055481565b610bdd610bd83660046158d4565b612c01565b60405161049c9190615913565b6104ff610bf8366004615726565b613217565b610520610c0b366004615683565b61323e565b6104ff610c1e366004615683565b613352565b601b546104909060ff1681565b6104ff610c3e366004615683565b60196020525f908152604090205481565b610490610c5d366004615683565b6001600160a01b03165f9081526009602052604090205460ff1690565b5f54610554906001600160a01b031681565b610c9f610c9a366004615943565b61345b565b60405161049c9190615ad3565b601f546060906001600160a01b03163314610cfc576001600160a01b03831633141580610cdf5750610cdd33611b10565b155b15610cfc576040516282b42960e81b815260040160405180910390fd5b81515f8167ffffffffffffffff811115610d1857610d18615452565b604051908082528060200260200182016040528015610d41578160200160208202803683370190505b5090505f5b82811015610ef95760095f868381518110610d6357610d63615b45565b6020908102919091018101516001600160a01b031682528101919091526040015f205460ff16610db35760095b828281518110610da257610da2615b45565b602002602001018181525050610ef1565b6002858281518110610dc757610dc7615b45565b60200260200101516001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e0a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2e9190615b6d565b6003811115610e3f57610e3f615b59565b14610e4b576012610d90565b848181518110610e5d57610e5d615b45565b6020908102919091010151604051630672bd1b60e21b81526001600160a01b038881166004830152909116906319caf46c906024016020604051808303815f875af1158015610eae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed29190615b8b565b828281518110610ee457610ee4615b45565b6020026020010181815250505b600101610d46565b509150505b92915050565b6001600160a01b0382165f9081526009602052604081205460ff16610f3c576040516334b04fe360e11b815260040160405180910390fd5b5f546001600160a01b03163314801590610f615750600a546001600160a01b03163314155b15610f7e576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b03163314801590610f96575081155b15610fb457604051630233af8560e41b815260040160405180910390fd5b6001600160a01b0383165f818152600c6020908152604091829020805460ff19168615159081179091558251938452606091840182905260069184019190915265426f72726f7760d01b6080840152908201527f71aec636243f9709bb0007ae15e9afb8150ab01716d75fd7573be5cc096e03b09060a0015b60405180910390a150919050565b600a545f90600160c01b900460ff161561106857604051635012b8a160e01b815260040160405180910390fd5b601f546001600160a01b0386811691161461109657604051639db8d5b160e01b815260040160405180910390fd5b6001600160a01b0384165f9081526009602052604090205460ff166110ce576040516334b04fe360e11b815260040160405180910390fd5b836001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561110a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061112e9190615ba2565b6001600160a01b0316856001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611173573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111979190615ba2565b6001600160a01b0316146111be57604051630c73eb0560e01b815260040160405180910390fd5b6002846001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112209190615b6d565b600381111561123157611231615b59565b1461124f57604051637affbf7760e11b815260040160405180910390fd5b5f5b90505b949350505050565b806001600160a01b031663f851a4406040518163ffffffff1660e01b8152600401602060405180830381865afa158015611298573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112bc9190615ba2565b6001600160a01b0316336001600160a01b0316146112ec576040516282b42960e81b815260040160405180910390fd5b806001600160a01b031663c1e803346040518163ffffffff1660e01b81526004016020604051808303815f875af1158015611329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061134d9190615b8b565b1561136b57604051630c9be19560e31b815260040160405180910390fd5b50565b6001600160a01b0384165f9081526009602052604081205460ff1661124f5760095b9050611254565b5f80546001600160a01b031633148015906113bd5750600a546001600160a01b03163314155b156113da576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b031633148015906113f2575081155b1561141057604051630233af8560e41b815260040160405180910390fd5b600a8054831515600160b81b0260ff60b81b199091161790556040515f80516020615d8c833981519152906114689084906040808252600590820152645365697a6560d81b6060820152901515602082015260800190565b60405180910390a15090565b5f80546001600160a01b031633146114995761149260016012613f72565b9050610efe565b6001600160a01b0383165f9081526009602052604090205460ff16156114c557611492600a6011613f72565b826001600160a01b031663fe9c44ae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611501573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115259190615bbd565b506001600160a01b0383165f90815260096020526040902060018101541561154f5761154f615bd8565b805460ff199081166001178255600382018054909116905561157084613fe9565b6040516001600160a01b03851681527fcf583bb0c569eb967f806b11601c4cb93c10310485c67add5f8362c2f212321f9060200160405180910390a1821580159061162c57506002846001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116189190615b6d565b600381111561162957611629615b59565b14155b1561168d57604051634d4c750f60e11b8152336004820152602481018490526001600160a01b03851690639a98ea1e906044015f604051808303815f87803b158015611676575f80fd5b505af1158015611688573d5f803e3d5ffd5b505050505b5f949350505050565b5f546001600160a01b031633146116bf576040516282b42960e81b815260040160405180910390fd5b601580546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527feda98690e518e9a05f8ec6837663e188211b2da8f4906648b323f2c1d4434e29910160405180910390a15050565b6001600160a01b0382165f9081526009602052604081205460ff16611758576040516334b04fe360e11b815260040160405180910390fd5b5f546001600160a01b0316331480159061177d5750600a546001600160a01b03163314155b1561179a576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b031633148015906117b2575081155b156117d057604051630233af8560e41b815260040160405180910390fd5b6001600160a01b0383165f818152600b6020908152604091829020805460ff19168615159081179091558251938452606091840182905260049184019190915263135a5b9d60e21b6080840152908201527f71aec636243f9709bb0007ae15e9afb8150ab01716d75fd7573be5cc096e03b09060a00161102d565b5f805f805f61185c8989898961409e565b9150915081601581111561187257611872615b59565b8151602090920151909a919950975095505050505050565b6001600160a01b0383165f908152600b602052604081205460ff16156118c357604051636be9245d60e11b815260040160405180910390fd5b6001600160a01b0384165f9081526009602052604090205460ff166118ec5760095b90506118f1565b5f5b90505b9392505050565b5f80546001600160a01b0316331461191657610efe6001600b613f72565b600680549083905560408051828152602081018590527faeba5a6c40a8ac138134bff1aaa65debf25971188a58804bad717f82f0ec131691015b60405180910390a15f9392505050565b5f61196b33836147d0565b601581111561197c5761197c615b59565b1461136b576040516282b42960e81b815260040160405180910390fd5b5f80546001600160a01b031633148015906119bf5750600a546001600160a01b03163314155b156119dc576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b031633148015906119f4575081155b15611a1257604051630233af8560e41b815260040160405180910390fd5b600a8054831515600160c81b0260ff60c81b199091161790556040515f80516020615d8c833981519152906114689084906040808252600b908201526a14185e525b9d195c995cdd60aa1b6060820152901515602082015260800190565b600d8181548110611a7f575f80fd5b5f918252602090912001546001600160a01b0316905081565b5f80546001600160a01b03163314611ab657610efe60016010613f72565b600480546001600160a01b038481166001600160a01b031983168117909355604080519190921680825260208201939093527fd52b2b9b7e9ee655fcb95d2e5b9e0c9f69e7ef2b8e9d2d0ea78402d576d22e229101611950565b6001600160a01b0381165f908152601e602052604081205460ff1615611b3857506001919050565b326001600160a01b03831614611b4f57505f919050565b503b1590565b5f80546001600160a01b03163314801590611b7b5750600a546001600160a01b03163314155b15611b98576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b03163314801590611bb0575081155b15611bce57604051630233af8560e41b815260040160405180910390fd5b600a8054831515600160c01b0260ff60c01b199091161790556040515f80516020615d8c833981519152906114689084906040808252600f908201526e10dbdb1b1958dd125b9d195c995cdd608a1b6060820152901515602082015260800190565b5f805f805f611c41865f805f61409e565b91509150816015811115611c5757611c57615b59565b81516020909201519097919650945092505050565b5f80546001600160a01b03163314611c8a57610efe60016013613f72565b600a80546001600160a01b038481166001600160a01b031983168117909355604080519190921680825260208201939093527f0613b6ee6a04f0d09f390e4d9318894b9f6ac7fd83897cd8d18896ba579c401e9101611950565b5f546001600160a01b03163314801590611d0957506015546001600160a01b03163314155b15611d26576040516282b42960e81b815260040160405180910390fd5b8281811580611d355750808214155b15611d535760405163b4fa3fb360e01b815260040160405180910390fd5b5f5b82811015611e4257848482818110611d6f57611d6f615b45565b9050602002013560165f898985818110611d8b57611d8b615b45565b9050602002016020810190611da09190615683565b6001600160a01b0316815260208101919091526040015f2055868682818110611dcb57611dcb615b45565b9050602002016020810190611de09190615683565b6001600160a01b03167f6f1951b2aad10f3fc81b86d91105b413a5b3f847a34bbc5ce1904201b14438f6868684818110611e1c57611e1c615b45565b90506020020135604051611e3291815260200190565b60405180910390a2600101611d55565b50505050505050565b5f546001600160a01b03163314611e74576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03919091165f908152601e60205260409020805460ff1916911515919091179055565b600a545f90600160c81b900460ff1615611ecb576040516339d866b360e21b815260040160405180910390fd5b601f546001600160a01b03868116911614611ef957604051639db8d5b160e01b815260040160405180910390fd5b6001600160a01b0384165f9081526009602052604090205460ff16611f31576040516334b04fe360e11b815260040160405180910390fd5b836001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f919190615ba2565b6001600160a01b0316856001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fd6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ffa9190615ba2565b6001600160a01b03161461202157604051630c73eb0560e01b815260040160405180910390fd5b6002846001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa15801561205f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120839190615b6d565b600381111561209457612094615b59565b146120b257604051637affbf7760e11b815260040160405180910390fd5b6001600160a01b038086165f908152600960209081526040808320938716835260029093019052205460ff166120e8575f611390565b5f806120f68588865f61409e565b90925090505f82601581111561210e5761210e615b59565b0361212e576020810151156121295760045b92505050611254565b612159565b601382601581111561214257612142615b59565b146121595781601581111561212057612120615b59565b5f979650505050505050565b33301480159061217f57505f546001600160a01b03163314155b1561219c576040516282b42960e81b815260040160405180910390fd5b601d805460ff19166001179055565b5f61196b338361493e565b5f80546001600160a01b031633148015906121dc5750600a546001600160a01b03163314155b156121f9576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b03163314801590612211575081155b1561222f57604051630233af8560e41b815260040160405180910390fd5b600a8054831515600160b01b0260ff60b01b199091161790556040515f80516020615d8c833981519152906114689084906040808252600890820152672a3930b739b332b960c11b6060820152901515602082015260800190565b6001600160a01b0381165f9081526008602090815260408083208054825181850281018501909352808352606094938301828280156122f057602002820191905f5260205f20905b81546001600160a01b031681526001909101906020018083116122d2575b5093979650505050505050565b60208052815f5260405f208181548110612315575f80fd5b5f918252602090912001546001600160a01b03169150829050565b6060600d80548060200260200160405190810160405280929190818152602001828054801561238657602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311612368575b5050505050905090565b600a545f90600160b01b900460ff16156123bd5760405163cd1fda9f60e01b815260040160405180910390fd5b5f6123c9868685614add565b905080156123d8579050611254565b5f9695505050505050565b80516060905f8167ffffffffffffffff81111561240257612402615452565b60405190808252806020026020018201604052801561242b578160200160208202803683370190505b5090505f5b82811015612496575f85828151811061244b5761244b615b45565b6020026020010151905061245f813361493e565b601581111561247057612470615b59565b83838151811061248257612482615b45565b602090810291909101015250600101612430565b509392505050565b6001600160a01b0383165f908152600c602052604081205460ff16156124d75760405163095865a360e11b815260040160405180910390fd5b6001600160a01b0384165f9081526009602052604090205460ff166124fd5760096118e5565b6001600160a01b038085165f9081526009602090815260408083209387168352600290930190529081205460ff166125cd57336001600160a01b03861614612557576040516282b42960e81b815260040160405180910390fd5b612561338561493e565b90505f81601581111561257657612576615b59565b146125955780601581111561258d5761258d615b59565b9150506118f1565b6001600160a01b038086165f908152600960209081526040808320938816835260029093019052205460ff166125cd576125cd615bd8565b6004805460405163fc57d4df60e01b81526001600160a01b038881169382019390935291169063fc57d4df90602401602060405180830381865afa158015612617573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061263b9190615b8b565b5f0361264857600d61258d565b6001600160a01b0385165f9081526016602052604090205480156126f9575f866001600160a01b03166347bd37186040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126c79190615b8b565b90505f6126d48287614b90565b90508281106126f6576040516353977d1f60e01b815260040160405180910390fd5b50505b6127016152f8565b61270d86885f8861409e565b90935090505f83601581111561272557612725615b59565b146127465782601581111561273c5761273c615b59565b93505050506118f1565b60208101511561215957600461273c565b6008602052815f5260405f208181548110612315575f80fd5b5f805f80612780855f805f61409e565b602081015191935091505f036127ad578160158111156127a2576127a2615b59565b955f95509350505050565b60408101515f036127d6578160158111156127ca576127ca615b59565b955f1995509350505050565b8160158111156127e8576127e8615b59565b6040820151606083015161280590670de0b6b3a764000090615c00565b61280f9190615c2b565b935093505050915091565b5f80546001600160a01b031633146128385761149260016006613f72565b6001600160a01b0383165f908152600960205260409020805460ff1661286c5761286460096007613f72565b915050610efe565b60408051602080820183528582528251908101909252670c7d713b49da000082529061289a81835190511090565b156128b5576128ab60066008613f72565b9350505050610efe565b841580159061292f57506004805460405163fc57d4df60e01b81526001600160a01b038981169382019390935291169063fc57d4df90602401602060405180830381865afa158015612909573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061292d9190615b8b565b155b15612940576128ab600d6009613f72565b60018301805490869055604080516001600160a01b0389168152602081018390529081018790527f70483e6592cd5182d45ac970e05bc62cdcc90e9d8ef2c2dbe686cf383bcd7fc59060600160405180910390a15f979650505050505050565b6004805460405163fc57d4df60e01b81526001600160a01b03858116938201939093525f928392169063fc57d4df90602401602060405180830381865afa1580156129ed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a119190615b8b565b9050805f03612a33576040516348fa9b2b60e11b815260040160405180910390fd5b5f846001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a949190615b8b565b90505f670de0b6b3a764000085600654612aae9190615c00565b612ab89190615c00565b90505f612ac58385615c00565b90505f612ad28284615c2b565b98975050505050505050565b6004805460405163fc57d4df60e01b81526001600160a01b03858116938201939093525f92909116908290829063fc57d4df90602401602060405180830381865afa158015612b2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b539190615b8b565b60405163fc57d4df60e01b81526001600160a01b0386811660048301529192505f9184169063fc57d4df90602401602060405180830381865afa158015612b9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bc09190615b8b565b90508115801590612bd057508015155b612bda575f612bf7565b80612bed670de0b6b3a764000084615c00565b612bf79190615c2b565b9695505050505050565b612c09615316565b612c1233611b10565b612c2e576040516282b42960e81b815260040160405180910390fd5b601d5460ff16612c51576040516325dbe6e160e21b815260040160405180910390fd5b601d805460ff19169055600a54600160b81b900460ff1615612c86576040516307f4077b60e11b815260040160405180910390fd5b825f03612ca65760405163017a1def60e71b815260040160405180910390fd5b601f546040805163a6afed9560e01b815290516001600160a01b0390921691829163a6afed9591600480830192602092919082900301815f875af1158015612cf0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d149190615b8b565b506002836001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d53573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d779190615b6d565b6003811115612d8857612d88615b59565b14612df057826001600160a01b031663a6afed956040518163ffffffff1660e01b81526004016020604051808303815f875af1158015612dca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dee9190615b8b565b505b5f5b6001600160a01b0386165f908152602080526040902054811015612eb6576001600160a01b0386165f9081526020805260409020805482908110612e3857612e38615b45565b5f918252602090912001546040516339a0487760e11b81526001600160a01b0388811660048301529091169063734090ee906024016020604051808303815f875af1158015612e89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ead9190615b8b565b50600101612df2565b505f80612ec287611c30565b91935090915050601382141580612ed7575080155b15612f04576040516378eef05960e01b815260048101839052602481018290526044015b60405180910390fd5b846001600160a01b0316836001600160a01b031603612f365760405163cbcf6c8760e01b815260040160405180910390fd5b306001600160a01b0316836001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fa09190615ba2565b6001600160a01b031614612fc757604051630c73eb0560e01b815260040160405180910390fd5b6001600160a01b0385165f9081526009602052604090205460ff16612fff576040516334b04fe360e11b815260040160405180910390fd5b606461300c826069615c00565b6130169190615c2b565b90505f806130268984878a614b9b565b915091508188101561304b5760405163e13e22fb60e01b815260040160405180910390fd5b8115801561305857508015155b1561307657604051635c40c59560e01b815260040160405180910390fd5b604051632e85fb4160e01b815281906001600160a01b03891690632e85fb41906130a89033908e908690600401615c3e565b6020604051808303815f875af11580156130c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130e89190615b8b565b146131065760405163ae1313a160e01b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b038616906323b872dd906131369033908d908790600401615c3e565b6020604051808303815f875af1158015613152573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131769190615bbd565b613193576040516335207f1b60e21b815260040160405180910390fd5b604080516001600160a01b038b811682528781166020830152891681830152606081018490526080810183905290517f3abf2bf49c89fa908baced07de549f91502a77cf395abef774f3ea1705b8c5c19181900360a00190a16040805180820190915291825260208201529350505050601d805460ff191660011790559392505050565b5f80613224858585614add565b905080156132335790506118f1565b5f5b95945050505050565b5f546001600160a01b03163314613267576040516282b42960e81b815260040160405180910390fd5b6001600160a01b0381165f9081526009602052604090205460ff1661329f576040516334b04fe360e11b815260040160405180910390fd5b6003816001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133019190615b6d565b600381111561331257613312615b59565b1461333057604051637affbf7760e11b815260040160405180910390fd5b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b6040516361bfb47160e11b81523360048201525f90829082908190819081906001600160a01b0386169063c37f68e29060240160a060405180830381865afa1580156133a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133c49190615c62565b945050935093509350835f146133f05760405163061f8fdf60e51b815260048101859052602401612efb565b811561340d57613402600c6002613f72565b979650505050505050565b801561341f5761340260146002613f72565b5f61342b883386614add565b9050801561344057612ad2600e600383614f50565b61344a86336147d0565b6015811115612ad257612ad2615b59565b613463615334565b61346c33611b10565b613488576040516282b42960e81b815260040160405180910390fd5b601d5460ff166134ab576040516325dbe6e160e21b815260040160405180910390fd5b601d805460ff19169055600a54600160b81b900460ff16156134e0576040516307f4077b60e11b815260040160405180910390fd5b5f5b84518110156136065760028582815181106134ff576134ff615b45565b60200260200101515f01516001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015613545573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135699190615b6d565b600381111561357a5761357a615b59565b146135fe5784818151811061359157613591615b45565b60200260200101515f01516001600160a01b031663a6afed956040518163ffffffff1660e01b81526004016020604051808303815f875af11580156135d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135fc9190615b8b565b505b6001016134e2565b505f5b835181101561372757600284828151811061362657613626615b45565b60200260200101516001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015613669573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061368d9190615b6d565b600381111561369e5761369e615b59565b1461371f578381815181106136b5576136b5615b45565b60200260200101516001600160a01b031663a6afed956040518163ffffffff1660e01b81526004016020604051808303815f875af11580156136f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061371d9190615b8b565b505b600101613609565b505f5b6001600160a01b0386165f9081526020805260409020548110156137ee576001600160a01b0386165f908152602080526040902080548290811061377057613770615b45565b5f918252602090912001546040516339a0487760e11b81526001600160a01b0388811660048301529091169063734090ee906024016020604051808303815f875af11580156137c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137e59190615b8b565b5060010161372a565b505f806137fa87612770565b90925090508115158061380b575080155b15613833576040516378eef05960e01b81526004810183905260248101829052604401612efb565b855167ffffffffffffffff81111561384d5761384d615452565b604051908082528060200260200182016040528015613876578160200160208202803683370190505b508352845167ffffffffffffffff81111561389357613893615452565b6040519080825280602002602001820160405280156138bc578160200160208202803683370190505b5060208401526004546001600160a01b03165f805b8851811015613be65760095f8a83815181106138ef576138ef615b45565b602090810291909101810151516001600160a01b031682528101919091526040015f205460ff16613933576040516334b04fe360e11b815260040160405180910390fd5b88818151811061394557613945615b45565b6020026020010151602001515f14613a255788818151811061396957613969615b45565b60200260200101515f01516001600160a01b03166319d1b799338c8c858151811061399657613996615b45565b6020026020010151602001516040518463ffffffff1660e01b81526004016139c093929190615c3e565b6020604051808303815f875af11580156139dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a009190615b8b565b8651805183908110613a1457613a14615b45565b602002602001018181525050613aef565b888181518110613a3757613a37615b45565b60200260200101515f01516001600160a01b031663ceed3112338c8c8581518110613a6457613a64615b45565b6020026020010151604001516040518463ffffffff1660e01b8152600401613a8e93929190615c9e565b6020604051808303815f875af1158015613aaa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ace9190615b8b565b8651805183908110613ae257613ae2615b45565b6020026020010181815250505b5f836001600160a01b031663fc57d4df8b8481518110613b1157613b11615b45565b6020908102919091010151516040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015613b5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b839190615b8b565b9050805f03613ba5576040516348fa9b2b60e11b815260040160405180910390fd5b604080516020810190915281815287518051613bdb92919085908110613bcd57613bcd615b45565b602002602001015185614fc7565b9250506001016138d1565b50805f03613c07576040516326a8c97960e11b815260040160405180910390fd5b805f805b895181108015613c1a57508215155b15613cd15760095f8b8381518110613c3457613c34615b45565b6020908102919091018101516001600160a01b031682528101919091526040015f205460ff16613c77576040516334b04fe360e11b815260040160405180910390fd5b5f613c9c8b8381518110613c8d57613c8d615b45565b6020026020010151858f614fe7565b919550935090508089600160200201518381518110613cbd57613cbd615b45565b602090810291909101015250600101613c0b565b508115613cf157604051635565ecc960e11b815260040160405180910390fd5b87613cfc8285615cc9565b1015613d2f5787613d0d8285615cc9565b60405163d44ba27f60e01b815260048101929092526024820152604401612efb565b8015613ecd57601f546040805163bd6d894d60e01b815290516001600160a01b03909216915f91839163bd6d894d91600480820192602092909190829003018187875af1158015613d82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da69190615b8b565b60405163fc57d4df60e01b81526001600160a01b03848116600483015288169063fc57d4df90602401602060405180830381865afa158015613dea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e0e9190615b8b565b613e276ec097ce7bc90715b34b9f100000000086615c00565b613e319190615c2b565b613e3b9190615c2b565b9050816001600160a01b03166323b872dd338f846040518463ffffffff1660e01b8152600401613e6d93929190615c3e565b6020604051808303815f875af1158015613e89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ead9190615bbd565b613eca576040516337ec6a4960e11b815260040160405180910390fd5b50505b505060208501516040517f7f9c2432fb9b0bd460d23bda178f4a153d0f3b5023e8298dabe655864ae8aa6d91613f09918c9185918c9190615cdc565b60405180910390a15f613f1b8a612770565b90955090508415801590613f30575060138514155b80613f3a57508381115b15613f585760405163430ffe6f60e01b815260040160405180910390fd5b5050505050601d805460ff19166001179055949350505050565b5f7f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0836015811115613fa657613fa6615b59565b836013811115613fb857613fb8615b59565b6040805192835260208301919091525f9082015260600160405180910390a18260158111156118f1576118f1615b59565b5f5b600d5481101561404c57816001600160a01b0316600d828154811061401257614012615b45565b5f918252602090912001546001600160a01b03160361404457604051638e3e108160e01b815260040160405180910390fd5b600101613feb565b50600d80546001810182555f919091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0392909216919091179055565b5f6140a76152f8565b6140af61535b565b600454601f546001600160a01b038981165f90815260086020908152604080832080548251818502810185019093528083529396851695909416938693919290919083018282801561412857602002820191905f5260205f20905b81546001600160a01b0316815260019091019060200180831161410a575b505050505090505f5b8151811015614561575f82828151811061414d5761414d615b45565b60209081029190910101516040516361bfb47160e11b81526001600160a01b038f811660048301529192509082169063c37f68e29060240160a060405180830381865afa1580156141a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141c49190615c62565b60c08c015260e08b015260a08a015260808901529550851561421357600f60405180608001604052805f81526020015f81526020015f81526020015f81525098509850505050505050506147c7565b60408051602080820183526001600160a01b038481165f818152600984528590206001015484526101608c01939093528351918201845260e08b015182526101808b0191909152915163fc57d4df60e01b815260048101919091529086169063fc57d4df90602401602060405180830381865afa158015614296573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142ba9190615b8b565b61010088018190525f036142fb57600d60405180608001604052805f81526020015f81526020015f81526020015f81525098509850505050505050506147c7565b604080516020810190915261010088015181526101a088018190526101808801516143259161515f565b6101e0880181905261016088015161433c9161515f565b6101c0880181905260808801518851614356929190614fc7565b87526101a087015160a08801516020890151614373929190614fc7565b876020018181525050806001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143dc9190615b6d565b87610120019060038111156143f3576143f3615b59565b9081600381111561440657614406615b59565b9052506002876101200151600381111561442257614422615b59565b03614445578660c00151876040015161443b9190615cc9565b6040880152614469565b836001600160a01b0316816001600160a01b03160361446957608087015160608801525b8b6001600160a01b0316816001600160a01b03160361455857614496876101c001518c8960200151614fc7565b6020880152600287610120015160038111156144b4576144b4615b59565b036144cd5789156144c85760016101408801525b61453e565b836001600160a01b0316816001600160a01b03160361453e578a87606001511061450b578a87606001516145019190615d51565b606088015261453e565b600460405180608001604052805f81526020015f81526020015f81526020015f81525098509850505050505050506147c7565b614552876101a001518b8960200151614fc7565b60208801525b50600101614131565b505f8086604001515f1415806145865750866101400151801561458657506060870151155b156146a357836001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa1580156145c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145eb9190615b8b565b60405163fc57d4df60e01b81526001600160a01b0386811660048301529193509086169063fc57d4df90602401602060405180830381865afa158015614633573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146579190615b8b565b90506ec097ce7bc90715b34b9f10000000008183896040015161467a9190615c00565b6146849190615c00565b61468e9190615c2b565b876020015161469d9190615cc9565b60208801525b6020870151875111156147a2578660400151876060015110806146d5575086610140015180156146d557506060870151155b1561475757601360405180608001604052805f81526020016ec097ce7bc90715b34b9f100000000084868c606001518d604001516147139190615d51565b61471d9190615c00565b6147279190615c00565b6147319190615c2b565b8152602001895f01518152602001896020015181525098509850505050505050506147c7565b5f604051806080016040528089602001518a5f01516147769190615d51565b81526020015f8152602001895f01518152602001896020015181525098509850505050505050506147c7565b5f60405180608001604052805f8152602001895f01518a602001516147319190615d51565b94509492505050565b6001600160a01b0382165f908152600960205260408120805460ff166147fa576009915050610efe565b6001600160a01b0383165f90815260028201602052604090205460ff16614824575f915050610efe565b6001600160a01b0383165f9081526002820160209081526040808320805460ff191690556008909152902061485990856151a4565b6002846001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015614897573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906148bb9190615b6d565b60038111156148cc576148cc615b59565b036148f1576001600160a01b0383165f90815260208052604090206148f190856151a4565b604080516001600160a01b038087168252851660208201527fe699a64c18b07ac5b7301aa273f36a2287239eb9501d81950672794afba29a0d91015b60405180910390a1505f9392505050565b6001600160a01b0382165f908152600960205260408120805460ff16614968576009915050610efe565b6001600160a01b0383165f90815260028201602052604090205460ff1615614993575f915050610efe565b6001600160a01b038381165f9081526002838101602090815260408084208054600160ff19909116811790915560088352908420805491820181558452922090910180546001600160a01b03191692871692909217909155846001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015614a27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a4b9190615b6d565b6003811115614a5c57614a5c615b59565b03614a9d576001600160a01b038381165f908152602080805260408220805460018101825590835291200180546001600160a01b0319169186169190911790555b604080516001600160a01b038087168252851660208201527f3ab23ab0d51cccc0c3085aec51f99228625aa1a922b3a8ca89a26b0f2027a1a5910161492d565b6001600160a01b0383165f9081526009602052604081205460ff16614b035760096118e5565b6001600160a01b038085165f908152600960209081526040808320938716835260029093019052205460ff16614b39575f6118e5565b5f80614b478587865f61409e565b90925090505f826015811115614b5f57614b5f615b59565b14614b7f57816015811115614b7657614b76615b59565b925050506118f1565b6020810151156123d8576004614b76565b5f6118f18284615cc9565b5f805f846001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa158015614bda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614bfe9190615b8b565b90505f846001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa158015614c3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614c619190615b8b565b6004805460405163fc57d4df60e01b81526001600160a01b038a8116938201939093529293505f9291169063fc57d4df90602401602060405180830381865afa158015614cb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614cd49190615b8b565b6004805460405163fc57d4df60e01b81526001600160a01b038a8116938201939093529293505f9291169063fc57d4df90602401602060405180830381865afa158015614d23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614d479190615b8b565b9050811580614d54575080155b15614d72576040516348fa9b2b60e11b815260040160405180910390fd5b5f670de0b6b3a76400008a600654614d8a9190615c00565b614d949190615c00565b9050614da08483615c00565b614daa9082615c2b565b90505f614db78685615c00565b614dd06ec097ce7bc90715b34b9f10000000008d615c00565b614dda9190615c2b565b90508160028a6001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015614e1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614e3f9190615b6d565b6003811115614e5057614e50615b59565b03614ea5575f614e6f876ec097ce7bc90715b34b9f1000000000615c2b565b9050614e7b8183615d64565b15614ea35780614e8b8184615c2b565b614e96906001615cc9565b614ea09190615c00565b91505b505b6040516370a0823160e01b81526001600160a01b038e811660048301525f91908c16906370a0823190602401602060405180830381865afa158015614eec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614f109190615b8b565b905081811015614f1e578091505b838214614f3d5783614f308385615c00565b614f3a9190615c2b565b92505b50909c909b509950505050505050505050565b5f7f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846015811115614f8457614f84615b59565b846013811115614f9657614f96615b59565b604080519283526020830191909152810184905260600160405180910390a18360158111156118ee576118ee615b59565b5f80614fd385856152b0565b9050613235614fe1826152d6565b84614b90565b5f805f80614ff587876129a0565b6040516370a0823160e01b81526001600160a01b0387811660048301529192505f918916906370a0823190602401602060405180830381865afa15801561503e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906150629190615b8b565b90508181101561507457809250615078565b8192505b604051632e85fb4160e01b81526001600160a01b03891690632e85fb41906150a89033908a908890600401615c3e565b6020604051808303815f875af11580156150c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906150e89190615b8b565b9250825f0361510a5760405163ae1313a160e01b815260040160405180910390fd5b8683831461512a578261511d8583615c00565b6151279190615c2b565b90505b808811156151435761513c8189615d51565b9550615153565b61514d8882615d51565b94505f95505b50505093509350939050565b60408051602081019091525f81526040518060200160405280670de0b6b3a7640000615191865f0151865f01516152ed565b61519b9190615c2b565b90529392505050565b8154805f5b828110156151f657836001600160a01b03168582815481106151cd576151cd615b45565b5f918252602090912001546001600160a01b0316036151ee578091506151f6565b6001016151a9565b5081811061520657615206615bd8565b83615212600184615d51565b8154811061522257615222615b45565b905f5260205f20015f9054906101000a90046001600160a01b031684828154811061524f5761524f615b45565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508380548061528a5761528a615d77565b5f8281526020902081015f1990810180546001600160a01b031916905501905550505050565b60408051602081019091525f8152604051806020016040528061519b855f0151856152ed565b80515f90610efe90670de0b6b3a764000090615c2b565b5f6118f18284615c00565b60405180608001604052806004906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b60405180604001604052806002905b60608152602001906001900390816153435790505090565b6040518061020001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f60038111156153af576153af615b59565b81526020015f151581526020016153d160405180602001604052805f81525090565b81526020016153eb60405180602001604052805f81525090565b815260200161540560405180602001604052805f81525090565b815260200161541f60405180602001604052805f81525090565b815260200161543960405180602001604052805f81525090565b905290565b6001600160a01b038116811461136b575f80fd5b634e487b7160e01b5f52604160045260245ffd5b6040516060810167ffffffffffffffff8111828210171561548957615489615452565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156154b8576154b8615452565b604052919050565b5f67ffffffffffffffff8211156154d9576154d9615452565b5060051b60200190565b5f82601f8301126154f2575f80fd5b81356020615507615502836154c0565b61548f565b8083825260208201915060208460051b870101935086841115615528575f80fd5b602086015b8481101561554d5780356155408161543e565b835291830191830161552d565b509695505050505050565b5f8060408385031215615569575f80fd5b82356155748161543e565b9150602083013567ffffffffffffffff81111561558f575f80fd5b61559b858286016154e3565b9150509250929050565b5f815180845260208085019450602084015f5b838110156155d4578151875295820195908201906001016155b8565b509495945050505050565b602081525f6118f160208301846155a5565b801515811461136b575f80fd5b5f806040838503121561560f575f80fd5b823561561a8161543e565b9150602083013561562a816155f1565b809150509250929050565b5f805f8060808587031215615648575f80fd5b84356156538161543e565b935060208501356156638161543e565b925060408501356156738161543e565b9396929550929360600135925050565b5f60208284031215615693575f80fd5b81356118f18161543e565b5f602082840312156156ae575f80fd5b81356118f1816155f1565b5f80604083850312156156ca575f80fd5b82356156d58161543e565b946020939093013593505050565b5f805f80608085870312156156f6575f80fd5b84356157018161543e565b935060208501356157118161543e565b93969395505050506040820135916060013590565b5f805f60608486031215615738575f80fd5b83356157438161543e565b925060208401356157538161543e565b929592945050506040919091013590565b5f60208284031215615774575f80fd5b5035919050565b5f8083601f84011261578b575f80fd5b50813567ffffffffffffffff8111156157a2575f80fd5b6020830191508360208260051b85010111156157bc575f80fd5b9250929050565b5f805f80604085870312156157d6575f80fd5b843567ffffffffffffffff808211156157ed575f80fd5b6157f98883890161577b565b90965094506020870135915080821115615811575f80fd5b5061581e8782880161577b565b95989497509550505050565b5f806040838503121561583b575f80fd5b82356158468161543e565b9150602083013561562a8161543e565b602080825282518282018190525f9190848201906040850190845b818110156158965783516001600160a01b031683529284019291840191600101615871565b50909695505050505050565b5f602082840312156158b2575f80fd5b813567ffffffffffffffff8111156158c8575f80fd5b611254848285016154e3565b5f805f606084860312156158e6575f80fd5b83356158f18161543e565b92506020840135915060408401356159088161543e565b809150509250925092565b6040810181835f5b600281101561593a57815183526020928301929091019060010161591b565b50505092915050565b5f805f8060808587031215615956575f80fd5b615960853561543e565b8435935067ffffffffffffffff806020870135111561597d575f80fd5b6020860135860187601f820112615992575f80fd5b61599f61550282356154c0565b81358082526020808301929160051b8401018a10156159bc575f80fd5b602083015b6020843560051b850101811015615aad5784813511156159df575f80fd5b803584016060818d03601f190112156159f6575f80fd5b6159fe615466565b615a0b602083013561543e565b60208201358152604082013560208201528660608301351115615a2c575f80fd5b6060820135820191508c603f830112615a43575f80fd5b615a5361550260208401356154c0565b602083810135808352908201919060051b84016040018f811115615a75575f80fd5b6040850194505b80851015615a97578435835260209485019490920191615a7c565b50604083015250845250602092830192016159c1565b50955050506040860135811015615ac2575f80fd5b5061567386604087013587016154e3565b60208082525f906060830183820185845b6002811015615b3957868403601f190183528151805180865290860190868601905f5b81811015615b2357835183529288019291880191600101615b07565b5090955050509184019190840190600101615ae4565b50919695505050505050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b5f60208284031215615b7d575f80fd5b8151600481106118f1575f80fd5b5f60208284031215615b9b575f80fd5b5051919050565b5f60208284031215615bb2575f80fd5b81516118f18161543e565b5f60208284031215615bcd575f80fd5b81516118f1816155f1565b634e487b7160e01b5f52600160045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610efe57610efe615bec565b634e487b7160e01b5f52601260045260245ffd5b5f82615c3957615c39615c17565b500490565b6001600160a01b039384168152919092166020820152604081019190915260600190565b5f805f805f60a08688031215615c76575f80fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b6001600160a01b038481168252831660208201526060604082018190525f90611251908301846155a5565b80820180821115610efe57610efe615bec565b6001600160a01b038581168252602080830186905260806040840181905285519084018190525f9286830192909160a0860190855b81811015615d2f578551851683529483019491830191600101615d11565b50508581036060870152615d4381886155a5565b9a9950505050505050505050565b81810381811115610efe57610efe615bec565b5f82615d7257615d72615c17565b500690565b634e487b7160e01b5f52603160045260245ffdfeef159d9a32b2472e32b098f954f3ce62d232939f1c207070b584df1814de2de0a264697066735822122070c4afbd439c34c00318e3ed3a5ca753ed0692cba57135d330fa6f05898f92e564736f6c63430008170033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610484575f3560e01c806387f7630311610258578063c29982381161014b578063e6653f3d116100ca578063ede4edd01161008f578063ede4edd014610c10578063f00a7a9214610c23578063f4a433c014610c30578063f794062e14610c4f578063f851a44014610c7a578063fa71f96814610c8c575f80fd5b8063e6653f3d14610bad578063e875544614610bc1578063e8bc514c14610bca578063eabe7d9114610bea578063ed08b4b614610bfd575f80fd5b8063dcfbc0c711610110578063dcfbc0c714610b39578063debf5a1814610b4c578063e4028eee14610b74578063e4ca78d914610b87578063e61a13ce14610b9a575f80fd5b8063c299823814610ab7578063ca0af04314610aca578063cc7ebdc414610af4578063da3d454c14610b13578063dce1544914610b26575f80fd5b8063aa900754116101d7578063b21be7fd1161019c578063b21be7fd14610a37578063b86d1e7414610a61578063bb82aa5e14610a72578063bdcdc25814610a85578063bea6b8b814610a98575f80fd5b8063aa900754146109df578063abfceffc146109e8578063ac0b0bb714610a08578063aca178a314610a1c578063b0772d0b14610a2f575f80fd5b8063929fe9a11161021d578063929fe9a11461092757806394b2294b14610967578063986ab838146109705780639b19251a1461098f578063a7f0e231146109b1575f80fd5b806387f763031461086457806389cdf2ba146108785780638c57804e1461088b5780638e8f294b146108c25780638ebf636414610914575f80fd5b80634ef4c3e11161037b578063607ef6c1116102fa5780636fb5745c116102bf5780636fb5745c146107e1578063731f0c2b146107f55780637a228c60146108175780637dc0d1d01461082a5780638129fc1c1461083d57806385b7beb814610845575f80fd5b8063607ef6c11461071f5780636a33129d146107325780636aa875b5146107455780636b79c38d146107645780636d154ea5146107bf575f80fd5b806355ee1fe11161034057806355ee1fe1146106c05780635855464a146106d35780635930f632146106e65780635ec88c79146106f95780635f5af1aa1461070c575f80fd5b80634ef4c3e1146106615780634fd42e171461067457806350598ca4146106875780635066cc711461069a57806352d84d1e146106ad575f80fd5b806326782247116104075780633c94786f116103cc5780633c94786f146105f157806342cbb15c146106055780634a5844321461060b5780634ada90af1461062a5780634e79238f14610633575f80fd5b806326782247146105925780632d70db78146105a55780633712e7f2146105b8578063391957d7146105cb5780633bcf7ec1146105de575f80fd5b80631d504dc61161044d5780631d504dc61461050d5780631d7b33d71461052257806321af45691461054157806324008a621461056c57806324a3d6221461057f575f80fd5b80627e3dd2146104885780630e9e1c58146104a5578063174fff36146104b957806318c882a5146104d9578063196c0fda146104ec575b5f80fd5b610490600181565b60405190151581526020015b60405180910390f35b600a5461049090600160c01b900460ff1681565b6104cc6104c7366004615558565b610cac565b60405161049c91906155df565b6104906104e73660046155fe565b610f04565b6104ff6104fa366004615635565b61103b565b60405190815260200161049c565b61052061051b366004615683565b61125c565b005b6104ff610530366004615683565b600f6020525f908152604090205481565b601554610554906001600160a01b031681565b6040516001600160a01b03909116815260200161049c565b6104ff61057a366004615635565b61136e565b600a54610554906001600160a01b031681565b600154610554906001600160a01b031681565b6104906105b336600461569e565b611397565b6104ff6105c63660046156b9565b611474565b6105206105d9366004615683565b611696565b6104906105ec3660046155fe565b611720565b600a5461049090600160a01b900460ff1681565b436104ff565b6104ff610619366004615683565b60166020525f908152604090205481565b6104ff60065481565b6106466106413660046156e3565b61184b565b6040805193845260208401929092529082015260600161049c565b6104ff61066f366004615726565b61188a565b6104ff610682366004615764565b6118f8565b610520610695366004615683565b611960565b6104906106a836600461569e565b611999565b6105546106bb366004615764565b611a70565b6104ff6106ce366004615683565b611a98565b6104906106e1366004615683565b611b10565b6104906106f436600461569e565b611b55565b610646610707366004615683565b611c30565b6104ff61071a366004615683565b611c6c565b61052061072d3660046157c3565b611ce4565b6105206107403660046155fe565b611e4b565b6104ff610753366004615683565b601a6020525f908152604090205481565b61079b610772366004615683565b60106020525f90815260409020546001600160e01b03811690600160e01b900463ffffffff1682565b604080516001600160e01b03909316835263ffffffff90911660208301520161049c565b6104906107cd366004615683565b600c6020525f908152604090205460ff1681565b600a5461049090600160c81b900460ff1681565b610490610803366004615683565b600b6020525f908152604090205460ff1681565b6104ff610825366004615635565b611e9e565b600454610554906001600160a01b031681565b610520612165565b6104ff610853366004615683565b601c6020525f908152604090205481565b600a5461049090600160b01b900460ff1681565b610520610886366004615683565b6121ab565b61079b610899366004615683565b60116020525f90815260409020546001600160e01b03811690600160e01b900463ffffffff1682565b6108f56108d0366004615683565b60096020525f908152604090208054600182015460039092015460ff91821692911683565b604080519315158452602084019290925215159082015260600161049c565b61049061092236600461569e565b6121b6565b61049061093536600461582a565b6001600160a01b038082165f908152600960209081526040808320938616835260029093019052205460ff1692915050565b6104ff60075481565b6104ff61097e366004615683565b60176020525f908152604090205481565b61049061099d366004615683565b601e6020525f908152604090205460ff1681565b6109c76ec097ce7bc90715b34b9f100000000081565b6040516001600160e01b03909116815260200161049c565b6104ff600e5481565b6109fb6109f6366004615683565b61228a565b60405161049c9190615856565b600a5461049090600160b81b900460ff1681565b610554610a2a3660046156b9565b6122fd565b6109fb612330565b6104ff610a4536600461582a565b601260209081525f928352604080842090915290825290205481565b601f546001600160a01b0316610554565b600254610554906001600160a01b031681565b6104ff610a93366004615635565b612390565b6104ff610aa6366004615683565b60186020525f908152604090205481565b6104cc610ac53660046158a2565b6123e3565b6104ff610ad836600461582a565b601360209081525f928352604080842090915290825290205481565b6104ff610b02366004615683565b60146020525f908152604090205481565b6104ff610b21366004615726565b61249e565b610554610b343660046156b9565b612757565b600354610554906001600160a01b031681565b610b5f610b5a366004615683565b612770565b6040805192835260208301919091520161049c565b6104ff610b823660046156b9565b61281a565b6104ff610b953660046156b9565b6129a0565b6104ff610ba836600461582a565b612ade565b600a5461049090600160a81b900460ff1681565b6104ff60055481565b610bdd610bd83660046158d4565b612c01565b60405161049c9190615913565b6104ff610bf8366004615726565b613217565b610520610c0b366004615683565b61323e565b6104ff610c1e366004615683565b613352565b601b546104909060ff1681565b6104ff610c3e366004615683565b60196020525f908152604090205481565b610490610c5d366004615683565b6001600160a01b03165f9081526009602052604090205460ff1690565b5f54610554906001600160a01b031681565b610c9f610c9a366004615943565b61345b565b60405161049c9190615ad3565b601f546060906001600160a01b03163314610cfc576001600160a01b03831633141580610cdf5750610cdd33611b10565b155b15610cfc576040516282b42960e81b815260040160405180910390fd5b81515f8167ffffffffffffffff811115610d1857610d18615452565b604051908082528060200260200182016040528015610d41578160200160208202803683370190505b5090505f5b82811015610ef95760095f868381518110610d6357610d63615b45565b6020908102919091018101516001600160a01b031682528101919091526040015f205460ff16610db35760095b828281518110610da257610da2615b45565b602002602001018181525050610ef1565b6002858281518110610dc757610dc7615b45565b60200260200101516001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e0a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2e9190615b6d565b6003811115610e3f57610e3f615b59565b14610e4b576012610d90565b848181518110610e5d57610e5d615b45565b6020908102919091010151604051630672bd1b60e21b81526001600160a01b038881166004830152909116906319caf46c906024016020604051808303815f875af1158015610eae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed29190615b8b565b828281518110610ee457610ee4615b45565b6020026020010181815250505b600101610d46565b509150505b92915050565b6001600160a01b0382165f9081526009602052604081205460ff16610f3c576040516334b04fe360e11b815260040160405180910390fd5b5f546001600160a01b03163314801590610f615750600a546001600160a01b03163314155b15610f7e576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b03163314801590610f96575081155b15610fb457604051630233af8560e41b815260040160405180910390fd5b6001600160a01b0383165f818152600c6020908152604091829020805460ff19168615159081179091558251938452606091840182905260069184019190915265426f72726f7760d01b6080840152908201527f71aec636243f9709bb0007ae15e9afb8150ab01716d75fd7573be5cc096e03b09060a0015b60405180910390a150919050565b600a545f90600160c01b900460ff161561106857604051635012b8a160e01b815260040160405180910390fd5b601f546001600160a01b0386811691161461109657604051639db8d5b160e01b815260040160405180910390fd5b6001600160a01b0384165f9081526009602052604090205460ff166110ce576040516334b04fe360e11b815260040160405180910390fd5b836001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561110a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061112e9190615ba2565b6001600160a01b0316856001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611173573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111979190615ba2565b6001600160a01b0316146111be57604051630c73eb0560e01b815260040160405180910390fd5b6002846001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112209190615b6d565b600381111561123157611231615b59565b1461124f57604051637affbf7760e11b815260040160405180910390fd5b5f5b90505b949350505050565b806001600160a01b031663f851a4406040518163ffffffff1660e01b8152600401602060405180830381865afa158015611298573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112bc9190615ba2565b6001600160a01b0316336001600160a01b0316146112ec576040516282b42960e81b815260040160405180910390fd5b806001600160a01b031663c1e803346040518163ffffffff1660e01b81526004016020604051808303815f875af1158015611329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061134d9190615b8b565b1561136b57604051630c9be19560e31b815260040160405180910390fd5b50565b6001600160a01b0384165f9081526009602052604081205460ff1661124f5760095b9050611254565b5f80546001600160a01b031633148015906113bd5750600a546001600160a01b03163314155b156113da576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b031633148015906113f2575081155b1561141057604051630233af8560e41b815260040160405180910390fd5b600a8054831515600160b81b0260ff60b81b199091161790556040515f80516020615d8c833981519152906114689084906040808252600590820152645365697a6560d81b6060820152901515602082015260800190565b60405180910390a15090565b5f80546001600160a01b031633146114995761149260016012613f72565b9050610efe565b6001600160a01b0383165f9081526009602052604090205460ff16156114c557611492600a6011613f72565b826001600160a01b031663fe9c44ae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611501573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115259190615bbd565b506001600160a01b0383165f90815260096020526040902060018101541561154f5761154f615bd8565b805460ff199081166001178255600382018054909116905561157084613fe9565b6040516001600160a01b03851681527fcf583bb0c569eb967f806b11601c4cb93c10310485c67add5f8362c2f212321f9060200160405180910390a1821580159061162c57506002846001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116189190615b6d565b600381111561162957611629615b59565b14155b1561168d57604051634d4c750f60e11b8152336004820152602481018490526001600160a01b03851690639a98ea1e906044015f604051808303815f87803b158015611676575f80fd5b505af1158015611688573d5f803e3d5ffd5b505050505b5f949350505050565b5f546001600160a01b031633146116bf576040516282b42960e81b815260040160405180910390fd5b601580546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527feda98690e518e9a05f8ec6837663e188211b2da8f4906648b323f2c1d4434e29910160405180910390a15050565b6001600160a01b0382165f9081526009602052604081205460ff16611758576040516334b04fe360e11b815260040160405180910390fd5b5f546001600160a01b0316331480159061177d5750600a546001600160a01b03163314155b1561179a576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b031633148015906117b2575081155b156117d057604051630233af8560e41b815260040160405180910390fd5b6001600160a01b0383165f818152600b6020908152604091829020805460ff19168615159081179091558251938452606091840182905260049184019190915263135a5b9d60e21b6080840152908201527f71aec636243f9709bb0007ae15e9afb8150ab01716d75fd7573be5cc096e03b09060a00161102d565b5f805f805f61185c8989898961409e565b9150915081601581111561187257611872615b59565b8151602090920151909a919950975095505050505050565b6001600160a01b0383165f908152600b602052604081205460ff16156118c357604051636be9245d60e11b815260040160405180910390fd5b6001600160a01b0384165f9081526009602052604090205460ff166118ec5760095b90506118f1565b5f5b90505b9392505050565b5f80546001600160a01b0316331461191657610efe6001600b613f72565b600680549083905560408051828152602081018590527faeba5a6c40a8ac138134bff1aaa65debf25971188a58804bad717f82f0ec131691015b60405180910390a15f9392505050565b5f61196b33836147d0565b601581111561197c5761197c615b59565b1461136b576040516282b42960e81b815260040160405180910390fd5b5f80546001600160a01b031633148015906119bf5750600a546001600160a01b03163314155b156119dc576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b031633148015906119f4575081155b15611a1257604051630233af8560e41b815260040160405180910390fd5b600a8054831515600160c81b0260ff60c81b199091161790556040515f80516020615d8c833981519152906114689084906040808252600b908201526a14185e525b9d195c995cdd60aa1b6060820152901515602082015260800190565b600d8181548110611a7f575f80fd5b5f918252602090912001546001600160a01b0316905081565b5f80546001600160a01b03163314611ab657610efe60016010613f72565b600480546001600160a01b038481166001600160a01b031983168117909355604080519190921680825260208201939093527fd52b2b9b7e9ee655fcb95d2e5b9e0c9f69e7ef2b8e9d2d0ea78402d576d22e229101611950565b6001600160a01b0381165f908152601e602052604081205460ff1615611b3857506001919050565b326001600160a01b03831614611b4f57505f919050565b503b1590565b5f80546001600160a01b03163314801590611b7b5750600a546001600160a01b03163314155b15611b98576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b03163314801590611bb0575081155b15611bce57604051630233af8560e41b815260040160405180910390fd5b600a8054831515600160c01b0260ff60c01b199091161790556040515f80516020615d8c833981519152906114689084906040808252600f908201526e10dbdb1b1958dd125b9d195c995cdd608a1b6060820152901515602082015260800190565b5f805f805f611c41865f805f61409e565b91509150816015811115611c5757611c57615b59565b81516020909201519097919650945092505050565b5f80546001600160a01b03163314611c8a57610efe60016013613f72565b600a80546001600160a01b038481166001600160a01b031983168117909355604080519190921680825260208201939093527f0613b6ee6a04f0d09f390e4d9318894b9f6ac7fd83897cd8d18896ba579c401e9101611950565b5f546001600160a01b03163314801590611d0957506015546001600160a01b03163314155b15611d26576040516282b42960e81b815260040160405180910390fd5b8281811580611d355750808214155b15611d535760405163b4fa3fb360e01b815260040160405180910390fd5b5f5b82811015611e4257848482818110611d6f57611d6f615b45565b9050602002013560165f898985818110611d8b57611d8b615b45565b9050602002016020810190611da09190615683565b6001600160a01b0316815260208101919091526040015f2055868682818110611dcb57611dcb615b45565b9050602002016020810190611de09190615683565b6001600160a01b03167f6f1951b2aad10f3fc81b86d91105b413a5b3f847a34bbc5ce1904201b14438f6868684818110611e1c57611e1c615b45565b90506020020135604051611e3291815260200190565b60405180910390a2600101611d55565b50505050505050565b5f546001600160a01b03163314611e74576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03919091165f908152601e60205260409020805460ff1916911515919091179055565b600a545f90600160c81b900460ff1615611ecb576040516339d866b360e21b815260040160405180910390fd5b601f546001600160a01b03868116911614611ef957604051639db8d5b160e01b815260040160405180910390fd5b6001600160a01b0384165f9081526009602052604090205460ff16611f31576040516334b04fe360e11b815260040160405180910390fd5b836001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f919190615ba2565b6001600160a01b0316856001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fd6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ffa9190615ba2565b6001600160a01b03161461202157604051630c73eb0560e01b815260040160405180910390fd5b6002846001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa15801561205f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120839190615b6d565b600381111561209457612094615b59565b146120b257604051637affbf7760e11b815260040160405180910390fd5b6001600160a01b038086165f908152600960209081526040808320938716835260029093019052205460ff166120e8575f611390565b5f806120f68588865f61409e565b90925090505f82601581111561210e5761210e615b59565b0361212e576020810151156121295760045b92505050611254565b612159565b601382601581111561214257612142615b59565b146121595781601581111561212057612120615b59565b5f979650505050505050565b33301480159061217f57505f546001600160a01b03163314155b1561219c576040516282b42960e81b815260040160405180910390fd5b601d805460ff19166001179055565b5f61196b338361493e565b5f80546001600160a01b031633148015906121dc5750600a546001600160a01b03163314155b156121f9576040516282b42960e81b815260040160405180910390fd5b5f546001600160a01b03163314801590612211575081155b1561222f57604051630233af8560e41b815260040160405180910390fd5b600a8054831515600160b01b0260ff60b01b199091161790556040515f80516020615d8c833981519152906114689084906040808252600890820152672a3930b739b332b960c11b6060820152901515602082015260800190565b6001600160a01b0381165f9081526008602090815260408083208054825181850281018501909352808352606094938301828280156122f057602002820191905f5260205f20905b81546001600160a01b031681526001909101906020018083116122d2575b5093979650505050505050565b60208052815f5260405f208181548110612315575f80fd5b5f918252602090912001546001600160a01b03169150829050565b6060600d80548060200260200160405190810160405280929190818152602001828054801561238657602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311612368575b5050505050905090565b600a545f90600160b01b900460ff16156123bd5760405163cd1fda9f60e01b815260040160405180910390fd5b5f6123c9868685614add565b905080156123d8579050611254565b5f9695505050505050565b80516060905f8167ffffffffffffffff81111561240257612402615452565b60405190808252806020026020018201604052801561242b578160200160208202803683370190505b5090505f5b82811015612496575f85828151811061244b5761244b615b45565b6020026020010151905061245f813361493e565b601581111561247057612470615b59565b83838151811061248257612482615b45565b602090810291909101015250600101612430565b509392505050565b6001600160a01b0383165f908152600c602052604081205460ff16156124d75760405163095865a360e11b815260040160405180910390fd5b6001600160a01b0384165f9081526009602052604090205460ff166124fd5760096118e5565b6001600160a01b038085165f9081526009602090815260408083209387168352600290930190529081205460ff166125cd57336001600160a01b03861614612557576040516282b42960e81b815260040160405180910390fd5b612561338561493e565b90505f81601581111561257657612576615b59565b146125955780601581111561258d5761258d615b59565b9150506118f1565b6001600160a01b038086165f908152600960209081526040808320938816835260029093019052205460ff166125cd576125cd615bd8565b6004805460405163fc57d4df60e01b81526001600160a01b038881169382019390935291169063fc57d4df90602401602060405180830381865afa158015612617573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061263b9190615b8b565b5f0361264857600d61258d565b6001600160a01b0385165f9081526016602052604090205480156126f9575f866001600160a01b03166347bd37186040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126c79190615b8b565b90505f6126d48287614b90565b90508281106126f6576040516353977d1f60e01b815260040160405180910390fd5b50505b6127016152f8565b61270d86885f8861409e565b90935090505f83601581111561272557612725615b59565b146127465782601581111561273c5761273c615b59565b93505050506118f1565b60208101511561215957600461273c565b6008602052815f5260405f208181548110612315575f80fd5b5f805f80612780855f805f61409e565b602081015191935091505f036127ad578160158111156127a2576127a2615b59565b955f95509350505050565b60408101515f036127d6578160158111156127ca576127ca615b59565b955f1995509350505050565b8160158111156127e8576127e8615b59565b6040820151606083015161280590670de0b6b3a764000090615c00565b61280f9190615c2b565b935093505050915091565b5f80546001600160a01b031633146128385761149260016006613f72565b6001600160a01b0383165f908152600960205260409020805460ff1661286c5761286460096007613f72565b915050610efe565b60408051602080820183528582528251908101909252670c7d713b49da000082529061289a81835190511090565b156128b5576128ab60066008613f72565b9350505050610efe565b841580159061292f57506004805460405163fc57d4df60e01b81526001600160a01b038981169382019390935291169063fc57d4df90602401602060405180830381865afa158015612909573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061292d9190615b8b565b155b15612940576128ab600d6009613f72565b60018301805490869055604080516001600160a01b0389168152602081018390529081018790527f70483e6592cd5182d45ac970e05bc62cdcc90e9d8ef2c2dbe686cf383bcd7fc59060600160405180910390a15f979650505050505050565b6004805460405163fc57d4df60e01b81526001600160a01b03858116938201939093525f928392169063fc57d4df90602401602060405180830381865afa1580156129ed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a119190615b8b565b9050805f03612a33576040516348fa9b2b60e11b815260040160405180910390fd5b5f846001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a949190615b8b565b90505f670de0b6b3a764000085600654612aae9190615c00565b612ab89190615c00565b90505f612ac58385615c00565b90505f612ad28284615c2b565b98975050505050505050565b6004805460405163fc57d4df60e01b81526001600160a01b03858116938201939093525f92909116908290829063fc57d4df90602401602060405180830381865afa158015612b2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b539190615b8b565b60405163fc57d4df60e01b81526001600160a01b0386811660048301529192505f9184169063fc57d4df90602401602060405180830381865afa158015612b9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bc09190615b8b565b90508115801590612bd057508015155b612bda575f612bf7565b80612bed670de0b6b3a764000084615c00565b612bf79190615c2b565b9695505050505050565b612c09615316565b612c1233611b10565b612c2e576040516282b42960e81b815260040160405180910390fd5b601d5460ff16612c51576040516325dbe6e160e21b815260040160405180910390fd5b601d805460ff19169055600a54600160b81b900460ff1615612c86576040516307f4077b60e11b815260040160405180910390fd5b825f03612ca65760405163017a1def60e71b815260040160405180910390fd5b601f546040805163a6afed9560e01b815290516001600160a01b0390921691829163a6afed9591600480830192602092919082900301815f875af1158015612cf0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d149190615b8b565b506002836001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d53573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d779190615b6d565b6003811115612d8857612d88615b59565b14612df057826001600160a01b031663a6afed956040518163ffffffff1660e01b81526004016020604051808303815f875af1158015612dca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dee9190615b8b565b505b5f5b6001600160a01b0386165f908152602080526040902054811015612eb6576001600160a01b0386165f9081526020805260409020805482908110612e3857612e38615b45565b5f918252602090912001546040516339a0487760e11b81526001600160a01b0388811660048301529091169063734090ee906024016020604051808303815f875af1158015612e89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ead9190615b8b565b50600101612df2565b505f80612ec287611c30565b91935090915050601382141580612ed7575080155b15612f04576040516378eef05960e01b815260048101839052602481018290526044015b60405180910390fd5b846001600160a01b0316836001600160a01b031603612f365760405163cbcf6c8760e01b815260040160405180910390fd5b306001600160a01b0316836001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fa09190615ba2565b6001600160a01b031614612fc757604051630c73eb0560e01b815260040160405180910390fd5b6001600160a01b0385165f9081526009602052604090205460ff16612fff576040516334b04fe360e11b815260040160405180910390fd5b606461300c826069615c00565b6130169190615c2b565b90505f806130268984878a614b9b565b915091508188101561304b5760405163e13e22fb60e01b815260040160405180910390fd5b8115801561305857508015155b1561307657604051635c40c59560e01b815260040160405180910390fd5b604051632e85fb4160e01b815281906001600160a01b03891690632e85fb41906130a89033908e908690600401615c3e565b6020604051808303815f875af11580156130c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130e89190615b8b565b146131065760405163ae1313a160e01b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b038616906323b872dd906131369033908d908790600401615c3e565b6020604051808303815f875af1158015613152573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131769190615bbd565b613193576040516335207f1b60e21b815260040160405180910390fd5b604080516001600160a01b038b811682528781166020830152891681830152606081018490526080810183905290517f3abf2bf49c89fa908baced07de549f91502a77cf395abef774f3ea1705b8c5c19181900360a00190a16040805180820190915291825260208201529350505050601d805460ff191660011790559392505050565b5f80613224858585614add565b905080156132335790506118f1565b5f5b95945050505050565b5f546001600160a01b03163314613267576040516282b42960e81b815260040160405180910390fd5b6001600160a01b0381165f9081526009602052604090205460ff1661329f576040516334b04fe360e11b815260040160405180910390fd5b6003816001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133019190615b6d565b600381111561331257613312615b59565b1461333057604051637affbf7760e11b815260040160405180910390fd5b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b6040516361bfb47160e11b81523360048201525f90829082908190819081906001600160a01b0386169063c37f68e29060240160a060405180830381865afa1580156133a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133c49190615c62565b945050935093509350835f146133f05760405163061f8fdf60e51b815260048101859052602401612efb565b811561340d57613402600c6002613f72565b979650505050505050565b801561341f5761340260146002613f72565b5f61342b883386614add565b9050801561344057612ad2600e600383614f50565b61344a86336147d0565b6015811115612ad257612ad2615b59565b613463615334565b61346c33611b10565b613488576040516282b42960e81b815260040160405180910390fd5b601d5460ff166134ab576040516325dbe6e160e21b815260040160405180910390fd5b601d805460ff19169055600a54600160b81b900460ff16156134e0576040516307f4077b60e11b815260040160405180910390fd5b5f5b84518110156136065760028582815181106134ff576134ff615b45565b60200260200101515f01516001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015613545573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135699190615b6d565b600381111561357a5761357a615b59565b146135fe5784818151811061359157613591615b45565b60200260200101515f01516001600160a01b031663a6afed956040518163ffffffff1660e01b81526004016020604051808303815f875af11580156135d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135fc9190615b8b565b505b6001016134e2565b505f5b835181101561372757600284828151811061362657613626615b45565b60200260200101516001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015613669573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061368d9190615b6d565b600381111561369e5761369e615b59565b1461371f578381815181106136b5576136b5615b45565b60200260200101516001600160a01b031663a6afed956040518163ffffffff1660e01b81526004016020604051808303815f875af11580156136f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061371d9190615b8b565b505b600101613609565b505f5b6001600160a01b0386165f9081526020805260409020548110156137ee576001600160a01b0386165f908152602080526040902080548290811061377057613770615b45565b5f918252602090912001546040516339a0487760e11b81526001600160a01b0388811660048301529091169063734090ee906024016020604051808303815f875af11580156137c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137e59190615b8b565b5060010161372a565b505f806137fa87612770565b90925090508115158061380b575080155b15613833576040516378eef05960e01b81526004810183905260248101829052604401612efb565b855167ffffffffffffffff81111561384d5761384d615452565b604051908082528060200260200182016040528015613876578160200160208202803683370190505b508352845167ffffffffffffffff81111561389357613893615452565b6040519080825280602002602001820160405280156138bc578160200160208202803683370190505b5060208401526004546001600160a01b03165f805b8851811015613be65760095f8a83815181106138ef576138ef615b45565b602090810291909101810151516001600160a01b031682528101919091526040015f205460ff16613933576040516334b04fe360e11b815260040160405180910390fd5b88818151811061394557613945615b45565b6020026020010151602001515f14613a255788818151811061396957613969615b45565b60200260200101515f01516001600160a01b03166319d1b799338c8c858151811061399657613996615b45565b6020026020010151602001516040518463ffffffff1660e01b81526004016139c093929190615c3e565b6020604051808303815f875af11580156139dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a009190615b8b565b8651805183908110613a1457613a14615b45565b602002602001018181525050613aef565b888181518110613a3757613a37615b45565b60200260200101515f01516001600160a01b031663ceed3112338c8c8581518110613a6457613a64615b45565b6020026020010151604001516040518463ffffffff1660e01b8152600401613a8e93929190615c9e565b6020604051808303815f875af1158015613aaa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ace9190615b8b565b8651805183908110613ae257613ae2615b45565b6020026020010181815250505b5f836001600160a01b031663fc57d4df8b8481518110613b1157613b11615b45565b6020908102919091010151516040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015613b5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b839190615b8b565b9050805f03613ba5576040516348fa9b2b60e11b815260040160405180910390fd5b604080516020810190915281815287518051613bdb92919085908110613bcd57613bcd615b45565b602002602001015185614fc7565b9250506001016138d1565b50805f03613c07576040516326a8c97960e11b815260040160405180910390fd5b805f805b895181108015613c1a57508215155b15613cd15760095f8b8381518110613c3457613c34615b45565b6020908102919091018101516001600160a01b031682528101919091526040015f205460ff16613c77576040516334b04fe360e11b815260040160405180910390fd5b5f613c9c8b8381518110613c8d57613c8d615b45565b6020026020010151858f614fe7565b919550935090508089600160200201518381518110613cbd57613cbd615b45565b602090810291909101015250600101613c0b565b508115613cf157604051635565ecc960e11b815260040160405180910390fd5b87613cfc8285615cc9565b1015613d2f5787613d0d8285615cc9565b60405163d44ba27f60e01b815260048101929092526024820152604401612efb565b8015613ecd57601f546040805163bd6d894d60e01b815290516001600160a01b03909216915f91839163bd6d894d91600480820192602092909190829003018187875af1158015613d82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da69190615b8b565b60405163fc57d4df60e01b81526001600160a01b03848116600483015288169063fc57d4df90602401602060405180830381865afa158015613dea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e0e9190615b8b565b613e276ec097ce7bc90715b34b9f100000000086615c00565b613e319190615c2b565b613e3b9190615c2b565b9050816001600160a01b03166323b872dd338f846040518463ffffffff1660e01b8152600401613e6d93929190615c3e565b6020604051808303815f875af1158015613e89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ead9190615bbd565b613eca576040516337ec6a4960e11b815260040160405180910390fd5b50505b505060208501516040517f7f9c2432fb9b0bd460d23bda178f4a153d0f3b5023e8298dabe655864ae8aa6d91613f09918c9185918c9190615cdc565b60405180910390a15f613f1b8a612770565b90955090508415801590613f30575060138514155b80613f3a57508381115b15613f585760405163430ffe6f60e01b815260040160405180910390fd5b5050505050601d805460ff19166001179055949350505050565b5f7f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0836015811115613fa657613fa6615b59565b836013811115613fb857613fb8615b59565b6040805192835260208301919091525f9082015260600160405180910390a18260158111156118f1576118f1615b59565b5f5b600d5481101561404c57816001600160a01b0316600d828154811061401257614012615b45565b5f918252602090912001546001600160a01b03160361404457604051638e3e108160e01b815260040160405180910390fd5b600101613feb565b50600d80546001810182555f919091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0392909216919091179055565b5f6140a76152f8565b6140af61535b565b600454601f546001600160a01b038981165f90815260086020908152604080832080548251818502810185019093528083529396851695909416938693919290919083018282801561412857602002820191905f5260205f20905b81546001600160a01b0316815260019091019060200180831161410a575b505050505090505f5b8151811015614561575f82828151811061414d5761414d615b45565b60209081029190910101516040516361bfb47160e11b81526001600160a01b038f811660048301529192509082169063c37f68e29060240160a060405180830381865afa1580156141a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141c49190615c62565b60c08c015260e08b015260a08a015260808901529550851561421357600f60405180608001604052805f81526020015f81526020015f81526020015f81525098509850505050505050506147c7565b60408051602080820183526001600160a01b038481165f818152600984528590206001015484526101608c01939093528351918201845260e08b015182526101808b0191909152915163fc57d4df60e01b815260048101919091529086169063fc57d4df90602401602060405180830381865afa158015614296573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142ba9190615b8b565b61010088018190525f036142fb57600d60405180608001604052805f81526020015f81526020015f81526020015f81525098509850505050505050506147c7565b604080516020810190915261010088015181526101a088018190526101808801516143259161515f565b6101e0880181905261016088015161433c9161515f565b6101c0880181905260808801518851614356929190614fc7565b87526101a087015160a08801516020890151614373929190614fc7565b876020018181525050806001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143dc9190615b6d565b87610120019060038111156143f3576143f3615b59565b9081600381111561440657614406615b59565b9052506002876101200151600381111561442257614422615b59565b03614445578660c00151876040015161443b9190615cc9565b6040880152614469565b836001600160a01b0316816001600160a01b03160361446957608087015160608801525b8b6001600160a01b0316816001600160a01b03160361455857614496876101c001518c8960200151614fc7565b6020880152600287610120015160038111156144b4576144b4615b59565b036144cd5789156144c85760016101408801525b61453e565b836001600160a01b0316816001600160a01b03160361453e578a87606001511061450b578a87606001516145019190615d51565b606088015261453e565b600460405180608001604052805f81526020015f81526020015f81526020015f81525098509850505050505050506147c7565b614552876101a001518b8960200151614fc7565b60208801525b50600101614131565b505f8086604001515f1415806145865750866101400151801561458657506060870151155b156146a357836001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa1580156145c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145eb9190615b8b565b60405163fc57d4df60e01b81526001600160a01b0386811660048301529193509086169063fc57d4df90602401602060405180830381865afa158015614633573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146579190615b8b565b90506ec097ce7bc90715b34b9f10000000008183896040015161467a9190615c00565b6146849190615c00565b61468e9190615c2b565b876020015161469d9190615cc9565b60208801525b6020870151875111156147a2578660400151876060015110806146d5575086610140015180156146d557506060870151155b1561475757601360405180608001604052805f81526020016ec097ce7bc90715b34b9f100000000084868c606001518d604001516147139190615d51565b61471d9190615c00565b6147279190615c00565b6147319190615c2b565b8152602001895f01518152602001896020015181525098509850505050505050506147c7565b5f604051806080016040528089602001518a5f01516147769190615d51565b81526020015f8152602001895f01518152602001896020015181525098509850505050505050506147c7565b5f60405180608001604052805f8152602001895f01518a602001516147319190615d51565b94509492505050565b6001600160a01b0382165f908152600960205260408120805460ff166147fa576009915050610efe565b6001600160a01b0383165f90815260028201602052604090205460ff16614824575f915050610efe565b6001600160a01b0383165f9081526002820160209081526040808320805460ff191690556008909152902061485990856151a4565b6002846001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015614897573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906148bb9190615b6d565b60038111156148cc576148cc615b59565b036148f1576001600160a01b0383165f90815260208052604090206148f190856151a4565b604080516001600160a01b038087168252851660208201527fe699a64c18b07ac5b7301aa273f36a2287239eb9501d81950672794afba29a0d91015b60405180910390a1505f9392505050565b6001600160a01b0382165f908152600960205260408120805460ff16614968576009915050610efe565b6001600160a01b0383165f90815260028201602052604090205460ff1615614993575f915050610efe565b6001600160a01b038381165f9081526002838101602090815260408084208054600160ff19909116811790915560088352908420805491820181558452922090910180546001600160a01b03191692871692909217909155846001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015614a27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a4b9190615b6d565b6003811115614a5c57614a5c615b59565b03614a9d576001600160a01b038381165f908152602080805260408220805460018101825590835291200180546001600160a01b0319169186169190911790555b604080516001600160a01b038087168252851660208201527f3ab23ab0d51cccc0c3085aec51f99228625aa1a922b3a8ca89a26b0f2027a1a5910161492d565b6001600160a01b0383165f9081526009602052604081205460ff16614b035760096118e5565b6001600160a01b038085165f908152600960209081526040808320938716835260029093019052205460ff16614b39575f6118e5565b5f80614b478587865f61409e565b90925090505f826015811115614b5f57614b5f615b59565b14614b7f57816015811115614b7657614b76615b59565b925050506118f1565b6020810151156123d8576004614b76565b5f6118f18284615cc9565b5f805f846001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa158015614bda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614bfe9190615b8b565b90505f846001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa158015614c3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614c619190615b8b565b6004805460405163fc57d4df60e01b81526001600160a01b038a8116938201939093529293505f9291169063fc57d4df90602401602060405180830381865afa158015614cb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614cd49190615b8b565b6004805460405163fc57d4df60e01b81526001600160a01b038a8116938201939093529293505f9291169063fc57d4df90602401602060405180830381865afa158015614d23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614d479190615b8b565b9050811580614d54575080155b15614d72576040516348fa9b2b60e11b815260040160405180910390fd5b5f670de0b6b3a76400008a600654614d8a9190615c00565b614d949190615c00565b9050614da08483615c00565b614daa9082615c2b565b90505f614db78685615c00565b614dd06ec097ce7bc90715b34b9f10000000008d615c00565b614dda9190615c2b565b90508160028a6001600160a01b0316632dd489096040518163ffffffff1660e01b8152600401602060405180830381865afa158015614e1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614e3f9190615b6d565b6003811115614e5057614e50615b59565b03614ea5575f614e6f876ec097ce7bc90715b34b9f1000000000615c2b565b9050614e7b8183615d64565b15614ea35780614e8b8184615c2b565b614e96906001615cc9565b614ea09190615c00565b91505b505b6040516370a0823160e01b81526001600160a01b038e811660048301525f91908c16906370a0823190602401602060405180830381865afa158015614eec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614f109190615b8b565b905081811015614f1e578091505b838214614f3d5783614f308385615c00565b614f3a9190615c2b565b92505b50909c909b509950505050505050505050565b5f7f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846015811115614f8457614f84615b59565b846013811115614f9657614f96615b59565b604080519283526020830191909152810184905260600160405180910390a18360158111156118ee576118ee615b59565b5f80614fd385856152b0565b9050613235614fe1826152d6565b84614b90565b5f805f80614ff587876129a0565b6040516370a0823160e01b81526001600160a01b0387811660048301529192505f918916906370a0823190602401602060405180830381865afa15801561503e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906150629190615b8b565b90508181101561507457809250615078565b8192505b604051632e85fb4160e01b81526001600160a01b03891690632e85fb41906150a89033908a908890600401615c3e565b6020604051808303815f875af11580156150c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906150e89190615b8b565b9250825f0361510a5760405163ae1313a160e01b815260040160405180910390fd5b8683831461512a578261511d8583615c00565b6151279190615c2b565b90505b808811156151435761513c8189615d51565b9550615153565b61514d8882615d51565b94505f95505b50505093509350939050565b60408051602081019091525f81526040518060200160405280670de0b6b3a7640000615191865f0151865f01516152ed565b61519b9190615c2b565b90529392505050565b8154805f5b828110156151f657836001600160a01b03168582815481106151cd576151cd615b45565b5f918252602090912001546001600160a01b0316036151ee578091506151f6565b6001016151a9565b5081811061520657615206615bd8565b83615212600184615d51565b8154811061522257615222615b45565b905f5260205f20015f9054906101000a90046001600160a01b031684828154811061524f5761524f615b45565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508380548061528a5761528a615d77565b5f8281526020902081015f1990810180546001600160a01b031916905501905550505050565b60408051602081019091525f8152604051806020016040528061519b855f0151856152ed565b80515f90610efe90670de0b6b3a764000090615c2b565b5f6118f18284615c00565b60405180608001604052806004906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b60405180604001604052806002905b60608152602001906001900390816153435790505090565b6040518061020001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f60038111156153af576153af615b59565b81526020015f151581526020016153d160405180602001604052805f81525090565b81526020016153eb60405180602001604052805f81525090565b815260200161540560405180602001604052805f81525090565b815260200161541f60405180602001604052805f81525090565b815260200161543960405180602001604052805f81525090565b905290565b6001600160a01b038116811461136b575f80fd5b634e487b7160e01b5f52604160045260245ffd5b6040516060810167ffffffffffffffff8111828210171561548957615489615452565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156154b8576154b8615452565b604052919050565b5f67ffffffffffffffff8211156154d9576154d9615452565b5060051b60200190565b5f82601f8301126154f2575f80fd5b81356020615507615502836154c0565b61548f565b8083825260208201915060208460051b870101935086841115615528575f80fd5b602086015b8481101561554d5780356155408161543e565b835291830191830161552d565b509695505050505050565b5f8060408385031215615569575f80fd5b82356155748161543e565b9150602083013567ffffffffffffffff81111561558f575f80fd5b61559b858286016154e3565b9150509250929050565b5f815180845260208085019450602084015f5b838110156155d4578151875295820195908201906001016155b8565b509495945050505050565b602081525f6118f160208301846155a5565b801515811461136b575f80fd5b5f806040838503121561560f575f80fd5b823561561a8161543e565b9150602083013561562a816155f1565b809150509250929050565b5f805f8060808587031215615648575f80fd5b84356156538161543e565b935060208501356156638161543e565b925060408501356156738161543e565b9396929550929360600135925050565b5f60208284031215615693575f80fd5b81356118f18161543e565b5f602082840312156156ae575f80fd5b81356118f1816155f1565b5f80604083850312156156ca575f80fd5b82356156d58161543e565b946020939093013593505050565b5f805f80608085870312156156f6575f80fd5b84356157018161543e565b935060208501356157118161543e565b93969395505050506040820135916060013590565b5f805f60608486031215615738575f80fd5b83356157438161543e565b925060208401356157538161543e565b929592945050506040919091013590565b5f60208284031215615774575f80fd5b5035919050565b5f8083601f84011261578b575f80fd5b50813567ffffffffffffffff8111156157a2575f80fd5b6020830191508360208260051b85010111156157bc575f80fd5b9250929050565b5f805f80604085870312156157d6575f80fd5b843567ffffffffffffffff808211156157ed575f80fd5b6157f98883890161577b565b90965094506020870135915080821115615811575f80fd5b5061581e8782880161577b565b95989497509550505050565b5f806040838503121561583b575f80fd5b82356158468161543e565b9150602083013561562a8161543e565b602080825282518282018190525f9190848201906040850190845b818110156158965783516001600160a01b031683529284019291840191600101615871565b50909695505050505050565b5f602082840312156158b2575f80fd5b813567ffffffffffffffff8111156158c8575f80fd5b611254848285016154e3565b5f805f606084860312156158e6575f80fd5b83356158f18161543e565b92506020840135915060408401356159088161543e565b809150509250925092565b6040810181835f5b600281101561593a57815183526020928301929091019060010161591b565b50505092915050565b5f805f8060808587031215615956575f80fd5b615960853561543e565b8435935067ffffffffffffffff806020870135111561597d575f80fd5b6020860135860187601f820112615992575f80fd5b61599f61550282356154c0565b81358082526020808301929160051b8401018a10156159bc575f80fd5b602083015b6020843560051b850101811015615aad5784813511156159df575f80fd5b803584016060818d03601f190112156159f6575f80fd5b6159fe615466565b615a0b602083013561543e565b60208201358152604082013560208201528660608301351115615a2c575f80fd5b6060820135820191508c603f830112615a43575f80fd5b615a5361550260208401356154c0565b602083810135808352908201919060051b84016040018f811115615a75575f80fd5b6040850194505b80851015615a97578435835260209485019490920191615a7c565b50604083015250845250602092830192016159c1565b50955050506040860135811015615ac2575f80fd5b5061567386604087013587016154e3565b60208082525f906060830183820185845b6002811015615b3957868403601f190183528151805180865290860190868601905f5b81811015615b2357835183529288019291880191600101615b07565b5090955050509184019190840190600101615ae4565b50919695505050505050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b5f60208284031215615b7d575f80fd5b8151600481106118f1575f80fd5b5f60208284031215615b9b575f80fd5b5051919050565b5f60208284031215615bb2575f80fd5b81516118f18161543e565b5f60208284031215615bcd575f80fd5b81516118f1816155f1565b634e487b7160e01b5f52600160045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610efe57610efe615bec565b634e487b7160e01b5f52601260045260245ffd5b5f82615c3957615c39615c17565b500490565b6001600160a01b039384168152919092166020820152604081019190915260600190565b5f805f805f60a08688031215615c76575f80fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b6001600160a01b038481168252831660208201526060604082018190525f90611251908301846155a5565b80820180821115610efe57610efe615bec565b6001600160a01b038581168252602080830186905260806040840181905285519084018190525f9286830192909160a0860190855b81811015615d2f578551851683529483019491830191600101615d11565b50508581036060870152615d4381886155a5565b9a9950505050505050505050565b81810381811115610efe57610efe615bec565b5f82615d7257615d72615c17565b500690565b634e487b7160e01b5f52603160045260245ffdfeef159d9a32b2472e32b098f954f3ce62d232939f1c207070b584df1814de2de0a264697066735822122070c4afbd439c34c00318e3ed3a5ca753ed0692cba57135d330fa6f05898f92e564736f6c63430008170033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.