ETH Price: $3,513.22 (-0.01%)
Gas: 2 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

1,492,529.34535241 ERC20 ***

Holders

89

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CErc20Immutable

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-04-29
*/

// File: contracts/ComptrollerInterface.sol

pragma solidity ^0.5.12;

interface ComptrollerInterface {
    /**
     * @notice Marker function used for light validation when updating the comptroller of a market
     * @dev Implementations should simply return true.
     * @return true
     */
    function isComptroller() external view returns (bool);

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

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

    /*** Policy Hooks ***/

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

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

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

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

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

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

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

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

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

// File: contracts/InterestRateModel.sol

pragma solidity ^0.5.12;

/**
  * @title Compound's InterestRateModel Interface
  * @author Compound
  */
interface InterestRateModel {
    /**
     * @notice Indicator that this is an InterestRateModel contract (for inspection)
     */
    function isInterestRateModel() external pure returns (bool);

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

    /**
      * @notice Calculates the current supply interest rate per block
      * @param cash The total amount of cash the market has
      * @param borrows The total amount of borrows the market has outstanding
      * @param reserves The total amnount 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) external view returns (uint);

}

// File: contracts/CTokenInterfaces.sol

pragma solidity ^0.5.12;



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;

    /**
     * @notice Maximum borrow rate that can ever be applied (.0005% / block)
     */

    uint internal constant borrowRateMaxMantissa = 0.0005e16;

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

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

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

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

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

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

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

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

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

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

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, address cTokenCollateral, uint seizeTokens);


    /*** Admin Events ***/

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

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

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

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

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

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

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

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

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

    /**
     * @notice Failure event
     */
    event Failure(uint error, uint info, uint detail);


    /*** User Interface ***/

    function transfer(address dst, uint amount) external returns (bool);
    function transferFrom(address src, address dst, uint amount) external returns (bool);
    function approve(address spender, uint amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function balanceOfUnderlying(address owner) external returns (uint);
    function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint);
    function borrowRatePerBlock() external view returns (uint);
    function supplyRatePerBlock() external view returns (uint);
    function totalBorrowsCurrent() external returns (uint);
    function borrowBalanceCurrent(address account) external returns (uint);
    function borrowBalanceStored(address account) public view returns (uint);
    function exchangeRateCurrent() public returns (uint);
    function exchangeRateStored() public view returns (uint);
    function getCash() external view returns (uint);
    function accrueInterest() public returns (uint);
    function seize(address liquidator, address borrower, uint seizeTokens) external returns (uint);


    /*** Admin Functions ***/

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

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

contract CErc20Interface is CErc20Storage {

    /*** User Interface ***/

    function mint(uint mintAmount) external returns (uint);
    function redeem(uint redeemTokens) external returns (uint);
    function redeemUnderlying(uint redeemAmount) external returns (uint);
    function borrow(uint borrowAmount) external returns (uint);
    function repayBorrow(uint repayAmount) external returns (uint);
    function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint);
    function liquidateBorrow(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) external returns (uint);


    /*** Admin Functions ***/

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

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

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

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

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

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

// File: contracts/ErrorReporter.sol

pragma solidity ^0.5.12;

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

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

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

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

        return uint(err);
    }

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

        return uint(err);
    }
}

contract TokenErrorReporter {
    enum Error {
        NO_ERROR,
        UNAUTHORIZED,
        BAD_INPUT,
        COMPTROLLER_REJECTION,
        COMPTROLLER_CALCULATION_ERROR,
        INTEREST_RATE_MODEL_ERROR,
        INVALID_ACCOUNT_PAIR,
        INVALID_CLOSE_AMOUNT_REQUESTED,
        INVALID_COLLATERAL_FACTOR,
        MATH_ERROR,
        MARKET_NOT_FRESH,
        MARKET_NOT_LISTED,
        TOKEN_INSUFFICIENT_ALLOWANCE,
        TOKEN_INSUFFICIENT_BALANCE,
        TOKEN_INSUFFICIENT_CASH,
        TOKEN_TRANSFER_IN_FAILED,
        TOKEN_TRANSFER_OUT_FAILED
    }

    /*
     * Note: FailureInfo (but not Error) is kept in alphabetical order
     *       This is because FailureInfo grows significantly faster, and
     *       the order of Error has some meaning, while the order of FailureInfo
     *       is entirely arbitrary.
     */
    enum FailureInfo {
        ACCEPT_ADMIN_PENDING_ADMIN_CHECK,
        ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED,
        ACCRUE_INTEREST_BORROW_RATE_CALCULATION_FAILED,
        ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED,
        ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED,
        ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED,
        ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED,
        BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED,
        BORROW_ACCRUE_INTEREST_FAILED,
        BORROW_CASH_NOT_AVAILABLE,
        BORROW_FRESHNESS_CHECK,
        BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED,
        BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED,
        BORROW_MARKET_NOT_LISTED,
        BORROW_COMPTROLLER_REJECTION,
        LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED,
        LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED,
        LIQUIDATE_COLLATERAL_FRESHNESS_CHECK,
        LIQUIDATE_COMPTROLLER_REJECTION,
        LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED,
        LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX,
        LIQUIDATE_CLOSE_AMOUNT_IS_ZERO,
        LIQUIDATE_FRESHNESS_CHECK,
        LIQUIDATE_LIQUIDATOR_IS_BORROWER,
        LIQUIDATE_REPAY_BORROW_FRESH_FAILED,
        LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED,
        LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED,
        LIQUIDATE_SEIZE_COMPTROLLER_REJECTION,
        LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER,
        LIQUIDATE_SEIZE_TOO_MUCH,
        MINT_ACCRUE_INTEREST_FAILED,
        MINT_COMPTROLLER_REJECTION,
        MINT_EXCHANGE_CALCULATION_FAILED,
        MINT_EXCHANGE_RATE_READ_FAILED,
        MINT_FRESHNESS_CHECK,
        MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED,
        MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED,
        MINT_TRANSFER_IN_FAILED,
        MINT_TRANSFER_IN_NOT_POSSIBLE,
        REDEEM_ACCRUE_INTEREST_FAILED,
        REDEEM_COMPTROLLER_REJECTION,
        REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED,
        REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED,
        REDEEM_EXCHANGE_RATE_READ_FAILED,
        REDEEM_FRESHNESS_CHECK,
        REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED,
        REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED,
        REDEEM_TRANSFER_OUT_NOT_POSSIBLE,
        REDUCE_RESERVES_ACCRUE_INTEREST_FAILED,
        REDUCE_RESERVES_ADMIN_CHECK,
        REDUCE_RESERVES_CASH_NOT_AVAILABLE,
        REDUCE_RESERVES_FRESH_CHECK,
        REDUCE_RESERVES_VALIDATION,
        REPAY_BEHALF_ACCRUE_INTEREST_FAILED,
        REPAY_BORROW_ACCRUE_INTEREST_FAILED,
        REPAY_BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED,
        REPAY_BORROW_COMPTROLLER_REJECTION,
        REPAY_BORROW_FRESHNESS_CHECK,
        REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED,
        REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED,
        REPAY_BORROW_TRANSFER_IN_NOT_POSSIBLE,
        SET_COLLATERAL_FACTOR_OWNER_CHECK,
        SET_COLLATERAL_FACTOR_VALIDATION,
        SET_COMPTROLLER_OWNER_CHECK,
        SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED,
        SET_INTEREST_RATE_MODEL_FRESH_CHECK,
        SET_INTEREST_RATE_MODEL_OWNER_CHECK,
        SET_MAX_ASSETS_OWNER_CHECK,
        SET_ORACLE_MARKET_NOT_LISTED,
        SET_PENDING_ADMIN_OWNER_CHECK,
        SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED,
        SET_RESERVE_FACTOR_ADMIN_CHECK,
        SET_RESERVE_FACTOR_FRESH_CHECK,
        SET_RESERVE_FACTOR_BOUNDS_CHECK,
        TRANSFER_COMPTROLLER_REJECTION,
        TRANSFER_NOT_ALLOWED,
        TRANSFER_NOT_ENOUGH,
        TRANSFER_TOO_MUCH,
        ADD_RESERVES_ACCRUE_INTEREST_FAILED,
        ADD_RESERVES_FRESH_CHECK,
        ADD_RESERVES_TRANSFER_IN_NOT_POSSIBLE
    }

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

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

        return uint(err);
    }

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

        return uint(err);
    }
}

// File: contracts/CarefulMath.sol

pragma solidity ^0.5.12;

/**
  * @title Careful Math
  * @author Compound
  * @notice Derived from OpenZeppelin's SafeMath library
  *         https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol
  */
contract CarefulMath {

    /**
     * @dev Possible error codes that we can return
     */
    enum MathError {
        NO_ERROR,
        DIVISION_BY_ZERO,
        INTEGER_OVERFLOW,
        INTEGER_UNDERFLOW
    }

    /**
    * @dev Multiplies two numbers, returns an error on overflow.
    */
    function mulUInt(uint a, uint b) internal pure returns (MathError, uint) {
        if (a == 0) {
            return (MathError.NO_ERROR, 0);
        }

        uint c = a * b;

        if (c / a != b) {
            return (MathError.INTEGER_OVERFLOW, 0);
        } else {
            return (MathError.NO_ERROR, c);
        }
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function divUInt(uint a, uint b) internal pure returns (MathError, uint) {
        if (b == 0) {
            return (MathError.DIVISION_BY_ZERO, 0);
        }

        return (MathError.NO_ERROR, a / b);
    }

    /**
    * @dev Subtracts two numbers, returns an error on overflow (i.e. if subtrahend is greater than minuend).
    */
    function subUInt(uint a, uint b) internal pure returns (MathError, uint) {
        if (b <= a) {
            return (MathError.NO_ERROR, a - b);
        } else {
            return (MathError.INTEGER_UNDERFLOW, 0);
        }
    }

    /**
    * @dev Adds two numbers, returns an error on overflow.
    */
    function addUInt(uint a, uint b) internal pure returns (MathError, uint) {
        uint c = a + b;

        if (c >= a) {
            return (MathError.NO_ERROR, c);
        } else {
            return (MathError.INTEGER_OVERFLOW, 0);
        }
    }

    /**
    * @dev add a and b and then subtract c
    */
    function addThenSubUInt(uint a, uint b, uint c) internal pure returns (MathError, uint) {
        (MathError err0, uint sum) = addUInt(a, b);

        if (err0 != MathError.NO_ERROR) {
            return (err0, 0);
        }

        return subUInt(sum, c);
    }
}

// File: contracts/Exponential.sol

pragma solidity ^0.5.12;


/**
 * @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 Exponential is CarefulMath {
    uint constant expScale = 1e18;
    uint constant halfExpScale = expScale/2;
    uint constant mantissaOne = expScale;

    struct Exp {
        uint mantissa;
    }

    /**
     * @dev Creates an exponential from numerator and denominator values.
     *      Note: Returns an error if (`num` * 10e18) > MAX_INT,
     *            or if `denom` is zero.
     */
    function getExp(uint num, uint denom) pure internal returns (MathError, Exp memory) {
        (MathError err0, uint scaledNumerator) = mulUInt(num, expScale);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        (MathError err1, uint rational) = divUInt(scaledNumerator, denom);
        if (err1 != MathError.NO_ERROR) {
            return (err1, Exp({mantissa: 0}));
        }

        return (MathError.NO_ERROR, Exp({mantissa: rational}));
    }

    /**
     * @dev Adds two exponentials, returning a new exponential.
     */
    function addExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {
        (MathError error, uint result) = addUInt(a.mantissa, b.mantissa);

        return (error, Exp({mantissa: result}));
    }

    /**
     * @dev Subtracts two exponentials, returning a new exponential.
     */
    function subExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {
        (MathError error, uint result) = subUInt(a.mantissa, b.mantissa);

        return (error, Exp({mantissa: result}));
    }

    /**
     * @dev Multiply an Exp by a scalar, returning a new Exp.
     */
    function mulScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) {
        (MathError err0, uint scaledMantissa) = mulUInt(a.mantissa, scalar);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        return (MathError.NO_ERROR, Exp({mantissa: scaledMantissa}));
    }

    /**
     * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer.
     */
    function mulScalarTruncate(Exp memory a, uint scalar) pure internal returns (MathError, uint) {
        (MathError err, Exp memory product) = mulScalar(a, scalar);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

        return (MathError.NO_ERROR, truncate(product));
    }

    /**
     * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer.
     */
    function mulScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (MathError, uint) {
        (MathError err, Exp memory product) = mulScalar(a, scalar);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

        return addUInt(truncate(product), addend);
    }

    /**
     * @dev Divide an Exp by a scalar, returning a new Exp.
     */
    function divScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) {
        (MathError err0, uint descaledMantissa) = divUInt(a.mantissa, scalar);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        return (MathError.NO_ERROR, Exp({mantissa: descaledMantissa}));
    }

    /**
     * @dev Divide a scalar by an Exp, returning a new Exp.
     */
    function divScalarByExp(uint scalar, Exp memory divisor) pure internal returns (MathError, Exp memory) {
        /*
          We are doing this as:
          getExp(mulUInt(expScale, scalar), divisor.mantissa)

          How it works:
          Exp = a / b;
          Scalar = s;
          `s / (a / b)` = `b * s / a` and since for an Exp `a = mantissa, b = expScale`
        */
        (MathError err0, uint numerator) = mulUInt(expScale, scalar);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }
        return getExp(numerator, divisor.mantissa);
    }

    /**
     * @dev Divide a scalar by an Exp, then truncate to return an unsigned integer.
     */
    function divScalarByExpTruncate(uint scalar, Exp memory divisor) pure internal returns (MathError, uint) {
        (MathError err, Exp memory fraction) = divScalarByExp(scalar, divisor);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

        return (MathError.NO_ERROR, truncate(fraction));
    }

    /**
     * @dev Multiplies two exponentials, returning a new exponential.
     */
    function mulExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {

        (MathError err0, uint doubleScaledProduct) = mulUInt(a.mantissa, b.mantissa);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        // We add half the scale before dividing so that we get rounding instead of truncation.
        //  See "Listing 6" and text above it at https://accu.org/index.php/journals/1717
        // Without this change, a result like 6.6...e-19 will be truncated to 0 instead of being rounded to 1e-18.
        (MathError err1, uint doubleScaledProductWithHalfScale) = addUInt(halfExpScale, doubleScaledProduct);
        if (err1 != MathError.NO_ERROR) {
            return (err1, Exp({mantissa: 0}));
        }

        (MathError err2, uint product) = divUInt(doubleScaledProductWithHalfScale, expScale);
        // The only error `div` can return is MathError.DIVISION_BY_ZERO but we control `expScale` and it is not zero.
        assert(err2 == MathError.NO_ERROR);

        return (MathError.NO_ERROR, Exp({mantissa: product}));
    }

    /**
     * @dev Multiplies two exponentials given their mantissas, returning a new exponential.
     */
    function mulExp(uint a, uint b) pure internal returns (MathError, Exp memory) {
        return mulExp(Exp({mantissa: a}), Exp({mantissa: b}));
    }

    /**
     * @dev Multiplies three exponentials, returning a new exponential.
     */
    function mulExp3(Exp memory a, Exp memory b, Exp memory c) pure internal returns (MathError, Exp memory) {
        (MathError err, Exp memory ab) = mulExp(a, b);
        if (err != MathError.NO_ERROR) {
            return (err, ab);
        }
        return mulExp(ab, c);
    }

    /**
     * @dev Divides two exponentials, returning a new exponential.
     *     (a/scale) / (b/scale) = (a/scale) * (scale/b) = a/b,
     *  which we can scale as an Exp by calling getExp(a.mantissa, b.mantissa)
     */
    function divExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {
        return getExp(a.mantissa, b.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 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;
    }
}

// File: contracts/EIP20Interface.sol

pragma solidity ^0.5.12;

/**
 * @title ERC 20 Token Standard Interface
 *  https://eips.ethereum.org/EIPS/eip-20
 */
interface EIP20Interface {

    /**
      * @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 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 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 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 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 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: contracts/EIP20NonStandardInterface.sol

pragma solidity ^0.5.12;

/**
 * @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 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 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 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: contracts/CToken.sol

pragma solidity ^0.5.12;








/**
 * @title Compound's CToken Contract
 * @notice Abstract base for CTokens
 * @author Compound
 */
contract CToken is CTokenInterface, Exponential, 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_) public {
        require(msg.sender == admin, "only admin may initialize the market");
        require(accrualBlockNumber == 0 && borrowIndex == 0, "market may only be initialized once");

        // Set initial exchange rate
        initialExchangeRateMantissa = initialExchangeRateMantissa_;
        require(initialExchangeRateMantissa > 0, "initial exchange rate must be greater than zero.");

        // Set the comptroller
        uint err = _setComptroller(comptroller_);
        require(err == uint(Error.NO_ERROR), "setting comptroller failed");

        // 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_);
        require(err == uint(Error.NO_ERROR), "setting interest rate model failed");

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

    /**
     * @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 Whether or not the transfer succeeded
     */
    function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) {
        /* Fail if transfer not allowed */
        uint allowed = comptroller.transferAllowed(address(this), src, dst, tokens);
        if (allowed != 0) {
            return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.TRANSFER_COMPTROLLER_REJECTION, allowed);
        }

        /* Do not allow self-transfers */
        if (src == dst) {
            return fail(Error.BAD_INPUT, FailureInfo.TRANSFER_NOT_ALLOWED);
        }

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

        /* Do the calculations, checking for {under,over}flow */
        MathError mathErr;
        uint allowanceNew;
        uint srcTokensNew;
        uint dstTokensNew;

        (mathErr, allowanceNew) = subUInt(startingAllowance, tokens);
        if (mathErr != MathError.NO_ERROR) {
            return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ALLOWED);
        }

        (mathErr, srcTokensNew) = subUInt(accountTokens[src], tokens);
        if (mathErr != MathError.NO_ERROR) {
            return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ENOUGH);
        }

        (mathErr, dstTokensNew) = addUInt(accountTokens[dst], tokens);
        if (mathErr != MathError.NO_ERROR) {
            return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_TOO_MUCH);
        }

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

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

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

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

        comptroller.transferVerify(address(this), src, dst, tokens);

        return uint(Error.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) external nonReentrant returns (bool) {
        return transferTokens(msg.sender, msg.sender, dst, amount) == uint(Error.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) external nonReentrant returns (bool) {
        return transferTokens(msg.sender, src, dst, amount) == uint(Error.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 (-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 amount) 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) 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) 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) external returns (uint) {
        Exp memory exchangeRate = Exp({mantissa: exchangeRateCurrent()});
        (MathError mErr, uint balance) = mulScalarTruncate(exchangeRate, accountTokens[owner]);
        require(mErr == MathError.NO_ERROR, "balance could not be calculated");
        return balance;
    }

    /**
     * @notice Get a snapshot of the account's balances, and the cached exchange rate
     * @dev This is used by comptroller to more efficiently perform liquidity checks.
     * @param account Address of the account to snapshot
     * @return (possible error, token balance, borrow balance, exchange rate mantissa)
     */
    function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint) {
        uint cTokenBalance = accountTokens[account];
        uint borrowBalance;
        uint exchangeRateMantissa;

        MathError mErr;

        (mErr, borrowBalance) = borrowBalanceStoredInternal(account);
        if (mErr != MathError.NO_ERROR) {
            return (uint(Error.MATH_ERROR), 0, 0, 0);
        }

        (mErr, exchangeRateMantissa) = exchangeRateStoredInternal();
        if (mErr != MathError.NO_ERROR) {
            return (uint(Error.MATH_ERROR), 0, 0, 0);
        }

        return (uint(Error.NO_ERROR), cTokenBalance, borrowBalance, exchangeRateMantissa);
    }

    /**
     * @dev Function to simply retrieve block number
     *  This exists mainly for inheriting test contracts to stub this result.
     */
    function getBlockNumber() 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() 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() 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() external nonReentrant returns (uint) {
        require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed");
        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) external nonReentrant returns (uint) {
        require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed");
        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) public view returns (uint) {
        (MathError err, uint result) = borrowBalanceStoredInternal(account);
        require(err == MathError.NO_ERROR, "borrowBalanceStored: borrowBalanceStoredInternal failed");
        return result;
    }

    /**
     * @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) internal view returns (MathError, uint) {
        /* Note: we do not assert that the market is up to date */
        MathError mathErr;
        uint principalTimesIndex;
        uint result;

        /* 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 (MathError.NO_ERROR, 0);
        }

        /* Calculate new borrow balance using the interest index:
         *  recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex
         */
        (mathErr, principalTimesIndex) = mulUInt(borrowSnapshot.principal, borrowIndex);
        if (mathErr != MathError.NO_ERROR) {
            return (mathErr, 0);
        }

        (mathErr, result) = divUInt(principalTimesIndex, borrowSnapshot.interestIndex);
        if (mathErr != MathError.NO_ERROR) {
            return (mathErr, 0);
        }

        return (MathError.NO_ERROR, result);
    }

    /**
     * @notice Accrue interest then return the up-to-date exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateCurrent() public nonReentrant returns (uint) {
        require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed");
        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() public view returns (uint) {
        (MathError err, uint result) = exchangeRateStoredInternal();
        require(err == MathError.NO_ERROR, "exchangeRateStored: exchangeRateStoredInternal failed");
        return result;
    }

    /**
     * @notice Calculates the exchange rate from the underlying to the CToken
     * @dev This function does not accrue interest before calculating the exchange rate
     * @return (error code, calculated exchange rate scaled by 1e18)
     */
    function exchangeRateStoredInternal() internal view returns (MathError, uint) {
        if (totalSupply == 0) {
            /*
             * If there are no tokens minted:
             *  exchangeRate = initialExchangeRate
             */
            return (MathError.NO_ERROR, initialExchangeRateMantissa);
        } else {
            /*
             * Otherwise:
             *  exchangeRate = (totalCash + totalBorrows - totalReserves) / totalSupply
             */
            uint totalCash = getCashPrior();
            uint cashPlusBorrowsMinusReserves;
            Exp memory exchangeRate;
            MathError mathErr;

            (mathErr, cashPlusBorrowsMinusReserves) = addThenSubUInt(totalCash, totalBorrows, totalReserves);
            if (mathErr != MathError.NO_ERROR) {
                return (mathErr, 0);
            }

            (mathErr, exchangeRate) = getExp(cashPlusBorrowsMinusReserves, totalSupply);
            if (mathErr != MathError.NO_ERROR) {
                return (mathErr, 0);
            }

            return (MathError.NO_ERROR, exchangeRate.mantissa);
        }
    }

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

    struct AccrueInterestLocalVars {
        MathError mathErr;
        uint opaqueErr;
        uint borrowRateMantissa;
        uint currentBlockNumber;
        uint blockDelta;

        Exp simpleInterestFactor;

        uint interestAccumulated;
        uint totalBorrowsNew;
        uint totalReservesNew;
        uint borrowIndexNew;
    }

    /**
     * @notice Applies accrued interest to total borrows and reserves
     * @dev This calculates interest accrued from the last checkpointed block
     *   up to the current block and writes new checkpoint to storage.
     */
    function accrueInterest() public returns (uint) {
        AccrueInterestLocalVars memory vars;
        uint cashPrior = getCashPrior();

        /* Calculate the current borrow interest rate */
        vars.borrowRateMantissa = interestRateModel.getBorrowRate(cashPrior, totalBorrows, totalReserves);
        require(vars.borrowRateMantissa <= borrowRateMaxMantissa, "borrow rate is absurdly high");

        /* Remember the initial block number */
        vars.currentBlockNumber = getBlockNumber();

        /* Calculate the number of blocks elapsed since the last accrual */
        (vars.mathErr, vars.blockDelta) = subUInt(vars.currentBlockNumber, accrualBlockNumber);
        require(vars.mathErr == MathError.NO_ERROR, "could not calculate block delta");

        /*
         * 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
         */
        (vars.mathErr, vars.simpleInterestFactor) = mulScalar(Exp({mantissa: vars.borrowRateMantissa}), vars.blockDelta);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.interestAccumulated) = mulScalarTruncate(vars.simpleInterestFactor, totalBorrows);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.totalBorrowsNew) = addUInt(vars.interestAccumulated, totalBorrows);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.totalReservesNew) = mulScalarTruncateAddUInt(Exp({mantissa: reserveFactorMantissa}), vars.interestAccumulated, totalReserves);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.borrowIndexNew) = mulScalarTruncateAddUInt(vars.simpleInterestFactor, borrowIndex, borrowIndex);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED, uint(vars.mathErr));
        }

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

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

        /* We emit an AccrueInterest event */
        emit AccrueInterest(cashPrior, vars.interestAccumulated, vars.borrowIndexNew, totalBorrows);

        return uint(Error.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
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount.
     */
    function mintInternal(uint mintAmount) internal nonReentrant returns (uint, uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed
            return (fail(Error(error), FailureInfo.MINT_ACCRUE_INTEREST_FAILED), 0);
        }
        // mintFresh emits the actual Mint event if successful and logs on errors, so we don't need to
        return mintFresh(msg.sender, mintAmount);
    }

    struct MintLocalVars {
        Error err;
        MathError mathErr;
        uint exchangeRateMantissa;
        uint mintTokens;
        uint totalSupplyNew;
        uint accountTokensNew;
        uint actualMintAmount;
    }

    /**
     * @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
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount.
     */
    function mintFresh(address minter, uint mintAmount) internal returns (uint, uint) {
        /* Fail if mint not allowed */
        uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount);
        if (allowed != 0) {
            return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.MINT_COMPTROLLER_REJECTION, allowed), 0);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            return (fail(Error.MARKET_NOT_FRESH, FailureInfo.MINT_FRESHNESS_CHECK), 0);
        }

        MintLocalVars memory vars;

        /* Fail if checkTransferIn fails */
        vars.err = checkTransferIn(minter, mintAmount);
        if (vars.err != Error.NO_ERROR) {
            return (fail(vars.err, FailureInfo.MINT_TRANSFER_IN_NOT_POSSIBLE), 0);
        }

        (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal();
        if (vars.mathErr != MathError.NO_ERROR) {
            return (failOpaque(Error.MATH_ERROR, FailureInfo.MINT_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)), 0);
        }

        /////////////////////////
        // 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.
         */
        vars.actualMintAmount = doTransferIn(minter, mintAmount);

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

        (vars.mathErr, vars.mintTokens) = divScalarByExpTruncate(vars.actualMintAmount, Exp({mantissa: vars.exchangeRateMantissa}));
        require(vars.mathErr == MathError.NO_ERROR, "MINT_EXCHANGE_CALCULATION_FAILED");

        /*
         * We calculate the new total supply of cTokens and minter token balance, checking for overflow:
         *  totalSupplyNew = totalSupply + mintTokens
         *  accountTokensNew = accountTokens[minter] + mintTokens
         */
        (vars.mathErr, vars.totalSupplyNew) = addUInt(totalSupply, vars.mintTokens);
        require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED");

        (vars.mathErr, vars.accountTokensNew) = addUInt(accountTokens[minter], vars.mintTokens);
        require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED");

        /* We write previously calculated values into storage */
        totalSupply = vars.totalSupplyNew;
        accountTokens[minter] = vars.accountTokensNew;

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

        /* We call the defense hook */
        comptroller.mintVerify(address(this), minter, vars.actualMintAmount, vars.mintTokens);

        return (uint(Error.NO_ERROR), vars.actualMintAmount);
    }

    /**
     * @notice Sender redeems cTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of cTokens to redeem into underlying
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemInternal(uint redeemTokens) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed
            return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED);
        }
        // redeemFresh emits redeem-specific logs on errors, so we don't need to
        return redeemFresh(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
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemUnderlyingInternal(uint redeemAmount) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed
            return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED);
        }
        // redeemFresh emits redeem-specific logs on errors, so we don't need to
        return redeemFresh(msg.sender, 0, redeemAmount);
    }

    struct RedeemLocalVars {
        Error err;
        MathError mathErr;
        uint exchangeRateMantissa;
        uint redeemTokens;
        uint redeemAmount;
        uint totalSupplyNew;
        uint accountTokensNew;
    }

    /**
     * @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)
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemFresh(address payable redeemer, uint redeemTokensIn, uint redeemAmountIn) internal returns (uint) {
        require(redeemTokensIn == 0 || redeemAmountIn == 0, "one of redeemTokensIn or redeemAmountIn must be zero");

        RedeemLocalVars memory vars;

        /* exchangeRate = invoke Exchange Rate Stored() */
        (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal();
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr));
        }

        /* 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
             */
            vars.redeemTokens = redeemTokensIn;

            (vars.mathErr, vars.redeemAmount) = mulScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), redeemTokensIn);
            if (vars.mathErr != MathError.NO_ERROR) {
                return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, uint(vars.mathErr));
            }
        } else {
            /*
             * We get the current exchange rate and calculate the amount to be redeemed:
             *  redeemTokens = redeemAmountIn / exchangeRate
             *  redeemAmount = redeemAmountIn
             */

            (vars.mathErr, vars.redeemTokens) = divScalarByExpTruncate(redeemAmountIn, Exp({mantissa: vars.exchangeRateMantissa}));
            if (vars.mathErr != MathError.NO_ERROR) {
                return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED, uint(vars.mathErr));
            }

            vars.redeemAmount = redeemAmountIn;
        }

        /* Fail if redeem not allowed */
        uint allowed = comptroller.redeemAllowed(address(this), redeemer, vars.redeemTokens);
        if (allowed != 0) {
            return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REDEEM_COMPTROLLER_REJECTION, allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDEEM_FRESHNESS_CHECK);
        }

        /*
         * We calculate the new total supply and redeemer balance, checking for underflow:
         *  totalSupplyNew = totalSupply - redeemTokens
         *  accountTokensNew = accountTokens[redeemer] - redeemTokens
         */
        (vars.mathErr, vars.totalSupplyNew) = subUInt(totalSupply, vars.redeemTokens);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.accountTokensNew) = subUInt(accountTokens[redeemer], vars.redeemTokens);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

        /* Fail gracefully if protocol has insufficient cash */
        if (getCashPrior() < vars.redeemAmount) {
            return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDEEM_TRANSFER_OUT_NOT_POSSIBLE);
        }

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

        /*
         * 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, vars.redeemAmount);

        /* We write previously calculated values into storage */
        totalSupply = vars.totalSupplyNew;
        accountTokens[redeemer] = vars.accountTokensNew;

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

        /* We call the defense hook */
        comptroller.redeemVerify(address(this), redeemer, vars.redeemAmount, vars.redeemTokens);

        return uint(Error.NO_ERROR);
    }

    /**
      * @notice Sender borrows assets from the protocol to their own address
      * @param borrowAmount The amount of the underlying asset to borrow
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function borrowInternal(uint borrowAmount) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed
            return fail(Error(error), FailureInfo.BORROW_ACCRUE_INTEREST_FAILED);
        }
        // borrowFresh emits borrow-specific logs on errors, so we don't need to
        return borrowFresh(msg.sender, borrowAmount);
    }

    struct BorrowLocalVars {
        MathError mathErr;
        uint accountBorrows;
        uint accountBorrowsNew;
        uint totalBorrowsNew;
    }

    /**
      * @notice Users borrow assets from the protocol to their own address
      * @param borrowAmount The amount of the underlying asset to borrow
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function borrowFresh(address payable borrower, uint borrowAmount) internal returns (uint) {
        /* Fail if borrow not allowed */
        uint allowed = comptroller.borrowAllowed(address(this), borrower, borrowAmount);
        if (allowed != 0) {
            return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.BORROW_COMPTROLLER_REJECTION, allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.BORROW_FRESHNESS_CHECK);
        }

        /* Fail gracefully if protocol has insufficient underlying cash */
        if (getCashPrior() < borrowAmount) {
            return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.BORROW_CASH_NOT_AVAILABLE);
        }

        BorrowLocalVars memory vars;

        /*
         * We calculate the new borrower and total borrow balances, failing on overflow:
         *  accountBorrowsNew = accountBorrows + borrowAmount
         *  totalBorrowsNew = totalBorrows + borrowAmount
         */
        (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.accountBorrowsNew) = addUInt(vars.accountBorrows, borrowAmount);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.totalBorrowsNew) = addUInt(totalBorrows, borrowAmount);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

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

        /*
         * 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 write the previously calculated values into storage */
        accountBorrows[borrower].principal = vars.accountBorrowsNew;
        accountBorrows[borrower].interestIndex = borrowIndex;
        totalBorrows = vars.totalBorrowsNew;

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

        /* We call the defense hook */
        comptroller.borrowVerify(address(this), borrower, borrowAmount);

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Sender repays their own borrow
     * @param repayAmount The amount to repay
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount.
     */
    function repayBorrowInternal(uint repayAmount) internal nonReentrant returns (uint, uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed
            return (fail(Error(error), FailureInfo.REPAY_BORROW_ACCRUE_INTEREST_FAILED), 0);
        }
        // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to
        return 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
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount.
     */
    function repayBorrowBehalfInternal(address borrower, uint repayAmount) internal nonReentrant returns (uint, uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed
            return (fail(Error(error), FailureInfo.REPAY_BEHALF_ACCRUE_INTEREST_FAILED), 0);
        }
        // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to
        return repayBorrowFresh(msg.sender, borrower, repayAmount);
    }

    struct RepayBorrowLocalVars {
        Error err;
        MathError mathErr;
        uint repayAmount;
        uint borrowerIndex;
        uint accountBorrows;
        uint accountBorrowsNew;
        uint totalBorrowsNew;
        uint actualRepayAmount;
    }

    /**
     * @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 undelrying tokens being returned
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount.
     */
    function repayBorrowFresh(address payer, address borrower, uint repayAmount) internal returns (uint, uint) {
        /* Fail if repayBorrow not allowed */
        uint allowed = comptroller.repayBorrowAllowed(address(this), payer, borrower, repayAmount);
        if (allowed != 0) {
            return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REPAY_BORROW_COMPTROLLER_REJECTION, allowed), 0);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            return (fail(Error.MARKET_NOT_FRESH, FailureInfo.REPAY_BORROW_FRESHNESS_CHECK), 0);
        }

        RepayBorrowLocalVars memory vars;

        /* We remember the original borrowerIndex for verification purposes */
        vars.borrowerIndex = accountBorrows[borrower].interestIndex;

        /* We fetch the amount the borrower owes, with accumulated interest */
        (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower);
        if (vars.mathErr != MathError.NO_ERROR) {
            return (failOpaque(Error.MATH_ERROR, FailureInfo.REPAY_BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)), 0);
        }

        /* If repayAmount == -1, repayAmount = accountBorrows */
        if (repayAmount == uint(-1)) {
            vars.repayAmount = vars.accountBorrows;
        } else {
            vars.repayAmount = repayAmount;
        }

        /* Fail if checkTransferIn fails */
        vars.err = checkTransferIn(payer, vars.repayAmount);
        if (vars.err != Error.NO_ERROR) {
            return (fail(vars.err, FailureInfo.REPAY_BORROW_TRANSFER_IN_NOT_POSSIBLE), 0);
        }

        /////////////////////////
        // 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.
         */
        vars.actualRepayAmount = doTransferIn(payer, vars.repayAmount);

        /*
         * We calculate the new borrower and total borrow balances, failing on underflow:
         *  accountBorrowsNew = accountBorrows - actualRepayAmount
         *  totalBorrowsNew = totalBorrows - actualRepayAmount
         */
        (vars.mathErr, vars.accountBorrowsNew) = subUInt(vars.accountBorrows, vars.actualRepayAmount);
        require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED");

        (vars.mathErr, vars.totalBorrowsNew) = subUInt(totalBorrows, vars.actualRepayAmount);
        require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED");

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

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

        /* We call the defense hook */
        comptroller.repayBorrowVerify(address(this), payer, borrower, vars.actualRepayAmount, vars.borrowerIndex);

        return (uint(Error.NO_ERROR), vars.actualRepayAmount);
    }

    /**
     * @notice The sender liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this cToken to be liquidated
     * @param cTokenCollateral The market in which to seize collateral from the borrower
     * @param repayAmount The amount of the underlying borrowed asset to repay
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount.
     */
    function liquidateBorrowInternal(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal nonReentrant returns (uint, uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed
            return (fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED), 0);
        }

        error = cTokenCollateral.accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed
            return (fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED), 0);
        }

        // liquidateBorrowFresh emits borrow-specific logs on errors, so we don't need to
        return liquidateBorrowFresh(msg.sender, borrower, repayAmount, cTokenCollateral);
    }

    /**
     * @notice The liquidator liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this cToken to be liquidated
     * @param liquidator The address repaying the borrow and seizing collateral
     * @param cTokenCollateral The market in which to seize collateral from the borrower
     * @param repayAmount The amount of the underlying borrowed asset to repay
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount.
     */
    function liquidateBorrowFresh(address liquidator, address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal returns (uint, uint) {
        /* Fail if liquidate not allowed */
        uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(cTokenCollateral), liquidator, borrower, repayAmount);
        if (allowed != 0) {
            return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_COMPTROLLER_REJECTION, allowed), 0);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_FRESHNESS_CHECK), 0);
        }

        /* Verify cTokenCollateral market's block number equals current block number */
        if (cTokenCollateral.accrualBlockNumber() != getBlockNumber()) {
            return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_COLLATERAL_FRESHNESS_CHECK), 0);
        }

        /* Fail if borrower = liquidator */
        if (borrower == liquidator) {
            return (fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_LIQUIDATOR_IS_BORROWER), 0);
        }

        /* Fail if repayAmount = 0 */
        if (repayAmount == 0) {
            return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_ZERO), 0);
        }

        /* Fail if repayAmount = -1 */
        if (repayAmount == uint(-1)) {
            return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX), 0);
        }


        /* Fail if repayBorrow fails */
        (uint repayBorrowError, uint actualRepayAmount) = repayBorrowFresh(liquidator, borrower, repayAmount);
        if (repayBorrowError != uint(Error.NO_ERROR)) {
            return (fail(Error(repayBorrowError), FailureInfo.LIQUIDATE_REPAY_BORROW_FRESH_FAILED), 0);
        }

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

        /* We calculate the number of collateral tokens that will be seized */
        (uint amountSeizeError, uint seizeTokens) = comptroller.liquidateCalculateSeizeTokens(address(this), address(cTokenCollateral), actualRepayAmount);
        require(amountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED");

        /* Revert if borrower collateral token balance < seizeTokens */
        require(cTokenCollateral.balanceOf(borrower) >= seizeTokens, "LIQUIDATE_SEIZE_TOO_MUCH");

        // If this is also the collateral, run seizeInternal to avoid re-entrancy, otherwise make an external call
        uint seizeError;
        if (address(cTokenCollateral) == address(this)) {
            seizeError = seizeInternal(address(this), liquidator, borrower, seizeTokens);
        } else {
            seizeError = cTokenCollateral.seize(liquidator, borrower, seizeTokens);
        }

        /* Revert if seize tokens fails (since we cannot be sure of side effects) */
        require(seizeError == uint(Error.NO_ERROR), "token seizure failed");

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

        /* We call the defense hook */
        comptroller.liquidateBorrowVerify(address(this), address(cTokenCollateral), liquidator, borrower, actualRepayAmount, seizeTokens);

        return (uint(Error.NO_ERROR), actualRepayAmount);
    }

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

    /**
     * @notice Transfers collateral tokens (this market) to the liquidator.
     * @dev Called only during an in-kind liquidation, or by liquidateBorrow during the liquidation of another CToken.
     *  Its absolutely critical to use msg.sender as the seizer cToken and not a parameter.
     * @param seizerToken The contract seizing the collateral (i.e. borrowed cToken)
     * @param liquidator The account receiving seized collateral
     * @param borrower The account having collateral seized
     * @param seizeTokens The number of cTokens to seize
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function seizeInternal(address seizerToken, address liquidator, address borrower, uint seizeTokens) internal returns (uint) {
        /* Fail if seize not allowed */
        uint allowed = comptroller.seizeAllowed(address(this), seizerToken, liquidator, borrower, seizeTokens);
        if (allowed != 0) {
            return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_SEIZE_COMPTROLLER_REJECTION, allowed);
        }

        /* Fail if borrower = liquidator */
        if (borrower == liquidator) {
            return fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER);
        }

        MathError mathErr;
        uint borrowerTokensNew;
        uint liquidatorTokensNew;

        /*
         * We calculate the new borrower and liquidator token balances, failing on underflow/overflow:
         *  borrowerTokensNew = accountTokens[borrower] - seizeTokens
         *  liquidatorTokensNew = accountTokens[liquidator] + seizeTokens
         */
        (mathErr, borrowerTokensNew) = subUInt(accountTokens[borrower], seizeTokens);
        if (mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED, uint(mathErr));
        }

        (mathErr, liquidatorTokensNew) = addUInt(accountTokens[liquidator], seizeTokens);
        if (mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED, uint(mathErr));
        }

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

        /* We write the previously calculated values into storage */
        accountTokens[borrower] = borrowerTokensNew;
        accountTokens[liquidator] = liquidatorTokensNew;

        /* Emit a Transfer event */
        emit Transfer(borrower, liquidator, seizeTokens);

        /* We call the defense hook */
        comptroller.seizeVerify(address(this), seizerToken, liquidator, borrower, seizeTokens);

        return uint(Error.NO_ERROR);
    }


    /*** Admin Functions ***/

    /**
      * @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer.
      * @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer.
      * @param newPendingAdmin New pending admin.
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _setPendingAdmin(address payable newPendingAdmin) external 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() external 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);
    }

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

        ComptrollerInterface oldComptroller = comptroller;
        // Ensure invoke comptroller.isComptroller() returns true
        require(newComptroller.isComptroller(), "marker method returned false");

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

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

        return uint(Error.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) external nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reserve factor change failed.
            return fail(Error(error), FailureInfo.SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED);
        }
        // _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) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_RESERVE_FACTOR_ADMIN_CHECK);
        }

        // Verify market's block number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_RESERVE_FACTOR_FRESH_CHECK);
        }

        // Check newReserveFactor ≤ maxReserveFactor
        if (newReserveFactorMantissa > reserveFactorMaxMantissa) {
            return fail(Error.BAD_INPUT, FailureInfo.SET_RESERVE_FACTOR_BOUNDS_CHECK);
        }

        uint oldReserveFactorMantissa = reserveFactorMantissa;
        reserveFactorMantissa = newReserveFactorMantissa;

        emit NewReserveFactor(oldReserveFactorMantissa, newReserveFactorMantissa);

        return uint(Error.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 nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reduce reserves failed.
            return fail(Error(error), FailureInfo.ADD_RESERVES_ACCRUE_INTEREST_FAILED);
        }

        // _addReservesFresh emits reserve-addition-specific logs on errors, so we don't need to.
        (error, ) = _addReservesFresh(addAmount);
        return 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 returns (uint, uint) {
        // totalReserves + actualAddAmount
        uint totalReservesNew;
        uint actualAddAmount;

        // We fail gracefully unless market's block number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            return (fail(Error.MARKET_NOT_FRESH, FailureInfo.ADD_RESERVES_FRESH_CHECK), actualAddAmount);
        }

        /* Fail if checkTransferIn fails */
        Error err = checkTransferIn(msg.sender, addAmount);
        if (err != Error.NO_ERROR) {
            return (fail(err, FailureInfo.ADD_RESERVES_TRANSFER_IN_NOT_POSSIBLE), actualAddAmount);
        }


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

        /* actualAddAmount=invoke doTransferIn(msg.sender, addAmount) */
        actualAddAmount = doTransferIn(msg.sender, addAmount);

        totalReservesNew = totalReserves + actualAddAmount;

        /* Revert on overflow */
        require(totalReservesNew >= totalReserves, "add reserves unexpected overflow");

        // 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 (uint(Error.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) external nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reduce reserves failed.
            return fail(Error(error), FailureInfo.REDUCE_RESERVES_ACCRUE_INTEREST_FAILED);
        }
        // _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 returns (uint) {
        // totalReserves - reduceAmount
        uint totalReservesNew;

        // Check caller is admin
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.REDUCE_RESERVES_ADMIN_CHECK);
        }

        // We fail gracefully unless market's block number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDUCE_RESERVES_FRESH_CHECK);
        }

        // Fail gracefully if protocol has insufficient underlying cash
        if (getCashPrior() < reduceAmount) {
            return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDUCE_RESERVES_CASH_NOT_AVAILABLE);
        }

        // Check reduceAmount ≤ reserves[n] (totalReserves)
        if (reduceAmount > totalReserves) {
            return fail(Error.BAD_INPUT, FailureInfo.REDUCE_RESERVES_VALIDATION);
        }

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

        totalReservesNew = totalReserves - reduceAmount;
        // We checked reduceAmount <= totalReserves above, so this should never revert.
        require(totalReservesNew <= totalReserves, "reduce reserves unexpected underflow");

        // 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 uint(Error.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) public returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted increase of interest rate model failed
            return fail(Error(error), FailureInfo.SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED);
        }
        // _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) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_INTEREST_RATE_MODEL_OWNER_CHECK);
        }

        // We fail gracefully unless market's block number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_INTEREST_RATE_MODEL_FRESH_CHECK);
        }

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

        // Ensure invoke newInterestRateModel.isInterestRateModel() returns true
        require(newInterestRateModel.isInterestRateModel(), "marker method returned false");

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

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

        return uint(Error.NO_ERROR);
    }

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

    /**
     * @dev Checks whether or not there is sufficient allowance for this contract to move amount from `from` and
     *      whether or not `from` has a balance of at least `amount`. Does NOT do a transfer.
     */
    function checkTransferIn(address from, uint amount) internal view returns (Error);

    /**
     * @dev Performs a transfer in, reverting upon failure. Returns the amount actually transferred to the protocol, in case of a fee.
     *  If caller has not called `checkTransferIn`, this may revert due to insufficient balance or insufficient allowance.
     *  If caller has called `checkTransferIn` successfully, this should not revert in normal conditions.
     */
    function doTransferIn(address from, uint amount) internal returns (uint);

    /**
     * @dev Performs a transfer out, ideally returning an explanatory error code upon failure tather 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) internal;


    /*** Reentrancy Guard ***/

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

// File: contracts/CErc20.sol

pragma solidity ^0.5.12;


/**
 * @title Compound's CErc20 Contract
 * @notice CTokens which wrap an EIP-20 underlying
 * @author Compound
 */
contract CErc20 is CToken, CErc20Interface {
    /**
     * @notice Initialize the new money market
     * @param underlying_ The address of the underlying asset
     * @param comptroller_ The address of the Comptroller
     * @param interestRateModel_ The address of the interest rate model
     * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18
     * @param name_ ERC-20 name of this token
     * @param symbol_ ERC-20 symbol of this token
     * @param decimals_ ERC-20 decimal precision of this token
     */
    function initialize(address underlying_,
                        ComptrollerInterface comptroller_,
                        InterestRateModel interestRateModel_,
                        uint initialExchangeRateMantissa_,
                        string memory name_,
                        string memory symbol_,
                        uint8 decimals_) public {
        // CToken initialize does the bulk of the work
        super.initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_);

        // Set underlying and sanity check it
        underlying = underlying_;
        EIP20Interface(underlying).totalSupply();
    }

    /*** User Interface ***/

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

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

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

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

    /**
     * @notice Sender repays their own borrow
     * @param repayAmount The amount to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrow(uint repayAmount) external returns (uint) {
        (uint err,) = repayBorrowInternal(repayAmount);
        return err;
    }

    /**
     * @notice Sender repays a borrow belonging to borrower
     * @param borrower the account with the debt being payed off
     * @param repayAmount The amount to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint) {
        (uint err,) = repayBorrowBehalfInternal(borrower, repayAmount);
        return err;
    }

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

    /**
     * @notice The sender adds to reserves.
     * @param addAmount The amount fo underlying token to add as reserves
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _addReserves(uint addAmount) external returns (uint) {
        return _addReservesInternal(addAmount);
    }

    /*** 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 tokens owned by this contract
     */
    function getCashPrior() internal view returns (uint) {
        EIP20Interface token = EIP20Interface(underlying);
        return token.balanceOf(address(this));
    }

    /**
     * @dev Checks whether or not there is sufficient allowance for this contract to move amount from `from` and
     *      whether or not `from` has a balance of at least `amount`. Does NOT do a transfer.
     */
    function checkTransferIn(address from, uint amount) internal view returns (Error) {
        EIP20Interface token = EIP20Interface(underlying);

        if (token.allowance(from, address(this)) < amount) {
            return Error.TOKEN_INSUFFICIENT_ALLOWANCE;
        }

        if (token.balanceOf(from) < amount) {
            return Error.TOKEN_INSUFFICIENT_BALANCE;
        }

        return Error.NO_ERROR;
    }

    /**
     * @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom` reverts in that case.
     *      If caller has not called `checkTransferIn`, this may revert due to insufficient balance or insufficient
     *      allowance. If caller has called `checkTransferIn` prior to this call, and it returned Error.NO_ERROR,
     *      this should not revert in normal conditions. This function returns the actual amount received,
     *      with may be less than `amount` if there is a fee attached with the transfer.
     *
     *      Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value.
     *            See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
     */
    function doTransferIn(address from, uint amount) internal returns (uint) {
        EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying);
        uint balanceBefore = EIP20Interface(underlying).balanceOf(address(this));
        token.transferFrom(from, address(this), amount);

        bool success;
        assembly {
            switch returndatasize()
                case 0 {                       // This is a non-standard ERC-20
                    success := not(0)          // set success to true
                }
                case 32 {                      // This is a compliant ERC-20
                    returndatacopy(0, 0, 32)
                    success := mload(0)        // Set `success = returndata` of external call
                }
                default {                      // This is an excessively non-compliant ERC-20, revert.
                    revert(0, 0)
                }
        }
        require(success, "TOKEN_TRANSFER_IN_FAILED");

        // Calculate the amount that was *actually* transferred
        uint balanceAfter = EIP20Interface(underlying).balanceOf(address(this));
        require(balanceAfter >= balanceBefore, "TOKEN_TRANSFER_IN_OVERFLOW");
        return balanceAfter - balanceBefore;   // underflow already checked above, just subtract
    }

    /**
     * @dev Similar to EIP20 transfer, except it handles a False success from `transfer` and returns an explanatory
     *      error code rather than reverting. If caller has not called checked protocol's balance, this may revert due to
     *      insufficient cash held in this contract. If caller has checked protocol's balance prior to this call, and verified
     *      it is >= amount, this should not revert in normal conditions.
     *
     *      Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value.
     *            See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
     */
    function doTransferOut(address payable to, uint amount) internal {
        EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying);
        token.transfer(to, amount);

        bool success;
        assembly {
            switch returndatasize()
                case 0 {                      // This is a non-standard ERC-20
                    success := not(0)          // set success to true
                }
                case 32 {                     // This is a complaint ERC-20
                    returndatacopy(0, 0, 32)
                    success := mload(0)        // Set `success = returndata` of external call
                }
                default {                     // This is an excessively non-compliant ERC-20, revert.
                    revert(0, 0)
                }
        }
        require(success, "TOKEN_TRANSFER_OUT_FAILED");
    }
}

// File: contracts/CErc20Immutable.sol

pragma solidity ^0.5.12;


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

        // Initialize the market
        initialize(underlying_, comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_);

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

Contract Security Audit

Contract ABI

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

60806040523480156200001157600080fd5b5060405162005d0438038062005d0483398181016040526101008110156200003857600080fd5b81516020830151604080850151606086015160808701805193519597949692959194919392820192846401000000008211156200007457600080fd5b9083019060208201858111156200008a57600080fd5b8251640100000000811182820188101715620000a557600080fd5b82525081516020918201929091019080838360005b83811015620000d4578181015183820152602001620000ba565b50505050905090810190601f168015620001025780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012657600080fd5b9083019060208201858111156200013c57600080fd5b82516401000000008111828201881017156200015757600080fd5b82525081516020918201929091019080838360005b83811015620001865781810151838201526020016200016c565b50505050905090810190601f168015620001b45780820380516001836020036101000a031916815260200191505b506040908152602082015191015160038054610100600160a81b03191633610100021790559092509050620001ef8888888888888862000223565b600380546001600160a01b0390921661010002610100600160a81b031990921691909117905550620009f595505050505050565b6200023e868686868686620002eb60201b620012611760201c565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080517f18160ddd000000000000000000000000000000000000000000000000000000008152905192909116916318160ddd91600480820192602092909190829003018186803b158015620002b457600080fd5b505afa158015620002c9573d6000803e3d6000fd5b505050506040513d6020811015620002e057600080fd5b505050505050505050565b60035461010090046001600160a01b0316331462000355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018062005c6b6024913960400191505060405180910390fd5b600954158015620003665750600a54155b620003bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018062005c8f6023913960400191505060405180910390fd5b6007849055836200041a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018062005cb26030913960400191505060405180910390fd5b600062000430876001600160e01b036200058316565b90508015620004a057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b620004b36001600160e01b036200071e16565b600955670de0b6b3a7640000600a55620004d6866001600160e01b036200072316565b9050801562000531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062005ce26022913960400191505060405180910390fd5b83516200054690600190602087019062000953565b5082516200055c90600290602086019062000953565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b60035460009061010090046001600160a01b03163314620005bd57620005b56001603f6001600160e01b03620008e316565b905062000719565b600554604080517e7e3dd200000000000000000000000000000000000000000000000000000000815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b1580156200061c57600080fd5b505afa15801562000631573d6000803e3d6000fd5b505050506040513d60208110156200064857600080fd5b5051620006b657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9150505b919050565b435b90565b600354600090819061010090046001600160a01b03163314620007605762000757600160426001600160e01b03620008e316565b91505062000719565b620007736001600160e01b036200071e16565b60095414620007935762000757600a60416001600160e01b03620008e316565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015620007e557600080fd5b505afa158015620007fa573d6000803e3d6000fd5b505050506040513d60208110156200081157600080fd5b50516200087f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a1600062000715565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08360108111156200091357fe5b8360508111156200092057fe5b604080519283526020830191909152600082820152519081900360600190a18260108111156200094c57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200099657805160ff1916838001178555620009c6565b82800160010185558215620009c6579182015b82811115620009c6578251825591602001919060010190620009a9565b50620009d4929150620009d8565b5090565b6200072091905b80821115620009d45760008155600101620009df565b6152668062000a056000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c80638f840ddd11610167578063c37f68e2116100ce578063f3fdb15a11610087578063f3fdb15a146109ef578063f5e3c462146109f7578063f851a44014610a2d578063f8f9da2814610a35578063fca7820b14610a3d578063fe9c44ae14610a5a576102a0565b8063c37f68e21461090d578063c5ebeaec14610959578063db006a7514610976578063dd62ed3e14610993578063e9c714f2146109c1578063f2b3abbd146109c9576102a0565b8063a9059cbb11610120578063a9059cbb1461086d578063aa5af0fd14610899578063ae9d70b0146108a1578063b2a02ff1146108a9578063b71d1a0c146108df578063bd6d894d14610905576102a0565b80638f840ddd146106c457806395d89b41146106cc57806395dd9193146106d457806399d8c1b4146106fa578063a0712d6814610848578063a6afed9514610865576102a0565b80633af9e6691161020b578063601a0bf1116101c4578063601a0bf11461064c5780636c540baf146106695780636f307dc31461067157806370a082311461067957806373acee981461069f578063852a12e3146106a7576102a0565b80633af9e669146105cb5780633b1d21a2146105f15780633e941010146105f95780634576b5db1461061657806347bd37181461063c5780635fe3b56714610644576102a0565b8063182df0f51161025d578063182df0f5146103c75780631a31d465146103cf57806323b872dd146105275780632608f8181461055d5780632678224714610589578063313ce567146105ad576102a0565b806306fdde03146102a5578063095ea7b3146103225780630e75270214610362578063173b99041461039157806317bfdfbc1461039957806318160ddd146103bf575b600080fd5b6102ad610a62565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b038135169060200135610aef565b604080519115158252519081900360200190f35b61037f6004803603602081101561037857600080fd5b5035610b5c565b60408051918252519081900360200190f35b61037f610b72565b61037f600480360360208110156103af57600080fd5b50356001600160a01b0316610b78565b61037f610c38565b61037f610c3e565b610525600480360360e08110156103e557600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b81111561042757600080fd5b82018360208201111561043957600080fd5b803590602001918460018302840111600160201b8311171561045a57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156104ac57600080fd5b8201836020820111156104be57600080fd5b803590602001918460018302840111600160201b831117156104df57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610ca19050565b005b61034e6004803603606081101561053d57600080fd5b506001600160a01b03813581169160208101359091169060400135610d40565b61037f6004803603604081101561057357600080fd5b506001600160a01b038135169060200135610db2565b610591610dc8565b604080516001600160a01b039092168252519081900360200190f35b6105b5610dd7565b6040805160ff9092168252519081900360200190f35b61037f600480360360208110156105e157600080fd5b50356001600160a01b0316610de0565b61037f610e96565b61037f6004803603602081101561060f57600080fd5b5035610ea5565b61037f6004803603602081101561062c57600080fd5b50356001600160a01b0316610eb0565b61037f611005565b61059161100b565b61037f6004803603602081101561066257600080fd5b503561101a565b61037f6110b5565b6105916110bb565b61037f6004803603602081101561068f57600080fd5b50356001600160a01b03166110ca565b61037f6110e5565b61037f600480360360208110156106bd57600080fd5b503561119b565b61037f6111a6565b6102ad6111ac565b61037f600480360360208110156106ea57600080fd5b50356001600160a01b0316611204565b610525600480360360c081101561071057600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561074a57600080fd5b82018360208201111561075c57600080fd5b803590602001918460018302840111600160201b8311171561077d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156107cf57600080fd5b8201836020820111156107e157600080fd5b803590602001918460018302840111600160201b8311171561080257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506112619050565b61037f6004803603602081101561085e57600080fd5b5035611448565b61037f611454565b61034e6004803603604081101561088357600080fd5b506001600160a01b038135169060200135611884565b61037f6118f5565b61037f6118fb565b61037f600480360360608110156108bf57600080fd5b506001600160a01b0381358116916020810135909116906040013561199a565b61037f600480360360208110156108f557600080fd5b50356001600160a01b0316611a0b565b61037f611a97565b6109336004803603602081101561092357600080fd5b50356001600160a01b0316611b53565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61037f6004803603602081101561096f57600080fd5b5035611be8565b61037f6004803603602081101561098c57600080fd5b5035611bf3565b61037f600480360360408110156109a957600080fd5b506001600160a01b0381358116916020013516611bfe565b61037f611c29565b61037f600480360360208110156109df57600080fd5b50356001600160a01b0316611d2a565b610591611d64565b61037f60048036036060811015610a0d57600080fd5b506001600160a01b03813581169160208101359160409091013516611d73565b610591611d8b565b61037f611d9f565b61037f60048036036020811015610a5357600080fd5b5035611e03565b61034e611e81565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b600080610b6883611e86565b509150505b919050565b60085481565b6000805460ff16610bbd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610bcf611454565b14610c1a576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610c2382611204565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610c4b611f2f565b90925090506000826003811115610c5e57fe5b14610c9a5760405162461bcd60e51b815260040180806020018281038252603581526020018061517d6035913960400191505060405180910390fd5b9150505b90565b610caf868686868686611261565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015610d0b57600080fd5b505afa158015610d1f573d6000803e3d6000fd5b505050506040513d6020811015610d3557600080fd5b505050505050505050565b6000805460ff16610d85576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610d9b33868686611fdd565b1490506000805460ff191660011790559392505050565b600080610dbf84846122eb565b50949350505050565b6004546001600160a01b031681565b60035460ff1681565b6000610dea614e11565b6040518060200160405280610dfd611a97565b90526001600160a01b0384166000908152600e6020526040812054919250908190610e29908490612396565b90925090506000826003811115610e3c57fe5b14610e8e576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b949350505050565b6000610ea06123ea565b905090565b6000610b568261246a565b60035460009061010090046001600160a01b03163314610edd57610ed66001603f6124fe565b9050610b6d565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015610f2257600080fd5b505afa158015610f36573d6000803e3d6000fd5b505050506040513d6020811015610f4c57600080fd5b5051610f9f576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b6005546001600160a01b031681565b6000805460ff1661105f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611071611454565b905080156110975761108f81601081111561108857fe5b60306124fe565b915050610c26565b6110a083612564565b9150506000805460ff19166001179055919050565b60095481565b6011546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff1661112a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561113c611454565b14611187576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610b5682612697565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610ae75780601f10610abc57610100808354040283529160200191610ae7565b600080600061121284612718565b9092509050600082600381111561122557fe5b14610ffe5760405162461bcd60e51b81526004018080602001828103825260378152602001806150886037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146112af5760405162461bcd60e51b8152600401808060200182810382526024815260200180614fc46024913960400191505060405180910390fd5b6009541580156112bf5750600a54155b6112fa5760405162461bcd60e51b8152600401808060200182810382526023815260200180614fe86023913960400191505060405180910390fd5b60078490558361133b5760405162461bcd60e51b815260040180806020018281038252603081526020018061500b6030913960400191505060405180910390fd5b600061134687610eb0565b9050801561139b576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b6113a36127cc565b600955670de0b6b3a7640000600a556113bb866127d0565b905080156113fa5760405162461bcd60e51b815260040180806020018281038252602281526020018061503b6022913960400191505060405180910390fd5b835161140d906001906020870190614e24565b508251611421906002906020860190614e24565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080610b6883612945565b600061145e614ea2565b60006114686123ea565b600654600b54600c54604080516315f2405360e01b81526004810186905260248101939093526044830191909152519293506001600160a01b03909116916315f2405391606480820192602092909190829003018186803b1580156114cc57600080fd5b505afa1580156114e0573d6000803e3d6000fd5b505050506040513d60208110156114f657600080fd5b50516040830181905265048c273950001015611559576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6115616127cc565b6060830181905260095461157591906129c6565b608084018190528382600381111561158957fe5b600381111561159457fe5b90525060009050825160038111156115a857fe5b146115fa576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b61161a6040518060200160405280846040015181525083608001516129e9565b60a084018190528382600381111561162e57fe5b600381111561163957fe5b905250600090508251600381111561164d57fe5b146116775761166e600960068460000151600381111561166957fe5b612a51565b92505050610c9e565b6116878260a00151600b54612396565b60c084018190528382600381111561169b57fe5b60038111156116a657fe5b90525060009050825160038111156116ba57fe5b146116d65761166e600960018460000151600381111561166957fe5b6116e68260c00151600b54612ab7565b60e08401819052838260038111156116fa57fe5b600381111561170557fe5b905250600090508251600381111561171957fe5b146117355761166e600960048460000151600381111561166957fe5b61175660405180602001604052806008548152508360c00151600c54612add565b61010084018190528382600381111561176b57fe5b600381111561177657fe5b905250600090508251600381111561178a57fe5b146117a65761166e600960058460000151600381111561166957fe5b6117b98260a00151600a54600a54612add565b6101208401819052838260038111156117ce57fe5b60038111156117d957fe5b90525060009050825160038111156117ed57fe5b146118095761166e600960038460000151600381111561166957fe5b606080830151600955610120830151600a81905560e0840151600b819055610100850151600c5560c08501516040805186815260208101929092528181019390935292830152517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160005b9250505090565b6000805460ff166118c9576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556118df33338686611fdd565b1490506000805460ff1916600117905592915050565b600a5481565b6006546000906001600160a01b031663b81688166119176123ea565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b15801561196957600080fd5b505afa15801561197d573d6000803e3d6000fd5b505050506040513d602081101561199357600080fd5b5051905090565b6000805460ff166119df576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191690556119f533858585612b39565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611a3157610ed6600160456124fe565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000610ffe565b6000805460ff16611adc576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611aee611454565b14611b39576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611b41610c3e565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611b7e89612718565b935090506000816003811115611b9057fe5b14611bae5760095b975060009650869550859450611be19350505050565b611bb6611f2f565b925090506000816003811115611bc857fe5b14611bd4576009611b98565b5060009650919450925090505b9193509193565b6000610b5682612d9f565b6000610b5682612e1e565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6004546000906001600160a01b031633141580611c44575033155b15611c5c57611c55600160006124fe565b9050610c9e565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a1600061187d565b600080611d35611454565b90508015611d5b57611d53816010811115611d4c57fe5b60406124fe565b915050610b6d565b610ffe836127d0565b6006546001600160a01b031681565b600080611d81858585612e98565b5095945050505050565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f24053611dbb6123ea565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b15801561196957600080fd5b6000805460ff16611e48576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611e5a611454565b90508015611e785761108f816010811115611e7157fe5b60466124fe565b6110a083612fca565b600181565b60008054819060ff16611ecd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611edf611454565b90508015611f0a57611efd816010811115611ef657fe5b60366124fe565b925060009150611f1b9050565b611f15333386613072565b92509250505b6000805460ff191660011790559092909150565b600080600d5460001415611f4a575050600754600090611fd9565b6000611f546123ea565b90506000611f60614e11565b6000611f7184600b54600c546134a3565b935090506000816003811115611f8357fe5b14611f9757945060009350611fd992505050565b611fa383600d546134e1565b925090506000816003811115611fb557fe5b14611fc957945060009350611fd992505050565b5051600094509250611fd9915050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b15801561204257600080fd5b505af1158015612056573d6000803e3d6000fd5b505050506040513d602081101561206c57600080fd5b50519050801561208b576120836003604a83612a51565b915050610e8e565b836001600160a01b0316856001600160a01b031614156120b1576120836002604b6124fe565b60006001600160a01b0387811690871614156120d057506000196120f8565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061210885896129c6565b9094509250600084600381111561211b57fe5b146121395761212c6009604b6124fe565b9650505050505050610e8e565b6001600160a01b038a166000908152600e602052604090205461215c90896129c6565b9094509150600084600381111561216f57fe5b146121805761212c6009604c6124fe565b6001600160a01b0389166000908152600e60205260409020546121a39089612ab7565b909450905060008460038111156121b657fe5b146121c75761212c6009604d6124fe565b6001600160a01b03808b166000908152600e6020526040808220859055918b16815220819055600019851461221f576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206150f98339815191528a6040518082815260200191505060405180910390a36005546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b1580156122bb57600080fd5b505af11580156122cf573d6000803e3d6000fd5b50600092506122dc915050565b9b9a5050505050505050505050565b60008054819060ff16612332576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612344611454565b9050801561236f5761236281601081111561235b57fe5b60356124fe565b9250600091506123809050565b61237a338686613072565b92509250505b6000805460ff1916600117905590939092509050565b60008060006123a3614e11565b6123ad86866129e9565b909250905060008260038111156123c057fe5b146123d157509150600090506123e3565b60006123dc82613591565b9350935050505b9250929050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561243857600080fd5b505afa15801561244c573d6000803e3d6000fd5b505050506040513d602081101561246257600080fd5b505191505090565b6000805460ff166124af576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556124c1611454565b905080156124df5761108f8160108111156124d857fe5b604e6124fe565b6124e8836135a0565b509150506000805460ff19166001179055919050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561252d57fe5b83605081111561253957fe5b604080519283526020830191909152600082820152519081900360600190a1826010811115610ffe57fe5b600354600090819061010090046001600160a01b0316331461258c57611d53600160316124fe565b6125946127cc565b600954146125a857611d53600a60336124fe565b826125b16123ea565b10156125c357611d53600e60326124fe565b600c548311156125d957611d53600260346124fe565b50600c548281039081111561261f5760405162461bcd60e51b815260040180806020018281038252602481526020018061520e6024913960400191505060405180910390fd5b600c81905560035461263f9061010090046001600160a01b0316846136c2565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000610ffe565b6000805460ff166126dc576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556126ee611454565b9050801561270c5761108f81601081111561270557fe5b60276124fe565b6110a0336000856137b9565b6001600160a01b03811660009081526010602052604081208054829182918291829161274f5750600094508493506127c792505050565b61275f8160000154600a54613c80565b9094509250600084600381111561277257fe5b146127875750919350600092506127c7915050565b612795838260010154613cbf565b909450915060008460038111156127a857fe5b146127bd5750919350600092506127c7915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b031633146127f857611d53600160426124fe565b6128006127cc565b6009541461281457611d53600a60416124fe565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561286557600080fd5b505afa158015612879573d6000803e3d6000fd5b505050506040513d602081101561288f57600080fd5b50516128e2576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000610ffe565b60008054819060ff1661298c576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561299e611454565b905080156129bc57611efd8160108111156129b557fe5b601e6124fe565b611f153385613cea565b6000808383116129dd5750600090508183036123e3565b506003905060006123e3565b60006129f3614e11565b600080612a04866000015186613c80565b90925090506000826003811115612a1757fe5b14612a36575060408051602081019091526000815290925090506123e3565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612a8057fe5b846050811115612a8c57fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115610e8e57fe5b600080838301848110612acf576000925090506123e3565b5060029150600090506123e3565b6000806000612aea614e11565b612af487876129e9565b90925090506000826003811115612b0757fe5b14612b185750915060009050612b31565b612b2a612b2482613591565b86612ab7565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015612ba657600080fd5b505af1158015612bba573d6000803e3d6000fd5b505050506040513d6020811015612bd057600080fd5b505190508015612be7576120836003601b83612a51565b846001600160a01b0316846001600160a01b03161415612c0d576120836006601c6124fe565b6001600160a01b0384166000908152600e602052604081205481908190612c3490876129c6565b90935091506000836003811115612c4757fe5b14612c6a57612c5f6009601a85600381111561166957fe5b945050505050610e8e565b6001600160a01b0388166000908152600e6020526040902054612c8d9087612ab7565b90935090506000836003811115612ca057fe5b14612cb857612c5f6009601985600381111561166957fe5b6001600160a01b038088166000818152600e60209081526040808320879055938c168083529184902085905583518a8152935191936000805160206150f9833981519152929081900390910190a360055460408051636d35bf9160e01b81523060048201526001600160a01b038c811660248301528b811660448301528a81166064830152608482018a905291519190921691636d35bf919160a480830192600092919082900301818387803b158015612d7157600080fd5b505af1158015612d85573d6000803e3d6000fd5b5060009250612d92915050565b9998505050505050505050565b6000805460ff16612de4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612df6611454565b90508015612e145761108f816010811115612e0d57fe5b60086124fe565b6110a03384614191565b6000805460ff16612e63576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612e75611454565b90508015612e8c5761108f81601081111561270557fe5b6110a0338460006137b9565b60008054819060ff16612edf576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612ef1611454565b90508015612f1c57612f0f816010811115612f0857fe5b600f6124fe565b925060009150612fb39050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612f5757600080fd5b505af1158015612f6b573d6000803e3d6000fd5b505050506040513d6020811015612f8157600080fd5b505190508015612fa157612f0f816010811115612f9a57fe5b60106124fe565b612fad3387878761449f565b92509250505b6000805460ff191660011790559094909350915050565b60035460009061010090046001600160a01b03163314612ff057610ed6600160476124fe565b612ff86127cc565b6009541461300c57610ed6600a60486124fe565b670de0b6b3a764000082111561302857610ed6600260496124fe565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000610ffe565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b1580156130db57600080fd5b505af11580156130ef573d6000803e3d6000fd5b505050506040513d602081101561310557600080fd5b5051905080156131295761311c6003603883612a51565b925060009150612b319050565b6131316127cc565b600954146131455761311c600a60396124fe565b61314d614efc565b6001600160a01b038616600090815260106020526040902060010154606082015261317786612718565b608083018190526020830182600381111561318e57fe5b600381111561319957fe5b90525060009050816020015160038111156131b057fe5b146131da576131cc600960378360200151600381111561166957fe5b935060009250612b31915050565b6000198514156131f357608081015160408201526131fb565b604081018590525b613209878260400151614a22565b8190601081111561321657fe5b9081601081111561322357fe5b90525060008151601081111561323557fe5b146132475780516131cc90603c6124fe565b613255878260400151614b56565b60e08201819052608082015161326a916129c6565b60a083018190526020830182600381111561328157fe5b600381111561328c57fe5b90525060009050816020015160038111156132a357fe5b146132df5760405162461bcd60e51b815260040180806020018281038252603a8152602001806150bf603a913960400191505060405180910390fd5b6132ef600b548260e001516129c6565b60c083018190526020830182600381111561330657fe5b600381111561331157fe5b905250600090508160200151600381111561332857fe5b146133645760405162461bcd60e51b81526004018080602001828103825260318152602001806151196031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160055460e0820151606083015160408051631ededc9160e01b81523060048201526001600160a01b038c811660248301528b8116604483015260648201949094526084810192909252519190921691631ededc919160a480830192600092919082900301818387803b15801561346f57600080fd5b505af1158015613483573d6000803e3d6000fd5b5060009250613490915050565b8160e00151935093505050935093915050565b6000806000806134b38787612ab7565b909250905060008260038111156134c657fe5b146134d75750915060009050612b31565b612b2a81866129c6565b60006134eb614e11565b60008061350086670de0b6b3a7640000613c80565b9092509050600082600381111561351357fe5b14613532575060408051602081019091526000815290925090506123e3565b60008061353f8388613cbf565b9092509050600082600381111561355257fe5b14613574575060408051602081019091526000815290945092506123e3915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b6000806000806135ae6127cc565b600954146135cd576135c2600a604f6124fe565b935091506127c79050565b60006135d93387614a22565b905060008160108111156135e957fe5b14613606576135f98160506124fe565b82945094505050506127c7565b6136103387614b56565b915081600c54019250600c54831015613670576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c839055604080513381526020810184905280820185905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a15060009590945092505050565b6011546040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905291519190921691829163a9059cbb9160448082019260009290919082900301818387803b15801561371a57600080fd5b505af115801561372e573d6000803e3d6000fd5b5050505060003d6000811461374a576020811461375457600080fd5b6000199150613760565b60206000803e60005191505b50806137b3576040805162461bcd60e51b815260206004820152601960248201527f544f4b454e5f5452414e534645525f4f55545f4641494c454400000000000000604482015290519081900360640190fd5b50505050565b60008215806137c6575081155b6138015760405162461bcd60e51b81526004018080602001828103825260348152602001806151da6034913960400191505060405180910390fd5b613809614f42565b613811611f2f565b604083018190526020830182600381111561382857fe5b600381111561383357fe5b905250600090508160200151600381111561384a57fe5b1461386e576138666009602b8360200151600381111561166957fe5b915050610ffe565b83156138ef5760608101849052604080516020810182529082015181526138959085612396565b60808301819052602083018260038111156138ac57fe5b60038111156138b757fe5b90525060009050816020015160038111156138ce57fe5b146138ea57613866600960298360200151600381111561166957fe5b613968565b61390b8360405180602001604052808460400151815250614da0565b606083018190526020830182600381111561392257fe5b600381111561392d57fe5b905250600090508160200151600381111561394457fe5b14613960576138666009602a8360200151600381111561166957fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b1580156139cd57600080fd5b505af11580156139e1573d6000803e3d6000fd5b505050506040513d60208110156139f757600080fd5b505190508015613a1757613a0e6003602883612a51565b92505050610ffe565b613a1f6127cc565b60095414613a3357613a0e600a602c6124fe565b613a43600d5483606001516129c6565b60a0840181905260208401826003811115613a5a57fe5b6003811115613a6557fe5b9052506000905082602001516003811115613a7c57fe5b14613a9857613a0e6009602e8460200151600381111561166957fe5b6001600160a01b0386166000908152600e60205260409020546060830151613ac091906129c6565b60c0840181905260208401826003811115613ad757fe5b6003811115613ae257fe5b9052506000905082602001516003811115613af957fe5b14613b1557613a0e6009602d8460200151600381111561166957fe5b8160800151613b226123ea565b1015613b3457613a0e600e602f6124fe565b613b428683608001516136c2565b60a0820151600d5560c08201516001600160a01b0387166000818152600e60209081526040918290209390935560608501518151908152905130936000805160206150f9833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613c5557600080fd5b505af1158015613c69573d6000803e3d6000fd5b5060009250613c76915050565b9695505050505050565b60008083613c93575060009050806123e3565b83830283858281613ca057fe5b0414613cb4575060029150600090506123e3565b6000925090506123e3565b60008082613cd357506001905060006123e3565b6000838581613cde57fe5b04915091509250929050565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b158015613d4b57600080fd5b505af1158015613d5f573d6000803e3d6000fd5b505050506040513d6020811015613d7557600080fd5b505190508015613d9957613d8c6003601f83612a51565b9250600091506123e39050565b613da16127cc565b60095414613db557613d8c600a60226124fe565b613dbd614f42565b613dc78686614a22565b81906010811115613dd457fe5b90816010811115613de157fe5b905250600081516010811115613df357fe5b14613e13578051613e059060266124fe565b9350600092506123e3915050565b613e1b611f2f565b6040830181905260208301826003811115613e3257fe5b6003811115613e3d57fe5b9052506000905081602001516003811115613e5457fe5b14613e7057613e05600960218360200151600381111561166957fe5b613e7a8686614b56565b60c0820181905260408051602081018252908301518152613e9b9190614da0565b6060830181905260208301826003811115613eb257fe5b6003811115613ebd57fe5b9052506000905081602001516003811115613ed457fe5b14613f26576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b613f36600d548260600151612ab7565b6080830181905260208301826003811115613f4d57fe5b6003811115613f5857fe5b9052506000905081602001516003811115613f6f57fe5b14613fab5760405162461bcd60e51b81526004018080602001828103825260288152602001806151b26028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e60205260409020546060820151613fd39190612ab7565b60a0830181905260208301826003811115613fea57fe5b6003811115613ff557fe5b905250600090508160200151600381111561400c57fe5b146140485760405162461bcd60e51b815260040180806020018281038252602b81526020018061505d602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206150f98339815191529181900360200190a360055460c08201516060830151604080516341c728b960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916341c728b991608480830192600092919082900301818387803b15801561415e57600080fd5b505af1158015614172573d6000803e3d6000fd5b506000925061417f915050565b8160c001519350935050509250929050565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156141ee57600080fd5b505af1158015614202573d6000803e3d6000fd5b505050506040513d602081101561421857600080fd5b5051905080156142375761422f6003600e83612a51565b915050610b56565b61423f6127cc565b600954146142525761422f600a806124fe565b8261425b6123ea565b101561426d5761422f600e60096124fe565b614275614f80565b61427e85612718565b602083018190528282600381111561429257fe5b600381111561429d57fe5b90525060009050815160038111156142b157fe5b146142d6576142cd600960078360000151600381111561166957fe5b92505050610b56565b6142e4816020015185612ab7565b60408301819052828260038111156142f857fe5b600381111561430357fe5b905250600090508151600381111561431757fe5b14614333576142cd6009600c8360000151600381111561166957fe5b61433f600b5485612ab7565b606083018190528282600381111561435357fe5b600381111561435e57fe5b905250600090508151600381111561437257fe5b1461438e576142cd6009600b8360000151600381111561166957fe5b61439885856136c2565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a160055460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b15801561447557600080fd5b505af1158015614489573d6000803e3d6000fd5b5060009250614496915050565b95945050505050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b15801561451057600080fd5b505af1158015614524573d6000803e3d6000fd5b505050506040513d602081101561453a57600080fd5b50519050801561455e576145516003601283612a51565b925060009150614a199050565b6145666127cc565b6009541461457a57614551600a60166124fe565b6145826127cc565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b1580156145bb57600080fd5b505afa1580156145cf573d6000803e3d6000fd5b505050506040513d60208110156145e557600080fd5b5051146145f857614551600a60116124fe565b866001600160a01b0316866001600160a01b0316141561461e57614551600660176124fe565b8461462f57614551600760156124fe565b60001985141561464557614551600760146124fe565b600080614653898989613072565b909250905081156146835761467482601081111561466d57fe5b60186124fe565b945060009350614a1992505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b1580156146dd57600080fd5b505afa1580156146f1573d6000803e3d6000fd5b505050506040513d604081101561470757600080fd5b508051602090910151909250905081156147525760405162461bcd60e51b815260040180806020018281038252603381526020018061514a6033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156147a957600080fd5b505afa1580156147bd573d6000803e3d6000fd5b505050506040513d60208110156147d357600080fd5b50511015614828576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b03891630141561484e57614847308d8d85612b39565b90506148d8565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b1580156148a957600080fd5b505af11580156148bd573d6000803e3d6000fd5b505050506040513d60208110156148d357600080fd5b505190505b8015614922576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600554604080516347ef3b3b60e01b81523060048201526001600160a01b038c811660248301528f811660448301528e811660648301526084820188905260a48201869052915191909216916347ef3b3b9160c480830192600092919082900301818387803b1580156149ed57600080fd5b505af1158015614a01573d6000803e3d6000fd5b5060009250614a0e915050565b975092955050505050505b94509492505050565b60115460408051636eb1769f60e11b81526001600160a01b038581166004830152306024830152915160009392909216918491839163dd62ed3e91604480820192602092909190829003018186803b158015614a7d57600080fd5b505afa158015614a91573d6000803e3d6000fd5b505050506040513d6020811015614aa757600080fd5b50511015614ab957600c915050610b56565b82816001600160a01b03166370a08231866040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015614b1057600080fd5b505afa158015614b24573d6000803e3d6000fd5b505050506040513d6020811015614b3a57600080fd5b50511015614b4c57600d915050610b56565b5060009392505050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b158015614ba557600080fd5b505afa158015614bb9573d6000803e3d6000fd5b505050506040513d6020811015614bcf57600080fd5b5051604080516323b872dd60e01b81526001600160a01b038881166004830152306024830152604482018890529151929350908416916323b872dd9160648082019260009290919082900301818387803b158015614c2c57600080fd5b505af1158015614c40573d6000803e3d6000fd5b5050505060003d60008114614c5c5760208114614c6657600080fd5b6000199150614c72565b60206000803e60005191505b5080614cc5576040805162461bcd60e51b815260206004820152601860248201527f544f4b454e5f5452414e534645525f494e5f4641494c45440000000000000000604482015290519081900360640190fd5b601154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015614d1057600080fd5b505afa158015614d24573d6000803e3d6000fd5b505050506040513d6020811015614d3a57600080fd5b5051905082811015614d93576040805162461bcd60e51b815260206004820152601a60248201527f544f4b454e5f5452414e534645525f494e5f4f564552464c4f57000000000000604482015290519081900360640190fd5b9190910395945050505050565b6000806000614dad614e11565b6123ad86866000614dbc614e11565b600080614dd1670de0b6b3a764000087613c80565b90925090506000826003811115614de457fe5b14614e03575060408051602081019091526000815290925090506123e3565b6123dc8186600001516134e1565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614e6557805160ff1916838001178555614e92565b82800160010185558215614e92579182015b82811115614e92578251825591602001919060010190614e77565b50614e9e929150614fa9565b5090565b604080516101408101909152806000815260200160008152602001600081526020016000815260200160008152602001614eda614e11565b8152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610c9e91905b80821115614e9e5760008155600101614faf56fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a72315820828071af57941fc1c7a03f63b7f3ee952200158f55fc24cdebd8a9e878fd781e64736f6c634300050c00326f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65640000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000959fb43ef08f415da0aea39beef92d96f41e41b3000000000000000000000000bb69477638e962275c89caa8f03da0941675177d000000000000000000000000000000000000000000a56fa5b99019a5c8000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000008000000000000000000000000a13b3e79f2ed49bc05af2274dc509d73a75cafe2000000000000000000000000000000000000000000000000000000000000000f6b44616920537461626c65636f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046b44414900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c80638f840ddd11610167578063c37f68e2116100ce578063f3fdb15a11610087578063f3fdb15a146109ef578063f5e3c462146109f7578063f851a44014610a2d578063f8f9da2814610a35578063fca7820b14610a3d578063fe9c44ae14610a5a576102a0565b8063c37f68e21461090d578063c5ebeaec14610959578063db006a7514610976578063dd62ed3e14610993578063e9c714f2146109c1578063f2b3abbd146109c9576102a0565b8063a9059cbb11610120578063a9059cbb1461086d578063aa5af0fd14610899578063ae9d70b0146108a1578063b2a02ff1146108a9578063b71d1a0c146108df578063bd6d894d14610905576102a0565b80638f840ddd146106c457806395d89b41146106cc57806395dd9193146106d457806399d8c1b4146106fa578063a0712d6814610848578063a6afed9514610865576102a0565b80633af9e6691161020b578063601a0bf1116101c4578063601a0bf11461064c5780636c540baf146106695780636f307dc31461067157806370a082311461067957806373acee981461069f578063852a12e3146106a7576102a0565b80633af9e669146105cb5780633b1d21a2146105f15780633e941010146105f95780634576b5db1461061657806347bd37181461063c5780635fe3b56714610644576102a0565b8063182df0f51161025d578063182df0f5146103c75780631a31d465146103cf57806323b872dd146105275780632608f8181461055d5780632678224714610589578063313ce567146105ad576102a0565b806306fdde03146102a5578063095ea7b3146103225780630e75270214610362578063173b99041461039157806317bfdfbc1461039957806318160ddd146103bf575b600080fd5b6102ad610a62565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b038135169060200135610aef565b604080519115158252519081900360200190f35b61037f6004803603602081101561037857600080fd5b5035610b5c565b60408051918252519081900360200190f35b61037f610b72565b61037f600480360360208110156103af57600080fd5b50356001600160a01b0316610b78565b61037f610c38565b61037f610c3e565b610525600480360360e08110156103e557600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b81111561042757600080fd5b82018360208201111561043957600080fd5b803590602001918460018302840111600160201b8311171561045a57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156104ac57600080fd5b8201836020820111156104be57600080fd5b803590602001918460018302840111600160201b831117156104df57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610ca19050565b005b61034e6004803603606081101561053d57600080fd5b506001600160a01b03813581169160208101359091169060400135610d40565b61037f6004803603604081101561057357600080fd5b506001600160a01b038135169060200135610db2565b610591610dc8565b604080516001600160a01b039092168252519081900360200190f35b6105b5610dd7565b6040805160ff9092168252519081900360200190f35b61037f600480360360208110156105e157600080fd5b50356001600160a01b0316610de0565b61037f610e96565b61037f6004803603602081101561060f57600080fd5b5035610ea5565b61037f6004803603602081101561062c57600080fd5b50356001600160a01b0316610eb0565b61037f611005565b61059161100b565b61037f6004803603602081101561066257600080fd5b503561101a565b61037f6110b5565b6105916110bb565b61037f6004803603602081101561068f57600080fd5b50356001600160a01b03166110ca565b61037f6110e5565b61037f600480360360208110156106bd57600080fd5b503561119b565b61037f6111a6565b6102ad6111ac565b61037f600480360360208110156106ea57600080fd5b50356001600160a01b0316611204565b610525600480360360c081101561071057600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561074a57600080fd5b82018360208201111561075c57600080fd5b803590602001918460018302840111600160201b8311171561077d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156107cf57600080fd5b8201836020820111156107e157600080fd5b803590602001918460018302840111600160201b8311171561080257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506112619050565b61037f6004803603602081101561085e57600080fd5b5035611448565b61037f611454565b61034e6004803603604081101561088357600080fd5b506001600160a01b038135169060200135611884565b61037f6118f5565b61037f6118fb565b61037f600480360360608110156108bf57600080fd5b506001600160a01b0381358116916020810135909116906040013561199a565b61037f600480360360208110156108f557600080fd5b50356001600160a01b0316611a0b565b61037f611a97565b6109336004803603602081101561092357600080fd5b50356001600160a01b0316611b53565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61037f6004803603602081101561096f57600080fd5b5035611be8565b61037f6004803603602081101561098c57600080fd5b5035611bf3565b61037f600480360360408110156109a957600080fd5b506001600160a01b0381358116916020013516611bfe565b61037f611c29565b61037f600480360360208110156109df57600080fd5b50356001600160a01b0316611d2a565b610591611d64565b61037f60048036036060811015610a0d57600080fd5b506001600160a01b03813581169160208101359160409091013516611d73565b610591611d8b565b61037f611d9f565b61037f60048036036020811015610a5357600080fd5b5035611e03565b61034e611e81565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b600080610b6883611e86565b509150505b919050565b60085481565b6000805460ff16610bbd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610bcf611454565b14610c1a576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610c2382611204565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610c4b611f2f565b90925090506000826003811115610c5e57fe5b14610c9a5760405162461bcd60e51b815260040180806020018281038252603581526020018061517d6035913960400191505060405180910390fd5b9150505b90565b610caf868686868686611261565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015610d0b57600080fd5b505afa158015610d1f573d6000803e3d6000fd5b505050506040513d6020811015610d3557600080fd5b505050505050505050565b6000805460ff16610d85576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610d9b33868686611fdd565b1490506000805460ff191660011790559392505050565b600080610dbf84846122eb565b50949350505050565b6004546001600160a01b031681565b60035460ff1681565b6000610dea614e11565b6040518060200160405280610dfd611a97565b90526001600160a01b0384166000908152600e6020526040812054919250908190610e29908490612396565b90925090506000826003811115610e3c57fe5b14610e8e576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b949350505050565b6000610ea06123ea565b905090565b6000610b568261246a565b60035460009061010090046001600160a01b03163314610edd57610ed66001603f6124fe565b9050610b6d565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015610f2257600080fd5b505afa158015610f36573d6000803e3d6000fd5b505050506040513d6020811015610f4c57600080fd5b5051610f9f576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b6005546001600160a01b031681565b6000805460ff1661105f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611071611454565b905080156110975761108f81601081111561108857fe5b60306124fe565b915050610c26565b6110a083612564565b9150506000805460ff19166001179055919050565b60095481565b6011546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff1661112a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561113c611454565b14611187576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610b5682612697565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610ae75780601f10610abc57610100808354040283529160200191610ae7565b600080600061121284612718565b9092509050600082600381111561122557fe5b14610ffe5760405162461bcd60e51b81526004018080602001828103825260378152602001806150886037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146112af5760405162461bcd60e51b8152600401808060200182810382526024815260200180614fc46024913960400191505060405180910390fd5b6009541580156112bf5750600a54155b6112fa5760405162461bcd60e51b8152600401808060200182810382526023815260200180614fe86023913960400191505060405180910390fd5b60078490558361133b5760405162461bcd60e51b815260040180806020018281038252603081526020018061500b6030913960400191505060405180910390fd5b600061134687610eb0565b9050801561139b576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b6113a36127cc565b600955670de0b6b3a7640000600a556113bb866127d0565b905080156113fa5760405162461bcd60e51b815260040180806020018281038252602281526020018061503b6022913960400191505060405180910390fd5b835161140d906001906020870190614e24565b508251611421906002906020860190614e24565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080610b6883612945565b600061145e614ea2565b60006114686123ea565b600654600b54600c54604080516315f2405360e01b81526004810186905260248101939093526044830191909152519293506001600160a01b03909116916315f2405391606480820192602092909190829003018186803b1580156114cc57600080fd5b505afa1580156114e0573d6000803e3d6000fd5b505050506040513d60208110156114f657600080fd5b50516040830181905265048c273950001015611559576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6115616127cc565b6060830181905260095461157591906129c6565b608084018190528382600381111561158957fe5b600381111561159457fe5b90525060009050825160038111156115a857fe5b146115fa576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b61161a6040518060200160405280846040015181525083608001516129e9565b60a084018190528382600381111561162e57fe5b600381111561163957fe5b905250600090508251600381111561164d57fe5b146116775761166e600960068460000151600381111561166957fe5b612a51565b92505050610c9e565b6116878260a00151600b54612396565b60c084018190528382600381111561169b57fe5b60038111156116a657fe5b90525060009050825160038111156116ba57fe5b146116d65761166e600960018460000151600381111561166957fe5b6116e68260c00151600b54612ab7565b60e08401819052838260038111156116fa57fe5b600381111561170557fe5b905250600090508251600381111561171957fe5b146117355761166e600960048460000151600381111561166957fe5b61175660405180602001604052806008548152508360c00151600c54612add565b61010084018190528382600381111561176b57fe5b600381111561177657fe5b905250600090508251600381111561178a57fe5b146117a65761166e600960058460000151600381111561166957fe5b6117b98260a00151600a54600a54612add565b6101208401819052838260038111156117ce57fe5b60038111156117d957fe5b90525060009050825160038111156117ed57fe5b146118095761166e600960038460000151600381111561166957fe5b606080830151600955610120830151600a81905560e0840151600b819055610100850151600c5560c08501516040805186815260208101929092528181019390935292830152517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160005b9250505090565b6000805460ff166118c9576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556118df33338686611fdd565b1490506000805460ff1916600117905592915050565b600a5481565b6006546000906001600160a01b031663b81688166119176123ea565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b15801561196957600080fd5b505afa15801561197d573d6000803e3d6000fd5b505050506040513d602081101561199357600080fd5b5051905090565b6000805460ff166119df576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191690556119f533858585612b39565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611a3157610ed6600160456124fe565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000610ffe565b6000805460ff16611adc576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611aee611454565b14611b39576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611b41610c3e565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611b7e89612718565b935090506000816003811115611b9057fe5b14611bae5760095b975060009650869550859450611be19350505050565b611bb6611f2f565b925090506000816003811115611bc857fe5b14611bd4576009611b98565b5060009650919450925090505b9193509193565b6000610b5682612d9f565b6000610b5682612e1e565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6004546000906001600160a01b031633141580611c44575033155b15611c5c57611c55600160006124fe565b9050610c9e565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a1600061187d565b600080611d35611454565b90508015611d5b57611d53816010811115611d4c57fe5b60406124fe565b915050610b6d565b610ffe836127d0565b6006546001600160a01b031681565b600080611d81858585612e98565b5095945050505050565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f24053611dbb6123ea565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b15801561196957600080fd5b6000805460ff16611e48576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611e5a611454565b90508015611e785761108f816010811115611e7157fe5b60466124fe565b6110a083612fca565b600181565b60008054819060ff16611ecd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611edf611454565b90508015611f0a57611efd816010811115611ef657fe5b60366124fe565b925060009150611f1b9050565b611f15333386613072565b92509250505b6000805460ff191660011790559092909150565b600080600d5460001415611f4a575050600754600090611fd9565b6000611f546123ea565b90506000611f60614e11565b6000611f7184600b54600c546134a3565b935090506000816003811115611f8357fe5b14611f9757945060009350611fd992505050565b611fa383600d546134e1565b925090506000816003811115611fb557fe5b14611fc957945060009350611fd992505050565b5051600094509250611fd9915050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b15801561204257600080fd5b505af1158015612056573d6000803e3d6000fd5b505050506040513d602081101561206c57600080fd5b50519050801561208b576120836003604a83612a51565b915050610e8e565b836001600160a01b0316856001600160a01b031614156120b1576120836002604b6124fe565b60006001600160a01b0387811690871614156120d057506000196120f8565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061210885896129c6565b9094509250600084600381111561211b57fe5b146121395761212c6009604b6124fe565b9650505050505050610e8e565b6001600160a01b038a166000908152600e602052604090205461215c90896129c6565b9094509150600084600381111561216f57fe5b146121805761212c6009604c6124fe565b6001600160a01b0389166000908152600e60205260409020546121a39089612ab7565b909450905060008460038111156121b657fe5b146121c75761212c6009604d6124fe565b6001600160a01b03808b166000908152600e6020526040808220859055918b16815220819055600019851461221f576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206150f98339815191528a6040518082815260200191505060405180910390a36005546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b1580156122bb57600080fd5b505af11580156122cf573d6000803e3d6000fd5b50600092506122dc915050565b9b9a5050505050505050505050565b60008054819060ff16612332576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612344611454565b9050801561236f5761236281601081111561235b57fe5b60356124fe565b9250600091506123809050565b61237a338686613072565b92509250505b6000805460ff1916600117905590939092509050565b60008060006123a3614e11565b6123ad86866129e9565b909250905060008260038111156123c057fe5b146123d157509150600090506123e3565b60006123dc82613591565b9350935050505b9250929050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561243857600080fd5b505afa15801561244c573d6000803e3d6000fd5b505050506040513d602081101561246257600080fd5b505191505090565b6000805460ff166124af576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556124c1611454565b905080156124df5761108f8160108111156124d857fe5b604e6124fe565b6124e8836135a0565b509150506000805460ff19166001179055919050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561252d57fe5b83605081111561253957fe5b604080519283526020830191909152600082820152519081900360600190a1826010811115610ffe57fe5b600354600090819061010090046001600160a01b0316331461258c57611d53600160316124fe565b6125946127cc565b600954146125a857611d53600a60336124fe565b826125b16123ea565b10156125c357611d53600e60326124fe565b600c548311156125d957611d53600260346124fe565b50600c548281039081111561261f5760405162461bcd60e51b815260040180806020018281038252602481526020018061520e6024913960400191505060405180910390fd5b600c81905560035461263f9061010090046001600160a01b0316846136c2565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000610ffe565b6000805460ff166126dc576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556126ee611454565b9050801561270c5761108f81601081111561270557fe5b60276124fe565b6110a0336000856137b9565b6001600160a01b03811660009081526010602052604081208054829182918291829161274f5750600094508493506127c792505050565b61275f8160000154600a54613c80565b9094509250600084600381111561277257fe5b146127875750919350600092506127c7915050565b612795838260010154613cbf565b909450915060008460038111156127a857fe5b146127bd5750919350600092506127c7915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b031633146127f857611d53600160426124fe565b6128006127cc565b6009541461281457611d53600a60416124fe565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561286557600080fd5b505afa158015612879573d6000803e3d6000fd5b505050506040513d602081101561288f57600080fd5b50516128e2576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000610ffe565b60008054819060ff1661298c576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561299e611454565b905080156129bc57611efd8160108111156129b557fe5b601e6124fe565b611f153385613cea565b6000808383116129dd5750600090508183036123e3565b506003905060006123e3565b60006129f3614e11565b600080612a04866000015186613c80565b90925090506000826003811115612a1757fe5b14612a36575060408051602081019091526000815290925090506123e3565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612a8057fe5b846050811115612a8c57fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115610e8e57fe5b600080838301848110612acf576000925090506123e3565b5060029150600090506123e3565b6000806000612aea614e11565b612af487876129e9565b90925090506000826003811115612b0757fe5b14612b185750915060009050612b31565b612b2a612b2482613591565b86612ab7565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015612ba657600080fd5b505af1158015612bba573d6000803e3d6000fd5b505050506040513d6020811015612bd057600080fd5b505190508015612be7576120836003601b83612a51565b846001600160a01b0316846001600160a01b03161415612c0d576120836006601c6124fe565b6001600160a01b0384166000908152600e602052604081205481908190612c3490876129c6565b90935091506000836003811115612c4757fe5b14612c6a57612c5f6009601a85600381111561166957fe5b945050505050610e8e565b6001600160a01b0388166000908152600e6020526040902054612c8d9087612ab7565b90935090506000836003811115612ca057fe5b14612cb857612c5f6009601985600381111561166957fe5b6001600160a01b038088166000818152600e60209081526040808320879055938c168083529184902085905583518a8152935191936000805160206150f9833981519152929081900390910190a360055460408051636d35bf9160e01b81523060048201526001600160a01b038c811660248301528b811660448301528a81166064830152608482018a905291519190921691636d35bf919160a480830192600092919082900301818387803b158015612d7157600080fd5b505af1158015612d85573d6000803e3d6000fd5b5060009250612d92915050565b9998505050505050505050565b6000805460ff16612de4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612df6611454565b90508015612e145761108f816010811115612e0d57fe5b60086124fe565b6110a03384614191565b6000805460ff16612e63576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612e75611454565b90508015612e8c5761108f81601081111561270557fe5b6110a0338460006137b9565b60008054819060ff16612edf576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612ef1611454565b90508015612f1c57612f0f816010811115612f0857fe5b600f6124fe565b925060009150612fb39050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612f5757600080fd5b505af1158015612f6b573d6000803e3d6000fd5b505050506040513d6020811015612f8157600080fd5b505190508015612fa157612f0f816010811115612f9a57fe5b60106124fe565b612fad3387878761449f565b92509250505b6000805460ff191660011790559094909350915050565b60035460009061010090046001600160a01b03163314612ff057610ed6600160476124fe565b612ff86127cc565b6009541461300c57610ed6600a60486124fe565b670de0b6b3a764000082111561302857610ed6600260496124fe565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000610ffe565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b1580156130db57600080fd5b505af11580156130ef573d6000803e3d6000fd5b505050506040513d602081101561310557600080fd5b5051905080156131295761311c6003603883612a51565b925060009150612b319050565b6131316127cc565b600954146131455761311c600a60396124fe565b61314d614efc565b6001600160a01b038616600090815260106020526040902060010154606082015261317786612718565b608083018190526020830182600381111561318e57fe5b600381111561319957fe5b90525060009050816020015160038111156131b057fe5b146131da576131cc600960378360200151600381111561166957fe5b935060009250612b31915050565b6000198514156131f357608081015160408201526131fb565b604081018590525b613209878260400151614a22565b8190601081111561321657fe5b9081601081111561322357fe5b90525060008151601081111561323557fe5b146132475780516131cc90603c6124fe565b613255878260400151614b56565b60e08201819052608082015161326a916129c6565b60a083018190526020830182600381111561328157fe5b600381111561328c57fe5b90525060009050816020015160038111156132a357fe5b146132df5760405162461bcd60e51b815260040180806020018281038252603a8152602001806150bf603a913960400191505060405180910390fd5b6132ef600b548260e001516129c6565b60c083018190526020830182600381111561330657fe5b600381111561331157fe5b905250600090508160200151600381111561332857fe5b146133645760405162461bcd60e51b81526004018080602001828103825260318152602001806151196031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160055460e0820151606083015160408051631ededc9160e01b81523060048201526001600160a01b038c811660248301528b8116604483015260648201949094526084810192909252519190921691631ededc919160a480830192600092919082900301818387803b15801561346f57600080fd5b505af1158015613483573d6000803e3d6000fd5b5060009250613490915050565b8160e00151935093505050935093915050565b6000806000806134b38787612ab7565b909250905060008260038111156134c657fe5b146134d75750915060009050612b31565b612b2a81866129c6565b60006134eb614e11565b60008061350086670de0b6b3a7640000613c80565b9092509050600082600381111561351357fe5b14613532575060408051602081019091526000815290925090506123e3565b60008061353f8388613cbf565b9092509050600082600381111561355257fe5b14613574575060408051602081019091526000815290945092506123e3915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b6000806000806135ae6127cc565b600954146135cd576135c2600a604f6124fe565b935091506127c79050565b60006135d93387614a22565b905060008160108111156135e957fe5b14613606576135f98160506124fe565b82945094505050506127c7565b6136103387614b56565b915081600c54019250600c54831015613670576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c839055604080513381526020810184905280820185905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a15060009590945092505050565b6011546040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905291519190921691829163a9059cbb9160448082019260009290919082900301818387803b15801561371a57600080fd5b505af115801561372e573d6000803e3d6000fd5b5050505060003d6000811461374a576020811461375457600080fd5b6000199150613760565b60206000803e60005191505b50806137b3576040805162461bcd60e51b815260206004820152601960248201527f544f4b454e5f5452414e534645525f4f55545f4641494c454400000000000000604482015290519081900360640190fd5b50505050565b60008215806137c6575081155b6138015760405162461bcd60e51b81526004018080602001828103825260348152602001806151da6034913960400191505060405180910390fd5b613809614f42565b613811611f2f565b604083018190526020830182600381111561382857fe5b600381111561383357fe5b905250600090508160200151600381111561384a57fe5b1461386e576138666009602b8360200151600381111561166957fe5b915050610ffe565b83156138ef5760608101849052604080516020810182529082015181526138959085612396565b60808301819052602083018260038111156138ac57fe5b60038111156138b757fe5b90525060009050816020015160038111156138ce57fe5b146138ea57613866600960298360200151600381111561166957fe5b613968565b61390b8360405180602001604052808460400151815250614da0565b606083018190526020830182600381111561392257fe5b600381111561392d57fe5b905250600090508160200151600381111561394457fe5b14613960576138666009602a8360200151600381111561166957fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b1580156139cd57600080fd5b505af11580156139e1573d6000803e3d6000fd5b505050506040513d60208110156139f757600080fd5b505190508015613a1757613a0e6003602883612a51565b92505050610ffe565b613a1f6127cc565b60095414613a3357613a0e600a602c6124fe565b613a43600d5483606001516129c6565b60a0840181905260208401826003811115613a5a57fe5b6003811115613a6557fe5b9052506000905082602001516003811115613a7c57fe5b14613a9857613a0e6009602e8460200151600381111561166957fe5b6001600160a01b0386166000908152600e60205260409020546060830151613ac091906129c6565b60c0840181905260208401826003811115613ad757fe5b6003811115613ae257fe5b9052506000905082602001516003811115613af957fe5b14613b1557613a0e6009602d8460200151600381111561166957fe5b8160800151613b226123ea565b1015613b3457613a0e600e602f6124fe565b613b428683608001516136c2565b60a0820151600d5560c08201516001600160a01b0387166000818152600e60209081526040918290209390935560608501518151908152905130936000805160206150f9833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613c5557600080fd5b505af1158015613c69573d6000803e3d6000fd5b5060009250613c76915050565b9695505050505050565b60008083613c93575060009050806123e3565b83830283858281613ca057fe5b0414613cb4575060029150600090506123e3565b6000925090506123e3565b60008082613cd357506001905060006123e3565b6000838581613cde57fe5b04915091509250929050565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b158015613d4b57600080fd5b505af1158015613d5f573d6000803e3d6000fd5b505050506040513d6020811015613d7557600080fd5b505190508015613d9957613d8c6003601f83612a51565b9250600091506123e39050565b613da16127cc565b60095414613db557613d8c600a60226124fe565b613dbd614f42565b613dc78686614a22565b81906010811115613dd457fe5b90816010811115613de157fe5b905250600081516010811115613df357fe5b14613e13578051613e059060266124fe565b9350600092506123e3915050565b613e1b611f2f565b6040830181905260208301826003811115613e3257fe5b6003811115613e3d57fe5b9052506000905081602001516003811115613e5457fe5b14613e7057613e05600960218360200151600381111561166957fe5b613e7a8686614b56565b60c0820181905260408051602081018252908301518152613e9b9190614da0565b6060830181905260208301826003811115613eb257fe5b6003811115613ebd57fe5b9052506000905081602001516003811115613ed457fe5b14613f26576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b613f36600d548260600151612ab7565b6080830181905260208301826003811115613f4d57fe5b6003811115613f5857fe5b9052506000905081602001516003811115613f6f57fe5b14613fab5760405162461bcd60e51b81526004018080602001828103825260288152602001806151b26028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e60205260409020546060820151613fd39190612ab7565b60a0830181905260208301826003811115613fea57fe5b6003811115613ff557fe5b905250600090508160200151600381111561400c57fe5b146140485760405162461bcd60e51b815260040180806020018281038252602b81526020018061505d602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206150f98339815191529181900360200190a360055460c08201516060830151604080516341c728b960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916341c728b991608480830192600092919082900301818387803b15801561415e57600080fd5b505af1158015614172573d6000803e3d6000fd5b506000925061417f915050565b8160c001519350935050509250929050565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156141ee57600080fd5b505af1158015614202573d6000803e3d6000fd5b505050506040513d602081101561421857600080fd5b5051905080156142375761422f6003600e83612a51565b915050610b56565b61423f6127cc565b600954146142525761422f600a806124fe565b8261425b6123ea565b101561426d5761422f600e60096124fe565b614275614f80565b61427e85612718565b602083018190528282600381111561429257fe5b600381111561429d57fe5b90525060009050815160038111156142b157fe5b146142d6576142cd600960078360000151600381111561166957fe5b92505050610b56565b6142e4816020015185612ab7565b60408301819052828260038111156142f857fe5b600381111561430357fe5b905250600090508151600381111561431757fe5b14614333576142cd6009600c8360000151600381111561166957fe5b61433f600b5485612ab7565b606083018190528282600381111561435357fe5b600381111561435e57fe5b905250600090508151600381111561437257fe5b1461438e576142cd6009600b8360000151600381111561166957fe5b61439885856136c2565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a160055460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b15801561447557600080fd5b505af1158015614489573d6000803e3d6000fd5b5060009250614496915050565b95945050505050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b15801561451057600080fd5b505af1158015614524573d6000803e3d6000fd5b505050506040513d602081101561453a57600080fd5b50519050801561455e576145516003601283612a51565b925060009150614a199050565b6145666127cc565b6009541461457a57614551600a60166124fe565b6145826127cc565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b1580156145bb57600080fd5b505afa1580156145cf573d6000803e3d6000fd5b505050506040513d60208110156145e557600080fd5b5051146145f857614551600a60116124fe565b866001600160a01b0316866001600160a01b0316141561461e57614551600660176124fe565b8461462f57614551600760156124fe565b60001985141561464557614551600760146124fe565b600080614653898989613072565b909250905081156146835761467482601081111561466d57fe5b60186124fe565b945060009350614a1992505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b1580156146dd57600080fd5b505afa1580156146f1573d6000803e3d6000fd5b505050506040513d604081101561470757600080fd5b508051602090910151909250905081156147525760405162461bcd60e51b815260040180806020018281038252603381526020018061514a6033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156147a957600080fd5b505afa1580156147bd573d6000803e3d6000fd5b505050506040513d60208110156147d357600080fd5b50511015614828576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b03891630141561484e57614847308d8d85612b39565b90506148d8565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b1580156148a957600080fd5b505af11580156148bd573d6000803e3d6000fd5b505050506040513d60208110156148d357600080fd5b505190505b8015614922576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600554604080516347ef3b3b60e01b81523060048201526001600160a01b038c811660248301528f811660448301528e811660648301526084820188905260a48201869052915191909216916347ef3b3b9160c480830192600092919082900301818387803b1580156149ed57600080fd5b505af1158015614a01573d6000803e3d6000fd5b5060009250614a0e915050565b975092955050505050505b94509492505050565b60115460408051636eb1769f60e11b81526001600160a01b038581166004830152306024830152915160009392909216918491839163dd62ed3e91604480820192602092909190829003018186803b158015614a7d57600080fd5b505afa158015614a91573d6000803e3d6000fd5b505050506040513d6020811015614aa757600080fd5b50511015614ab957600c915050610b56565b82816001600160a01b03166370a08231866040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015614b1057600080fd5b505afa158015614b24573d6000803e3d6000fd5b505050506040513d6020811015614b3a57600080fd5b50511015614b4c57600d915050610b56565b5060009392505050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b158015614ba557600080fd5b505afa158015614bb9573d6000803e3d6000fd5b505050506040513d6020811015614bcf57600080fd5b5051604080516323b872dd60e01b81526001600160a01b038881166004830152306024830152604482018890529151929350908416916323b872dd9160648082019260009290919082900301818387803b158015614c2c57600080fd5b505af1158015614c40573d6000803e3d6000fd5b5050505060003d60008114614c5c5760208114614c6657600080fd5b6000199150614c72565b60206000803e60005191505b5080614cc5576040805162461bcd60e51b815260206004820152601860248201527f544f4b454e5f5452414e534645525f494e5f4641494c45440000000000000000604482015290519081900360640190fd5b601154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015614d1057600080fd5b505afa158015614d24573d6000803e3d6000fd5b505050506040513d6020811015614d3a57600080fd5b5051905082811015614d93576040805162461bcd60e51b815260206004820152601a60248201527f544f4b454e5f5452414e534645525f494e5f4f564552464c4f57000000000000604482015290519081900360640190fd5b9190910395945050505050565b6000806000614dad614e11565b6123ad86866000614dbc614e11565b600080614dd1670de0b6b3a764000087613c80565b90925090506000826003811115614de457fe5b14614e03575060408051602081019091526000815290925090506123e3565b6123dc8186600001516134e1565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614e6557805160ff1916838001178555614e92565b82800160010185558215614e92579182015b82811115614e92578251825591602001919060010190614e77565b50614e9e929150614fa9565b5090565b604080516101408101909152806000815260200160008152602001600081526020016000815260200160008152602001614eda614e11565b8152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610c9e91905b80821115614e9e5760008155600101614faf56fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a72315820828071af57941fc1c7a03f63b7f3ee952200158f55fc24cdebd8a9e878fd781e64736f6c634300050c0032

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

0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000959fb43ef08f415da0aea39beef92d96f41e41b3000000000000000000000000bb69477638e962275c89caa8f03da0941675177d000000000000000000000000000000000000000000a56fa5b99019a5c8000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000008000000000000000000000000a13b3e79f2ed49bc05af2274dc509d73a75cafe2000000000000000000000000000000000000000000000000000000000000000f6b44616920537461626c65636f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046b44414900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : underlying_ (address): 0x6B175474E89094C44Da98b954EedeAC495271d0F
Arg [1] : comptroller_ (address): 0x959Fb43EF08F415da0AeA39BEEf92D96f41E41b3
Arg [2] : interestRateModel_ (address): 0xbb69477638E962275c89CAa8f03DA0941675177d
Arg [3] : initialExchangeRateMantissa_ (uint256): 200000000000000000000000000
Arg [4] : name_ (string): kDai Stablecoin
Arg [5] : symbol_ (string): kDAI
Arg [6] : decimals_ (uint8): 8
Arg [7] : admin_ (address): 0xa13b3E79f2ed49BC05Af2274dC509D73a75cAFE2

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f
Arg [1] : 000000000000000000000000959fb43ef08f415da0aea39beef92d96f41e41b3
Arg [2] : 000000000000000000000000bb69477638e962275c89caa8f03da0941675177d
Arg [3] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 000000000000000000000000a13b3e79f2ed49bc05af2274dc509d73a75cafe2
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [9] : 6b44616920537461626c65636f696e0000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 6b44414900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

115403:1325:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;115403:1325:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4544:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4544:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44725:237;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;44725:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;108619:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;108619:149:0;;:::i;:::-;;;;;;;;;;;;;;;;5847:33;;;:::i;48974:224::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48974:224:0;-1:-1:-1;;;;;48974:224:0;;:::i;6492:23::-;;;:::i;51819:261::-;;;:::i;105870:684::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;105870:684:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;105870:684:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;105870:684:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;105870:684:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;105870:684:0;;;;;;;;-1:-1:-1;105870:684:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;105870:684:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;105870:684:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;105870:684:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;105870:684:0;;-1:-1:-1;;;105870:684:0;;;;;-1:-1:-1;105870:684:0;;-1:-1:-1;105870:684:0:i;:::-;;44060:195;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;44060:195:0;;;;;;;;;;;;;;;;;:::i;109056:189::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;109056:189:0;;;;;;;;:::i;5271:35::-;;;:::i;:::-;;;;-1:-1:-1;;;;;5271:35:0;;;;;;;;;;;;;;4740:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45993:354;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45993:354:0;-1:-1:-1;;;;;45993:354:0;;:::i;53656:88::-;;;:::i;110198:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;110198:119:0;;:::i;92164:735::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92164:735:0;-1:-1:-1;;;;;92164:735:0;;:::i;6256:24::-;;;:::i;5397:39::-;;;:::i;98018:571::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;98018:571:0;;:::i;5970:30::-;;;:::i;12166:25::-;;;:::i;45625:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45625:112:0;-1:-1:-1;;;;;45625:112:0;;:::i;48491:192::-;;;:::i;107897:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;107897:133:0;;:::i;6386:25::-;;;:::i;4640:20::-;;;:::i;49407:287::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49407:287:0;-1:-1:-1;;;;;49407:287:0;;:::i;39099:1529::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;39099:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;39099:1529:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39099:1529:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;39099:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;39099:1529:0;;;;;;;;-1:-1:-1;39099:1529:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;39099:1529:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39099:1529:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;39099:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;39099:1529:0;;-1:-1:-1;;;39099:1529:0;;;;;-1:-1:-1;39099:1529:0;;-1:-1:-1;39099:1529:0:i;106944:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;106944:133:0;;:::i;54353:3457::-;;;:::i;43568:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;43568:185:0;;;;;;;;:::i;6121:23::-;;;:::i;48161:184::-;;;:::i;86815:194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;86815:194:0;;;;;;;;;;;;;;;;;:::i;90272:647::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90272:647:0;-1:-1:-1;;;;;90272:647:0;;:::i;51371:198::-;;;:::i;46693:703::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46693:703:0;-1:-1:-1;;;;;46693:703:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108298:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;108298:113:0;;:::i;107428:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;107428:113:0;;:::i;45292:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;45292:143:0;;;;;;;;;;:::i;91197:742::-;;;:::i;100982:635::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;100982:635:0;-1:-1:-1;;;;;100982:635:0;;:::i;5538:42::-;;;:::i;109727:237::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;109727:237:0;;;;;;;;;;;;;;;;;:::i;5160:28::-;;;:::i;47824:161::-;;;:::i;93202:607::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;93202:607:0;;:::i;7518:36::-;;;:::i;4544:18::-;;;;;;;;;;;;;;;-1:-1:-1;;4544:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44725:237::-;44824:10;44793:4;44845:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;44845:32:0;;;;;;;;;;;:41;;;44902:30;;;;;;;44793:4;;44824:10;44845:32;;44824:10;;44902:30;;;;;;;;;;;44950:4;44943:11;;;44725:237;;;;;:::o;108619:149::-;108676:4;108694:8;108707:32;108727:11;108707:19;:32::i;:::-;-1:-1:-1;108693:46:0;-1:-1:-1;;108619:149:0;;;;:::o;5847:33::-;;;;:::o;48974:224::-;49052:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;49077:16;:14;:16::i;:::-;:40;49069:75;;;;;-1:-1:-1;;;49069:75:0;;;;;;;;;;;;-1:-1:-1;;;49069:75:0;;;;;;;;;;;;;;;49162:28;49182:7;49162:19;:28::i;:::-;49155:35;;105048:1;105060:11;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;48974:224;;-1:-1:-1;48974:224:0:o;6492:23::-;;;;:::o;51819:261::-;51870:4;51888:13;51903:11;51918:28;:26;:28::i;:::-;51887:59;;-1:-1:-1;51887:59:0;-1:-1:-1;51972:18:0;51965:3;:25;;;;;;;;;51957:91;;;;-1:-1:-1;;;51957:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52066:6;-1:-1:-1;;51819:261:0;;:::o;105870:684::-;106304:107;106321:12;106335:18;106355:28;106385:5;106392:7;106401:9;106304:16;:107::i;:::-;106471:10;:24;;-1:-1:-1;;;;;;106471:24:0;-1:-1:-1;;;;;106471:24:0;;;;;;;;;;;106506:40;;;-1:-1:-1;;;106506:40:0;;;;106521:10;;;;;106506:38;;:40;;;;;;;;;;;;;;;106521:10;106506:40;;;5:2:-1;;;;30:1;27;20:12;5:2;106506:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;106506:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;;;;105870:684:0:o;44060:195::-;44155:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;44179:44;44194:10;44206:3;44211;44216:6;44179:14;:44::i;:::-;:68;44172:75;;105060:11;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;44060:195;;-1:-1:-1;;;44060:195:0:o;109056:189::-;109137:4;109155:8;109168:48;109194:8;109204:11;109168:25;:48::i;:::-;-1:-1:-1;109154:62:0;109056:189;-1:-1:-1;;;;109056:189:0:o;5271:35::-;;;-1:-1:-1;;;;;5271:35:0;;:::o;4740:21::-;;;;;;:::o;45993:354::-;46055:4;46072:23;;:::i;:::-;46098:38;;;;;;;;46113:21;:19;:21::i;:::-;46098:38;;-1:-1:-1;;;;;46212:20:0;;46148:14;46212:20;;;:13;:20;;;;;;46072:64;;-1:-1:-1;46148:14:0;;;46180:53;;46072:64;;46180:17;:53::i;:::-;46147:86;;-1:-1:-1;46147:86:0;-1:-1:-1;46260:18:0;46252:4;:26;;;;;;;;;46244:70;;;;;-1:-1:-1;;;46244:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;46332:7;45993:354;-1:-1:-1;;;;45993:354:0:o;53656:88::-;53698:4;53722:14;:12;:14::i;:::-;53715:21;;53656:88;:::o;110198:119::-;110254:4;110278:31;110299:9;110278:20;:31::i;92164:735::-;92311:5;;92242:4;;92311:5;;;-1:-1:-1;;;;;92311:5:0;92297:10;:19;92293:124;;92340:65;92345:18;92365:39;92340:4;:65::i;:::-;92333:72;;;;92293:124;92467:11;;92564:30;;;-1:-1:-1;;;92564:30:0;;;;-1:-1:-1;;;;;92467:11:0;;;;92564:28;;;;;:30;;;;;;;;;;;;;;:28;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;92564:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92564:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92564:30:0;92556:71;;;;;-1:-1:-1;;;92556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;92695:11;:28;;-1:-1:-1;;;;;;92695:28:0;-1:-1:-1;;;;;92695:28:0;;;;;;;;;92805:46;;;;;;;;;;;;;;;;;;;;;;;;;;;92876:14;92871:20;92864:27;92164:735;-1:-1:-1;;;92164:735:0:o;6256:24::-;;;;:::o;5397:39::-;;;-1:-1:-1;;;;;5397:39:0;;:::o;98018:571::-;98093:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;98123:16;:14;:16::i;:::-;98110:29;-1:-1:-1;98154:29:0;;98150:277;;98345:70;98356:5;98350:12;;;;;;;;98364:50;98345:4;:70::i;:::-;98338:77;;;;;98150:277;98547:34;98568:12;98547:20;:34::i;:::-;98540:41;;;105060:11;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;98018:571;;-1:-1:-1;98018:571:0:o;5970:30::-;;;;:::o;12166:25::-;;;-1:-1:-1;;;;;12166:25:0;;:::o;45625:112::-;-1:-1:-1;;;;;45709:20:0;45682:7;45709:20;;;:13;:20;;;;;;;45625:112::o;48491:192::-;48553:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;48578:16;:14;:16::i;:::-;:40;48570:75;;;;;-1:-1:-1;;;48570:75:0;;;;;;;;;;;;-1:-1:-1;;;48570:75:0;;;;;;;;;;;;;;;-1:-1:-1;48663:12:0;;105060:11;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;48491:192;:::o;107897:133::-;107960:4;107984:38;108009:12;107984:24;:38::i;6386:25::-;;;;:::o;4640:20::-;;;;;;;;;;;;;;-1:-1:-1;;4640:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49407:287;49474:4;49492:13;49507:11;49522:36;49550:7;49522:27;:36::i;:::-;49491:67;;-1:-1:-1;49491:67:0;-1:-1:-1;49584:18:0;49577:3;:25;;;;;;;;;49569:93;;;;-1:-1:-1;;;49569:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39099:1529;39453:5;;;;;-1:-1:-1;;;;;39453:5:0;39439:10;:19;39431:68;;;;-1:-1:-1;;;39431:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39518:18;;:23;:43;;;;-1:-1:-1;39545:11:0;;:16;39518:43;39510:91;;;;-1:-1:-1;;;39510:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39652:27;:58;;;39729:31;39721:92;;;;-1:-1:-1;;;39721:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39858:8;39869:29;39885:12;39869:15;:29::i;:::-;39858:40;-1:-1:-1;39917:27:0;;39909:66;;;;;-1:-1:-1;;;39909:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40115:16;:14;:16::i;:::-;40094:18;:37;25060:4;40142:11;:25;40267:46;40294:18;40267:26;:46::i;:::-;40261:52;-1:-1:-1;40332:27:0;;40324:74;;;;-1:-1:-1;;;40324:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40411:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;40434:16:0;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;;40461:8:0;:20;;;;;;-1:-1:-1;;40461:20:0;;;;;;:8;40602:18;;;;;40461:20;40602:18;;;-1:-1:-1;;;;;39099:1529:0:o;106944:133::-;106993:4;107011:8;107024:24;107037:10;107024:12;:24::i;54353:3457::-;54395:4;54412:35;;:::i;:::-;54458:14;54475;:12;:14::i;:::-;54586:17;;54629:12;;54643:13;;54586:71;;;-1:-1:-1;;;54586:71:0;;;;;;;;;;;;;;;;;;;;;;;54458:31;;-1:-1:-1;;;;;;54586:17:0;;;;:31;;:71;;;;;;;;;;;;;;;:17;:71;;;5:2:-1;;;;30:1;27;20:12;5:2;54586:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54586:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54586:71:0;54560:23;;;:97;;;4915:9;-1:-1:-1;54676:48:0;54668:89;;;;;-1:-1:-1;;;54668:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;54845:16;:14;:16::i;:::-;54819:23;;;:42;;;55018:18;;54985:52;;54819:42;54985:7;:52::i;:::-;54966:15;;;54951:86;;;54952:4;54951:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;55072:18:0;;-1:-1:-1;55056:12:0;;:34;;;;;;;;;55048:78;;;;;-1:-1:-1;;;55048:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;55660:68;55670:40;;;;;;;;55685:4;:23;;;55670:40;;;55712:4;:15;;;55660:9;:68::i;:::-;55631:25;;;55616:112;;;55617:4;55616:112;;;;;;;;;;;;;;;;;;;-1:-1:-1;55759:18:0;;-1:-1:-1;55743:12:0;;:34;;;;;;;;;55739:193;;55801:119;55812:16;55830:69;55906:4;:12;;;55901:18;;;;;;;;55801:10;:119::i;:::-;55794:126;;;;;;55739:193;55987:58;56005:4;:25;;;56032:12;;55987:17;:58::i;:::-;55959:24;;;55944:101;;;55945:4;55944:101;;;;;;;;;;;;;;;;;;;-1:-1:-1;56076:18:0;;-1:-1:-1;56060:12:0;;:34;;;;;;;;;56056:191;;56118:117;56129:16;56147:67;56221:4;:12;;;56216:18;;;;;;;56056:191;56298:47;56306:4;:24;;;56332:12;;56298:7;:47::i;:::-;56274:20;;;56259:86;;;56260:4;56259:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;56376:18:0;;-1:-1:-1;56360:12:0;;:34;;;;;;;;;56356:188;;56418:114;56429:16;56447:64;56518:4;:12;;;56513:18;;;;;;;56356:188;56596:105;56621:38;;;;;;;;56636:21;;56621:38;;;56661:4;:24;;;56687:13;;56596:24;:105::i;:::-;56571:21;;;56556:145;;;56557:4;56556:145;;;;;;;;;;;;;;;;;;;-1:-1:-1;56732:18:0;;-1:-1:-1;56716:12:0;;:34;;;;;;;;;56712:189;;56774:115;56785:16;56803:65;56875:4;:12;;;56870:18;;;;;;;56712:189;56951:77;56976:4;:25;;;57003:11;;57016;;56951:24;:77::i;:::-;56928:19;;;56913:115;;;56914:4;56913:115;;;;;;;;;;;;;;;;;;;-1:-1:-1;57059:18:0;;-1:-1:-1;57043:12:0;;:34;;;;;;;;;57039:187;;57101:113;57112:16;57130:63;57200:4;:12;;;57195:18;;;;;;;57039:187;57450:23;;;;;57429:18;:44;57498:19;;;;57484:11;:33;;;57543:20;;;;57528:12;:35;;;57590:21;;;;57574:13;:37;57702:24;;;;57676:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57787:14;57782:20;57775:27;;;;54353:3457;:::o;43568:185::-;43646:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;43670:51;43685:10;43697;43709:3;43714:6;43670:14;:51::i;:::-;:75;43663:82;;105060:11;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;43568:185;;-1:-1:-1;;43568:185:0:o;6121:23::-;;;;:::o;48161:184::-;48238:17;;48214:4;;-1:-1:-1;;;;;48238:17:0;:31;48270:14;:12;:14::i;:::-;48286:12;;48300:13;;48315:21;;48238:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48238:99:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48238:99:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48238:99:0;;-1:-1:-1;48161:184:0;:::o;86815:194::-;86917:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;86941:60;86955:10;86967;86979:8;86989:11;86941:13;:60::i;:::-;86934:67;;105060:11;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;86815:194;;-1:-1:-1;;;86815:194:0:o;90272:647::-;90417:5;;90349:4;;90417:5;;;-1:-1:-1;;;;;90417:5:0;90403:10;:19;90399:126;;90446:67;90451:18;90471:41;90446:4;:67::i;90399:126::-;90624:12;;;-1:-1:-1;;;;;90707:30:0;;;-1:-1:-1;;;;;;90707:30:0;;;;;;;90822:49;;;90624:12;;;;90822:49;;;;;;;;;;;;;;;;;;;;;;;90896:14;90891:20;;51371:198;51431:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;51456:16;:14;:16::i;:::-;:40;51448:75;;;;;-1:-1:-1;;;51448:75:0;;;;;;;;;;;;-1:-1:-1;;;51448:75:0;;;;;;;;;;;;;;;51541:20;:18;:20::i;:::-;51534:27;;105060:11;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;51371:198;:::o;46693:703::-;-1:-1:-1;;;;;46817:22:0;;46761:4;46817:22;;;:13;:22;;;;;;46761:4;;;;;;;;;46968:36;46831:7;46968:27;:36::i;:::-;46944:60;-1:-1:-1;46944:60:0;-1:-1:-1;47027:18:0;47019:4;:26;;;;;;;;;47015:99;;47075:16;47070:22;47062:40;-1:-1:-1;47094:1:0;;-1:-1:-1;47094:1:0;;-1:-1:-1;47094:1:0;;-1:-1:-1;47062:40:0;;-1:-1:-1;;;;47062:40:0;47015:99;47157:28;:26;:28::i;:::-;47126:59;-1:-1:-1;47126:59:0;-1:-1:-1;47208:18:0;47200:4;:26;;;;;;;;;47196:99;;47256:16;47251:22;;47196:99;-1:-1:-1;47320:14:0;;-1:-1:-1;47337:13:0;;-1:-1:-1;47352:13:0;-1:-1:-1;47352:13:0;-1:-1:-1;46693:703:0;;;;;;:::o;108298:113::-;108351:4;108375:28;108390:12;108375:14;:28::i;107428:113::-;107481:4;107505:28;107520:12;107505:14;:28::i;45292:143::-;-1:-1:-1;;;;;45393:25:0;;;45366:7;45393:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;45292:143::o;91197:742::-;91347:12;;91239:4;;-1:-1:-1;;;;;91347:12:0;91333:10;:26;;;:54;;-1:-1:-1;91363:10:0;:24;91333:54;91329:164;;;91411:70;91416:18;91436:44;91411:4;:70::i;:::-;91404:77;;;;91329:164;91577:5;;;91619:12;;;-1:-1:-1;;;;;91619:12:0;;;91577:5;91692:20;;;-1:-1:-1;;;;;;91692:20:0;;;;;;;-1:-1:-1;;;;;;91761:25:0;;;;;;91804;;;91577:5;;;;;;91804:25;;;91823:5;;;;;91804:25;;;;;;91577:5;;91619:12;;91804:25;;;;;;;;;91878:12;;91845:46;;;-1:-1:-1;;;;;91845:46:0;;;;;91878:12;;;91845:46;;;;;;;;;;;;;;;;91916:14;91911:20;;100982:635;101069:4;101086:10;101099:16;:14;:16::i;:::-;101086:29;-1:-1:-1;101130:29:0;;101126:300;;101336:78;101347:5;101341:12;;;;;;;;101355:58;101336:4;:78::i;:::-;101329:85;;;;;101126:300;101561:48;101588:20;101561:26;:48::i;5538:42::-;;;-1:-1:-1;;;;;5538:42:0;;:::o;109727:237::-;109840:4;109858:8;109871:64;109895:8;109905:11;109918:16;109871:23;:64::i;:::-;-1:-1:-1;109857:78:0;109727:237;-1:-1:-1;;;;;109727:237:0:o;5160:28::-;;;;;;-1:-1:-1;;;;;5160:28:0;;:::o;47824:161::-;47901:17;;47877:4;;-1:-1:-1;;;;;47901:17:0;:31;47933:14;:12;:14::i;:::-;47949:12;;47963:13;;47901:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;93202:607:0;93291:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;93321:16;:14;:16::i;:::-;93308:29;-1:-1:-1;93352:29:0;;93348:286;;93549:73;93560:5;93554:12;;;;;;;;93568:53;93549:4;:73::i;93348:286::-;93753:48;93776:24;93753:22;:48::i;7518:36::-;7550:4;7518:36;:::o;74671:572::-;74749:4;104981:11;;74749:4;;104981:11;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;74785:16;:14;:16::i;:::-;74772:29;-1:-1:-1;74816:29:0;;74812:260;;74989:67;75000:5;74994:12;;;;;;;;75008:47;74989:4;:67::i;:::-;74981:79;-1:-1:-1;75058:1:0;;-1:-1:-1;74981:79:0;;-1:-1:-1;74981:79:0;74812:260;75182:53;75199:10;75211;75223:11;75182:16;:53::i;:::-;75175:60;;;;;105048:1;105060:11;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;74671:572;;;;-1:-1:-1;74671:572:0:o;52344:1142::-;52405:9;52416:4;52437:11;;52452:1;52437:16;52433:1046;;;-1:-1:-1;;52630:27:0;;52610:18;;52602:56;;52433:1046;52840:14;52857;:12;:14::i;:::-;52840:31;;52886:33;52934:23;;:::i;:::-;52972:17;53048:54;53063:9;53074:12;;53088:13;;53048:14;:54::i;:::-;53006:96;-1:-1:-1;53006:96:0;-1:-1:-1;53132:18:0;53121:7;:29;;;;;;;;;53117:89;;53179:7;-1:-1:-1;53188:1:0;;-1:-1:-1;53171:19:0;;-1:-1:-1;;;53171:19:0;53117:89;53248:49;53255:28;53285:11;;53248:6;:49::i;:::-;53222:75;-1:-1:-1;53222:75:0;-1:-1:-1;53327:18:0;53316:7;:29;;;;;;;;;53312:89;;53374:7;-1:-1:-1;53383:1:0;;-1:-1:-1;53366:19:0;;-1:-1:-1;;;53366:19:0;53312:89;-1:-1:-1;53445:21:0;53425:18;;-1:-1:-1;53445:21:0;-1:-1:-1;53417:50:0;;-1:-1:-1;;53417:50:0;52433:1046;52344:1142;;:::o;41091:2216::-;41265:11;;:60;;;-1:-1:-1;;;41265:60:0;;41301:4;41265:60;;;;-1:-1:-1;;;;;41265:60:0;;;;;;;;;;;;;;;;;;;;;;41189:4;;;;41265:11;;:27;;:60;;;;;;;;;;;;;;41189:4;41265:11;:60;;;5:2:-1;;;;30:1;27;20:12;5:2;41265:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41265:60:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41265:60:0;;-1:-1:-1;41340:12:0;;41336:144;;41376:92;41387:27;41416:42;41460:7;41376:10;:92::i;:::-;41369:99;;;;;41336:144;41546:3;-1:-1:-1;;;;;41539:10:0;:3;-1:-1:-1;;;;;41539:10:0;;41535:105;;;41573:55;41578:15;41595:32;41573:4;:55::i;41535:105::-;41717:22;-1:-1:-1;;;;;41758:14:0;;;;;;;41754:160;;;-1:-1:-1;;;41754:160:0;;;-1:-1:-1;;;;;;41870:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;41754:160;41992:17;42020;42048;42076;42132:34;42140:17;42159:6;42132:7;:34::i;:::-;42106:60;;-1:-1:-1;42106:60:0;-1:-1:-1;42192:18:0;42181:7;:29;;;;;;;;;42177:125;;42234:56;42239:16;42257:32;42234:4;:56::i;:::-;42227:63;;;;;;;;;;42177:125;-1:-1:-1;;;;;42348:18:0;;;;;;:13;:18;;;;;;42340:35;;42368:6;42340:7;:35::i;:::-;42314:61;;-1:-1:-1;42314:61:0;-1:-1:-1;42401:18:0;42390:7;:29;;;;;;;;;42386:124;;42443:55;42448:16;42466:31;42443:4;:55::i;42386:124::-;-1:-1:-1;;;;;42556:18:0;;;;;;:13;:18;;;;;;42548:35;;42576:6;42548:7;:35::i;:::-;42522:61;;-1:-1:-1;42522:61:0;-1:-1:-1;42609:18:0;42598:7;:29;;;;;;;;;42594:122;;42651:53;42656:16;42674:29;42651:4;:53::i;42594:122::-;-1:-1:-1;;;;;42849:18:0;;;;;;;:13;:18;;;;;;:33;;;42893:18;;;;;;:33;;;-1:-1:-1;;42999:29:0;;42995:109;;-1:-1:-1;;;;;43045:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;42995:109;43175:3;-1:-1:-1;;;;;43161:26:0;43170:3;-1:-1:-1;;;;;43161:26:0;-1:-1:-1;;;;;;;;;;;43180:6:0;43161:26;;;;;;;;;;;;;;;;;;43200:11;;:59;;;-1:-1:-1;;;43200:59:0;;43235:4;43200:59;;;;-1:-1:-1;;;;;43200:59:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:26;;:59;;;;;:11;;:59;;;;;;;:11;;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;43200:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;43284:14:0;;-1:-1:-1;43279:20:0;;-1:-1:-1;;43279:20:0;;43272:27;41091:2216;-1:-1:-1;;;;;;;;;;;41091:2216:0:o;75576:594::-;75678:4;104981:11;;75678:4;;104981:11;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;75714:16;:14;:16::i;:::-;75701:29;-1:-1:-1;75745:29:0;;75741:260;;75918:67;75929:5;75923:12;;;;;;;;75937:47;75918:4;:67::i;:::-;75910:79;-1:-1:-1;75987:1:0;;-1:-1:-1;75910:79:0;;-1:-1:-1;75910:79:0;75741:260;76111:51;76128:10;76140:8;76150:11;76111:16;:51::i;:::-;76104:58;;;;;105048:1;105060:11;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;75576:594;;;;-1:-1:-1;75576:594:0;-1:-1:-1;75576:594:0:o;27121:313::-;27198:9;27209:4;27227:13;27242:18;;:::i;:::-;27264:20;27274:1;27277:6;27264:9;:20::i;:::-;27226:58;;-1:-1:-1;27226:58:0;-1:-1:-1;27306:18:0;27299:3;:25;;;;;;;;;27295:73;;-1:-1:-1;27349:3:0;-1:-1:-1;27354:1:0;;-1:-1:-1;27341:15:0;;27295:73;27388:18;27408:17;27417:7;27408:8;:17::i;:::-;27380:46;;;;;;27121:313;;;;;;:::o;110585:169::-;110687:10;;110716:30;;;-1:-1:-1;;;110716:30:0;;110740:4;110716:30;;;;;;110632:4;;-1:-1:-1;;;;;110687:10:0;;;;110716:15;;:30;;;;;;;;;;;;;;;110687:10;110716:30;;;5:2:-1;;;;30:1;27;20:12;5:2;110716:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;110716:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;110716:30:0;;-1:-1:-1;;110585:169:0;:::o;95306:590::-;95383:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;95413:16;:14;:16::i;:::-;95400:29;-1:-1:-1;95444:29:0;;95440:274;;95635:67;95646:5;95640:12;;;;;;;;95654:47;95635:4;:67::i;95440:274::-;95837:28;95855:9;95837:17;:28::i;:::-;-1:-1:-1;95825:40:0;-1:-1:-1;;105060:11:0;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;95306:590;;-1:-1:-1;95306:590:0:o;21804:153::-;21865:4;21887:33;21900:3;21895:9;;;;;;;;21911:4;21906:10;;;;;;;;21887:33;;;;;;;;;;;;;21918:1;21887:33;;;;;;;;;;;;;21945:3;21940:9;;;;;;;98866:1747;99077:5;;98933:4;;;;99077:5;;;-1:-1:-1;;;;;99077:5:0;99063:10;:19;99059:124;;99106:65;99111:18;99131:39;99106:4;:65::i;99059:124::-;99309:16;:14;:16::i;:::-;99287:18;;:38;99283:147;;99349:69;99354:22;99378:39;99349:4;:69::i;99283:147::-;99536:12;99519:14;:12;:14::i;:::-;:29;99515:152;;;99572:83;99577:29;99608:46;99572:4;:83::i;99515:152::-;99761:13;;99746:12;:28;99742:129;;;99798:61;99803:15;99820:38;99798:4;:61::i;99742:129::-;-1:-1:-1;100023:13:0;;:28;;;;100159:33;;;100151:82;;;;-1:-1:-1;;;100151:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100307:13;:32;;;100473:5;;100459:34;;100473:5;;;-1:-1:-1;;;;;100473:5:0;100480:12;100459:13;:34::i;:::-;100527:5;;100511:54;;;100527:5;;;;-1:-1:-1;;;;;100527:5:0;100511:54;;;;;;;;;;;;;;;;;;;;;;;;;100590:14;100585:20;;64141:537;64225:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;64255:16;:14;:16::i;:::-;64242:29;-1:-1:-1;64286:29:0;;64282:249;;64458:61;64469:5;64463:12;;;;;;;;64477:41;64458:4;:61::i;64282:249::-;64630:40;64642:10;64654:1;64657:12;64630:11;:40::i;49948:1268::-;-1:-1:-1;;;;;50297:23:0;;50025:9;50297:23;;;:14;:23;;;;;50526:24;;50025:9;;;;;;;;50522:92;;-1:-1:-1;50580:18:0;;-1:-1:-1;50580:18:0;;-1:-1:-1;50572:30:0;;-1:-1:-1;;;50572:30:0;50522:92;50841:46;50849:14;:24;;;50875:11;;50841:7;:46::i;:::-;50808:79;;-1:-1:-1;50808:79:0;-1:-1:-1;50913:18:0;50902:7;:29;;;;;;;;;50898:81;;-1:-1:-1;50956:7:0;;-1:-1:-1;50965:1:0;;-1:-1:-1;50948:19:0;;-1:-1:-1;;50948:19:0;50898:81;51011:58;51019:19;51040:14;:28;;;51011:7;:58::i;:::-;50991:78;;-1:-1:-1;50991:78:0;-1:-1:-1;51095:18:0;51084:7;:29;;;;;;;;;51080:81;;-1:-1:-1;51138:7:0;;-1:-1:-1;51147:1:0;;-1:-1:-1;51130:19:0;;-1:-1:-1;;51130:19:0;51080:81;-1:-1:-1;51181:18:0;;-1:-1:-1;51201:6:0;-1:-1:-1;;;49948:1268:0;;;;:::o;47555:93::-;47628:12;47555:93;:::o;101947:1299::-;102247:5;;102041:4;;;;102247:5;;;-1:-1:-1;;;;;102247:5:0;102233:10;:19;102229:132;;102276:73;102281:18;102301:47;102276:4;:73::i;102229:132::-;102487:16;:14;:16::i;:::-;102465:18;;:38;102461:155;;102527:77;102532:22;102556:47;102527:4;:77::i;102461:155::-;102710:17;;;;;;;;;-1:-1:-1;;;;;102710:17:0;102687:40;;102830:20;-1:-1:-1;;;;;102830:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;102830:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;102830:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;102830:42:0;102822:83;;;;;-1:-1:-1;;;102822:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;102982:17;:40;;-1:-1:-1;;;;;;102982:40:0;-1:-1:-1;;;;;102982:40:0;;;;;;;;;103128:70;;;;;;;;;;;;;;;;;;;;;;;;;;;103223:14;103218:20;;58208:547;58278:4;104981:11;;58278:4;;104981:11;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;58314:16;:14;:16::i;:::-;58301:29;-1:-1:-1;58345:29:0;;58341:252;;58518:59;58529:5;58523:12;;;;;;;;58537:39;58518:4;:59::i;58341:252::-;58714:33;58724:10;58736;58714:9;:33::i;23666:236::-;23722:9;23733:4;23759:1;23754;:6;23750:145;;-1:-1:-1;23785:18:0;;-1:-1:-1;23805:5:0;;;23777:34;;23750:145;-1:-1:-1;23852:27:0;;-1:-1:-1;23881:1:0;23844:39;;26655:353;26724:9;26735:10;;:::i;:::-;26759:14;26775:19;26798:27;26806:1;:10;;;26818:6;26798:7;:27::i;:::-;26758:67;;-1:-1:-1;26758:67:0;-1:-1:-1;26848:18:0;26840:4;:26;;;;;;;;;26836:92;;-1:-1:-1;26897:18:0;;;;;;;;;-1:-1:-1;26897:18:0;;26891:4;;-1:-1:-1;26897:18:0;-1:-1:-1;26883:33:0;;26836:92;26968:31;;;;;;;;;;;;-1:-1:-1;;26968:31:0;;-1:-1:-1;26655:353:0;-1:-1:-1;;;;26655:353:0:o;22080:187::-;22165:4;22187:43;22200:3;22195:9;;;;;;;;22211:4;22206:10;;;;;;;;22187:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;22255:3;22250:9;;;;;;;23987:258;24043:9;;24080:5;;;24102:6;;;24098:140;;24133:18;;-1:-1:-1;24153:1:0;-1:-1:-1;24125:30:0;;24098:140;-1:-1:-1;24196:26:0;;-1:-1:-1;24224:1:0;;-1:-1:-1;24188:38:0;;27579:328;27676:9;27687:4;27705:13;27720:18;;:::i;:::-;27742:20;27752:1;27755:6;27742:9;:20::i;:::-;27704:58;;-1:-1:-1;27704:58:0;-1:-1:-1;27784:18:0;27777:3;:25;;;;;;;;;27773:73;;-1:-1:-1;27827:3:0;-1:-1:-1;27832:1:0;;-1:-1:-1;27819:15:0;;27773:73;27865:34;27873:17;27882:7;27873:8;:17::i;:::-;27892:6;27865:7;:34::i;:::-;27858:41;;;;;;27579:328;;;;;;;:::o;87684:2139::-;87875:11;;:87;;;-1:-1:-1;;;87875:87:0;;87908:4;87875:87;;;;-1:-1:-1;;;;;87875:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87802:4;;;;87875:11;;:24;;:87;;;;;;;;;;;;;;87802:4;87875:11;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;87875:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87875:87:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87875:87:0;;-1:-1:-1;87977:12:0;;87973:151;;88013:99;88024:27;88053:49;88104:7;88013:10;:99::i;87973:151::-;88197:10;-1:-1:-1;;;;;88185:22:0;:8;-1:-1:-1;;;;;88185:22:0;;88181:146;;;88231:84;88236:26;88264:50;88231:4;:84::i;88181:146::-;-1:-1:-1;;;;;88751:23:0;;88339:17;88751:23;;;:13;:23;;;;;;88339:17;;;;88743:45;;88776:11;88743:7;:45::i;:::-;88712:76;;-1:-1:-1;88712:76:0;-1:-1:-1;88814:18:0;88803:7;:29;;;;;;;;;88799:166;;88856:97;88867:16;88885:52;88944:7;88939:13;;;;;;;88856:97;88849:104;;;;;;;;88799:166;-1:-1:-1;;;;;89018:25:0;;;;;;:13;:25;;;;;;89010:47;;89045:11;89010:7;:47::i;:::-;88977:80;;-1:-1:-1;88977:80:0;-1:-1:-1;89083:18:0;89072:7;:29;;;;;;;;;89068:166;;89125:97;89136:16;89154:52;89213:7;89208:13;;;;;;;89068:166;-1:-1:-1;;;;;89437:23:0;;;;;;;:13;:23;;;;;;;;:43;;;89491:25;;;;;;;;;;:47;;;89593:43;;;;;;;89491:25;;-1:-1:-1;;;;;;;;;;;89593:43:0;;;;;;;;;;89689:11;;:86;;;-1:-1:-1;;;89689:86:0;;89721:4;89689:86;;;;-1:-1:-1;;;;;89689:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:23;;:86;;;;;:11;;:86;;;;;;;:11;;:86;;;5:2:-1;;;;30:1;27;20:12;5:2;89689:86:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;89800:14:0;;-1:-1:-1;89795:20:0;;-1:-1:-1;;89795:20:0;;89788:27;87684:2139;-1:-1:-1;;;;;;;;;87684:2139:0:o;70433:524::-;70507:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;70537:16;:14;:16::i;:::-;70524:29;-1:-1:-1;70568:29:0;;70564:249;;70740:61;70751:5;70745:12;;;;;;;;70759:41;70740:4;:61::i;70564:249::-;70912:37;70924:10;70936:12;70912:11;:37::i;63234:527::-;63308:4;104981:11;;;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;63338:16;:14;:16::i;:::-;63325:29;-1:-1:-1;63369:29:0;;63365:249;;63541:61;63552:5;63546:12;;;;;;;63365:249;63713:40;63725:10;63737:12;63751:1;63713:11;:40::i;81066:994::-;81200:4;104981:11;;81200:4;;104981:11;;104973:34;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;-1:-1:-1;;;104973:34:0;;;;;;;;;;;;;;;105032:5;105018:19;;-1:-1:-1;;105018:19:0;;;81236:16;:14;:16::i;:::-;81223:29;-1:-1:-1;81267:29:0;;81263:269;;81445:71;81456:5;81450:12;;;;;;;;81464:51;81445:4;:71::i;:::-;81437:83;-1:-1:-1;81518:1:0;;-1:-1:-1;81437:83:0;;-1:-1:-1;81437:83:0;81263:269;81552:16;-1:-1:-1;;;;;81552:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;81552:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;81552:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;81552:33:0;;-1:-1:-1;81600:29:0;;81596:273;;81778:75;81789:5;81783:12;;;;;;;;81797:55;81778:4;:75::i;81596:273::-;81979:73;82000:10;82012:8;82022:11;82035:16;81979:20;:73::i;:::-;81972:80;;;;;105048:1;105060:11;:18;;-1:-1:-1;;105060:18:0;105074:4;105060:18;;;81066:994;;;;-1:-1:-1;81066:994:0;-1:-1:-1;;81066:994:0:o;94077:973::-;94227:5;;94158:4;;94227:5;;;-1:-1:-1;;;;;94227:5:0;94213:10;:19;94209:127;;94256:68;94261:18;94281:42;94256:4;:68::i;94209:127::-;94443:16;:14;:16::i;:::-;94421:18;;:38;94417:150;;94483:72;94488:22;94512:42;94483:4;:72::i;94417:150::-;5081:4;94639:24;:51;94635:157;;;94714:66;94719:15;94736:43;94714:4;:66::i;94635:157::-;94836:21;;;94868:48;;;;94934:68;;;;;;;;;;;;;;;;;;;;;;;;;95027:14;95022:20;;76875:3664;77055:11;;:75;;;-1:-1:-1;;;77055:75:0;;77094:4;77055:75;;;;-1:-1:-1;;;;;77055:75:0;;;;;;;;;;;;;;;;;;;;;;76970:4;;;;;;77055:11;;;:30;;:75;;;;;;;;;;;;;;;76970:4;77055:11;:75;;;5:2:-1;;;;30:1;27;20:12;5:2;77055:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;77055:75:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;77055:75:0;;-1:-1:-1;77145:12:0;;77141:153;;77182:96;77193:27;77222:46;77270:7;77182:10;:96::i;:::-;77174:108;-1:-1:-1;77280:1:0;;-1:-1:-1;77174:108:0;;-1:-1:-1;77174:108:0;77141:153;77404:16;:14;:16::i;:::-;77382:18;;:38;77378:153;;77445:70;77450:22;77474:40;77445:4;:70::i;77378:153::-;77543:32;;:::i;:::-;-1:-1:-1;;;;;77689:24:0;;;;;;:14;:24;;;;;:38;;;77668:18;;;:59;77858:37;77704:8;77858:27;:37::i;:::-;77835:19;;;77820:75;;;77821:12;;;77820:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;77926:18:0;;-1:-1:-1;77910:4:0;:12;;;:34;;;;;;;;;77906:192;;77969:113;77980:16;77998:63;78068:4;:12;;;78063:18;;;;;;;77969:113;77961:125;-1:-1:-1;78084:1:0;;-1:-1:-1;77961:125:0;;-1:-1:-1;;77961:125:0;77906:192;-1:-1:-1;;78180:11:0;:23;78176:157;;;78239:19;;;;78220:16;;;:38;78176:157;;;78291:16;;;:30;;;78176:157;78401:40;78417:5;78424:4;:16;;;78401:15;:40::i;:::-;78390:4;;:51;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78468:14:0;78456:8;;:26;;;;;;;;;78452:136;;78512:8;;78507:65;;78522:49;78507:4;:65::i;78452:136::-;79186:37;79199:5;79206:4;:16;;;79186:12;:37::i;:::-;79161:22;;;:62;;;79533:19;;;;79525:52;;:7;:52::i;:::-;79499:22;;;79484:93;;;79485:12;;;79484:93;;;;;;;;;;;;;;;;;;;-1:-1:-1;79612:18:0;;-1:-1:-1;79596:4:0;:12;;;:34;;;;;;;;;79588:105;;;;-1:-1:-1;;;79588:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79745:45;79753:12;;79767:4;:22;;;79745:7;:45::i;:::-;79721:20;;;79706:84;;;79707:12;;;79706:84;;;;;;;;;;;;;;;;;;;-1:-1:-1;79825:18:0;;-1:-1:-1;79809:4:0;:12;;;:34;;;;;;;;;79801:96;;;;-1:-1:-1;;;79801:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80017:22;;;;;;-1:-1:-1;;;;;79980:24:0;;;;;;;:14;:24;;;;;;;;;:59;;;80091:11;;80050:38;;;;:52;;;;80128:20;;;;80113:12;:35;;;80238:22;;;;80262;;80209:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80360:11;;80422:22;;;;80446:18;;;;80360:105;;;-1:-1:-1;;;80360:105:0;;80398:4;80360:105;;;;-1:-1:-1;;;;;80360:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:29;;:105;;;;;:11;;:105;;;;;;;:11;;:105;;;5:2:-1;;;;30:1;27;20:12;5:2;80360:105:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;80491:14:0;;-1:-1:-1;80486:20:0;;-1:-1:-1;;80486:20:0;;80508:4;:22;;;80478:53;;;;;;76875:3664;;;;;;:::o;24314:271::-;24385:9;24396:4;24414:14;24430:8;24442:13;24450:1;24453;24442:7;:13::i;:::-;24413:42;;-1:-1:-1;24413:42:0;-1:-1:-1;24480:18:0;24472:4;:26;;;;;;;;;24468:75;;-1:-1:-1;24523:4:0;-1:-1:-1;24529:1:0;;-1:-1:-1;24515:16:0;;24468:75;24562:15;24570:3;24575:1;24562:7;:15::i;25414:515::-;25475:9;25486:10;;:::i;:::-;25510:14;25526:20;25550:22;25558:3;25060:4;25550:7;:22::i;:::-;25509:63;;-1:-1:-1;25509:63:0;-1:-1:-1;25595:18:0;25587:4;:26;;;;;;;;;25583:92;;-1:-1:-1;25644:18:0;;;;;;;;;-1:-1:-1;25644:18:0;;25638:4;;-1:-1:-1;25644:18:0;-1:-1:-1;25630:33:0;;25583:92;25688:14;25704:13;25721:31;25729:15;25746:5;25721:7;:31::i;:::-;25687:65;;-1:-1:-1;25687:65:0;-1:-1:-1;25775:18:0;25767:4;:26;;;;;;;;;25763:92;;-1:-1:-1;25824:18:0;;;;;;;;;-1:-1:-1;25824:18:0;;25818:4;;-1:-1:-1;25824:18:0;-1:-1:-1;25810:33:0;;-1:-1:-1;;25810:33:0;25763:92;25895:25;;;;;;;;;;;;-1:-1:-1;;25895:25:0;;-1:-1:-1;25414:515:0;-1:-1:-1;;;;;;25414:515:0:o;31934:213::-;32116:12;25060:4;32116:23;;;31934:213::o;96236:1527::-;96297:4;96303;96364:21;96396:20;96543:16;:14;:16::i;:::-;96521:18;;:38;96517:163;;96584:66;96589:22;96613:36;96584:4;:66::i;:::-;96576:92;-1:-1:-1;96652:15:0;-1:-1:-1;96576:92:0;;-1:-1:-1;96576:92:0;96517:163;96737:9;96749:38;96765:10;96777:9;96749:15;:38::i;:::-;96737:50;-1:-1:-1;96809:14:0;96802:3;:21;;;;;;;;;96798:140;;96848:60;96853:3;96858:49;96848:4;:60::i;:::-;96910:15;96840:86;;;;;;;;;96798:140;97165:35;97178:10;97190:9;97165:12;:35::i;:::-;97147:53;;97248:15;97232:13;;:31;97213:50;;97338:13;;97318:16;:33;;97310:78;;;;;-1:-1:-1;;;97310:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97465:13;:32;;;97586:60;;;97600:10;97586:60;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;97722:14:0;;97739:15;;-1:-1:-1;96236:1527:0;-1:-1:-1;;;96236:1527:0:o;114272:904::-;114408:10;;114430:26;;;-1:-1:-1;;;114430:26:0;;-1:-1:-1;;;;;114430:26:0;;;;;;;;;;;;;;;114408:10;;;;;;;114430:14;;:26;;;;;114348:31;;114430:26;;;;;;;;114348:31;114408:10;114430:26;;;5:2:-1;;;;30:1;27;20:12;5:2;114430:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;114430:26:0;;;;114469:12;114523:16;114562:1;114557:152;;;;114732:2;114727:219;;;;115081:1;115078;115071:12;114557:152;-1:-1:-1;;114652:6:0;-1:-1:-1;114557:152:0;;114727:219;114829:2;114826:1;114823;114808:24;114871:1;114865:8;114854:19;;114516:586;;115131:7;115123:45;;;;;-1:-1:-1;;;115123:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;114272:904;;;;:::o;65567:4598::-;65674:4;65699:19;;;:42;;-1:-1:-1;65722:19:0;;65699:42;65691:107;;;;-1:-1:-1;;;65691:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65811:27;;:::i;:::-;65955:28;:26;:28::i;:::-;65926:25;;;65911:72;;;65912:12;;;65911:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;66014:18:0;;-1:-1:-1;65998:4:0;:12;;;:34;;;;;;;;;65994:168;;66056:94;66067:16;66085:44;66136:4;:12;;;66131:18;;;;;;;66056:94;66049:101;;;;;65994:168;66216:18;;66212:1290;;66492:17;;;:34;;;66597:42;;;;;;;;66612:25;;;;66597:42;;66579:77;;66512:14;66579:17;:77::i;:::-;66558:17;;;66543:113;;;66544:12;;;66543:113;;;;;;;;;;;;;;;;;;;-1:-1:-1;66691:18:0;;-1:-1:-1;66675:4:0;:12;;;:34;;;;;;;;;66671:185;;66737:103;66748:16;66766:53;66826:4;:12;;;66821:18;;;;;;;66671:185;66212:1290;;;67158:82;67181:14;67197:42;;;;;;;;67212:4;:25;;;67197:42;;;67158:22;:82::i;:::-;67137:17;;;67122:118;;;67123:12;;;67122:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;67275:18:0;;-1:-1:-1;67259:4:0;:12;;;:34;;;;;;;;;67255:185;;67321:103;67332:16;67350:53;67410:4;:12;;;67405:18;;;;;;;67255:185;67456:17;;;:34;;;66212:1290;67571:11;;67622:17;;;;67571:69;;;-1:-1:-1;;;67571:69:0;;67605:4;67571:69;;;;-1:-1:-1;;;;;67571:69:0;;;;;;;;;;;;;;;;67556:12;;67571:11;;;;;:25;;:69;;;;;;;;;;;;;;;67556:12;67571:11;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;67571:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;67571:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;67571:69:0;;-1:-1:-1;67655:12:0;;67651:142;;67691:90;67702:27;67731:40;67773:7;67691:10;:90::i;:::-;67684:97;;;;;;67651:142;67903:16;:14;:16::i;:::-;67881:18;;:38;67877:142;;67943:64;67948:22;67972:34;67943:4;:64::i;67877:142::-;68314:39;68322:11;;68335:4;:17;;;68314:7;:39::i;:::-;68291:19;;;68276:77;;;68277:12;;;68276:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;68384:18:0;;-1:-1:-1;68368:4:0;:12;;;:34;;;;;;;;;68364:178;;68426:104;68437:16;68455:54;68516:4;:12;;;68511:18;;;;;;;68364:178;-1:-1:-1;;;;;68602:23:0;;;;;;:13;:23;;;;;;68627:17;;;;68594:51;;68602:23;68594:7;:51::i;:::-;68569:21;;;68554:91;;;68555:12;;;68554:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;68676:18:0;;-1:-1:-1;68660:4:0;:12;;;:34;;;;;;;;;68656:181;;68718:107;68729:16;68747:57;68811:4;:12;;;68806:18;;;;;;;68656:181;68935:4;:17;;;68918:14;:12;:14::i;:::-;:34;68914:155;;;68976:81;68981:29;69012:44;68976:4;:81::i;68914:155::-;69565:42;69579:8;69589:4;:17;;;69565:13;:42::i;:::-;69700:19;;;;69686:11;:33;69756:21;;;;-1:-1:-1;;;;;69730:23:0;;;;;;:13;:23;;;;;;;;;:47;;;;69889:17;;;;69855:52;;;;;;;69882:4;;-1:-1:-1;;;;;;;;;;;69855:52:0;;;;;;;69940:17;;;;69959;;;;;69923:54;;;-1:-1:-1;;;;;69923:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70030:11;;70080:17;;;;70099;;;;70030:87;;;-1:-1:-1;;;70030:87:0;;70063:4;70030:87;;;;-1:-1:-1;;;;;70030:87:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:24;;:87;;;;;:11;;:87;;;;;;;:11;;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;70030:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;70142:14:0;;-1:-1:-1;70137:20:0;;-1:-1:-1;;70137:20:0;;70130:27;65567:4598;-1:-1:-1;;;;;;65567:4598:0:o;22878:343::-;22934:9;;22966:6;22962:69;;-1:-1:-1;22997:18:0;;-1:-1:-1;22997:18:0;22989:30;;22962:69;23052:5;;;23056:1;23052;:5;:1;23074:5;;;;;:10;23070:144;;-1:-1:-1;23109:26:0;;-1:-1:-1;23137:1:0;;-1:-1:-1;23101:38:0;;23070:144;23180:18;;-1:-1:-1;23200:1:0;-1:-1:-1;23172:30:0;;23316:215;23372:9;;23404:6;23400:77;;-1:-1:-1;23435:26:0;;-1:-1:-1;23463:1:0;23427:38;;23400:77;23497:18;23521:1;23517;:5;;;;;;23489:34;;;;23316:215;;;;;:::o;59465:3418::-;59613:11;;:58;;;-1:-1:-1;;;59613:58:0;;59645:4;59613:58;;;;-1:-1:-1;;;;;59613:58:0;;;;;;;;;;;;;;;59535:4;;;;;;59613:11;;;:23;;:58;;;;;;;;;;;;;;;59535:4;59613:11;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;59613:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;59613:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;59613:58:0;;-1:-1:-1;59686:12:0;;59682:145;;59723:88;59734:27;59763:38;59803:7;59723:10;:88::i;:::-;59715:100;-1:-1:-1;59813:1:0;;-1:-1:-1;59715:100:0;;-1:-1:-1;59715:100:0;59682:145;59937:16;:14;:16::i;:::-;59915:18;;:38;59911:145;;59978:62;59983:22;60007:32;59978:4;:62::i;59911:145::-;60068:25;;:::i;:::-;60162:35;60178:6;60186:10;60162:15;:35::i;:::-;60151:4;;:46;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60224:14:0;60212:8;;:26;;;;;;;;;60208:128;;60268:8;;60263:57;;60278:41;60263:4;:57::i;:::-;60255:69;-1:-1:-1;60322:1:0;;-1:-1:-1;60255:69:0;;-1:-1:-1;;60255:69:0;60208:128;60392:28;:26;:28::i;:::-;60363:25;;;60348:72;;;60349:12;;;60348:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;60451:18:0;;-1:-1:-1;60435:4:0;:12;;;:34;;;;;;;;;60431:171;;60494:92;60505:16;60523:42;60572:4;:12;;;60567:18;;;;;;;60431:171;61234:32;61247:6;61255:10;61234:12;:32::i;:::-;61210:21;;;:56;;;61539:42;;;;;;;;61554:25;;;;61539:42;;61493:89;;61210:56;61493:22;:89::i;:::-;61474:15;;;61459:123;;;61460:12;;;61459:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;61617:18:0;;-1:-1:-1;61601:4:0;:12;;;:34;;;;;;;;;61593:79;;;;;-1:-1:-1;;;61593:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61976:37;61984:11;;61997:4;:15;;;61976:7;:37::i;:::-;61953:19;;;61938:75;;;61939:12;;;61938:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;62048:18:0;;-1:-1:-1;62032:4:0;:12;;;:34;;;;;;;;;62024:87;;;;-1:-1:-1;;;62024:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62172:21:0;;;;;;:13;:21;;;;;;62195:15;;;;62164:47;;62172:21;62164:7;:47::i;:::-;62139:21;;;62124:87;;;62125:12;;;62124:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;62246:18:0;;-1:-1:-1;62230:4:0;:12;;;:34;;;;;;;;;62222:90;;;;-1:-1:-1;;;62222:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62405:19;;;;62391:11;:33;62459:21;;;;-1:-1:-1;;;;;62435:21:0;;;;;;:13;:21;;;;;;;;;:45;;;;62569:21;;;;62592:15;;;;;62556:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62656:15;;;;62624:48;;;;;;;-1:-1:-1;;;;;62624:48:0;;;62641:4;;-1:-1:-1;;;;;;;;;;;62624:48:0;;;;;;;;62725:11;;62771:21;;;;62794:15;;;;62725:85;;;-1:-1:-1;;;62725:85:0;;62756:4;62725:85;;;;-1:-1:-1;;;;;62725:85:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:22;;:85;;;;;:11;;:85;;;;;;;:11;;:85;;;5:2:-1;;;;30:1;27;20:12;5:2;62725:85:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;62836:14:0;;-1:-1:-1;62831:20:0;;-1:-1:-1;;62831:20:0;;62853:4;:21;;;62823:52;;;;;;59465:3418;;;;;:::o;71384:3034::-;71542:11;;:64;;;-1:-1:-1;;;71542:64:0;;71576:4;71542:64;;;;-1:-1:-1;;;;;71542:64:0;;;;;;;;;;;;;;;71468:4;;;;71542:11;;:25;;:64;;;;;;;;;;;;;;71468:4;71542:11;:64;;;5:2:-1;;;;30:1;27;20:12;5:2;71542:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;71542:64:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;71542:64:0;;-1:-1:-1;71621:12:0;;71617:142;;71657:90;71668:27;71697:40;71739:7;71657:10;:90::i;:::-;71650:97;;;;;71617:142;71869:16;:14;:16::i;:::-;71847:18;;:38;71843:142;;71909:64;71914:22;71938:34;71909:4;:64::i;71843:142::-;72094:12;72077:14;:12;:14::i;:::-;:29;72073:143;;;72130:74;72135:29;72166:37;72130:4;:74::i;72073:143::-;72228:27;;:::i;:::-;72543:37;72571:8;72543:27;:37::i;:::-;72520:19;;;72505:75;;;72506:4;72505:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;72611:18:0;;-1:-1:-1;72595:12:0;;:34;;;;;;;;;72591:181;;72653:107;72664:16;72682:57;72746:4;:12;;;72741:18;;;;;;;72653:107;72646:114;;;;;;72591:181;72825:42;72833:4;:19;;;72854:12;72825:7;:42::i;:::-;72799:22;;;72784:83;;;72785:4;72784:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;72898:18:0;;-1:-1:-1;72882:12:0;;:34;;;;;;;;;72878:188;;72940:114;72951:16;72969:64;73040:4;:12;;;73035:18;;;;;;;72878:188;73117:35;73125:12;;73139;73117:7;:35::i;:::-;73093:20;;;73078:74;;;73079:4;73078:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;73183:18:0;;-1:-1:-1;73167:12:0;;:34;;;;;;;;;73163:179;;73225:105;73236:16;73254:55;73316:4;:12;;;73311:18;;;;;;;73163:179;73834:37;73848:8;73858:12;73834:13;:37::i;:::-;73991:22;;;;;;-1:-1:-1;;;;;73954:24:0;;;;;;:14;:24;;;;;;;;:59;;;74065:11;;74024:38;;;;:52;;;;74102:20;;;;;74087:12;:35;;;74209:22;;74178:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74307:11;;:63;;;-1:-1:-1;;;74307:63:0;;74340:4;74307:63;;;;-1:-1:-1;;;;;74307:63:0;;;;;;;;;;;;;;;:11;;;;;:24;;:63;;;;;:11;;:63;;;;;;;:11;;:63;;;5:2:-1;;;;30:1;27;20:12;5:2;74307:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;74395:14:0;;-1:-1:-1;74390:20:0;;-1:-1:-1;;74390:20:0;;74383:27;71384:3034;-1:-1:-1;;;;;71384:3034:0:o;82672:3582::-;82893:11;;:111;;;-1:-1:-1;;;82893:111:0;;82936:4;82893:111;;;;-1:-1:-1;;;;;82893:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82810:4;;;;;;82893:11;;;:34;;:111;;;;;;;;;;;;;;;82810:4;82893:11;:111;;;5:2:-1;;;;30:1;27;20:12;5:2;82893:111:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;82893:111:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;82893:111:0;;-1:-1:-1;83019:12:0;;83015:150;;83056:93;83067:27;83096:43;83141:7;83056:10;:93::i;:::-;83048:105;-1:-1:-1;83151:1:0;;-1:-1:-1;83048:105:0;;-1:-1:-1;83048:105:0;83015:150;83275:16;:14;:16::i;:::-;83253:18;;:38;83249:150;;83316:67;83321:22;83345:37;83316:4;:67::i;83249:150::-;83545:16;:14;:16::i;:::-;83504;-1:-1:-1;;;;;83504:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;83504:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;83504:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;83504:37:0;:57;83500:180;;83586:78;83591:22;83615:48;83586:4;:78::i;83500:180::-;83753:10;-1:-1:-1;;;;;83741:22:0;:8;-1:-1:-1;;;;;83741:22:0;;83737:145;;;83788:78;83793:26;83821:44;83788:4;:78::i;83737:145::-;83937:16;83933:147;;83978:86;83983:36;84021:42;83978:4;:86::i;83933:147::-;-1:-1:-1;;84136:11:0;:23;84132:158;;;84184:90;84189:36;84227:46;84184:4;:90::i;84132:158::-;84346:21;84369:22;84395:51;84412:10;84424:8;84434:11;84395:16;:51::i;:::-;84345:101;;-1:-1:-1;84345:101:0;-1:-1:-1;84461:40:0;;84457:163;;84526:78;84537:16;84531:23;;;;;;;;84556:47;84526:4;:78::i;:::-;84518:90;-1:-1:-1;84606:1:0;;-1:-1:-1;84518:90:0;;-1:-1:-1;;;84518:90:0;84457:163;84877:11;;:102;;;-1:-1:-1;;;84877:102:0;;84927:4;84877:102;;;;-1:-1:-1;;;;;84877:102:0;;;;;;;;;;;;;;;84834:21;;;;84877:11;;;:41;;:102;;;;;;;;;;;;:11;:102;;;5:2:-1;;;;30:1;27;20:12;5:2;84877:102:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;84877:102:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84877:102:0;;;;;;;;;-1:-1:-1;84877:102:0;-1:-1:-1;84998:40:0;;84990:104;;;;-1:-1:-1;;;84990:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85228:11;85188:16;-1:-1:-1;;;;;85188:26:0;;85215:8;85188:36;;;;;;;;;;;;;-1:-1:-1;;;;;85188:36:0;-1:-1:-1;;;;;85188:36:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;85188:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;85188:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;85188:36:0;:51;;85180:88;;;;;-1:-1:-1;;;85180:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;85397:15;-1:-1:-1;;;;;85427:42:0;;85464:4;85427:42;85423:254;;;85499:63;85521:4;85528:10;85540:8;85550:11;85499:13;:63::i;:::-;85486:76;;85423:254;;;85608:57;;;-1:-1:-1;;;85608:57:0;;-1:-1:-1;;;;;85608:57:0;;;;;;;;;;;;;;;;;;;;;;:22;;;;;;:57;;;;;;;;;;;;;;;-1:-1:-1;85608:22:0;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;85608:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;85608:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;85608:57:0;;-1:-1:-1;85423:254:0;85783:34;;85775:67;;;;;-1:-1:-1;;;85775:67:0;;;;;;;;;;;;-1:-1:-1;;;85775:67:0;;;;;;;;;;;;;;;85907:96;;;-1:-1:-1;;;;;85907:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86056:11;;:129;;;-1:-1:-1;;;86056:129:0;;86098:4;86056:129;;;;-1:-1:-1;;;;;86056:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:33;;:129;;;;;:11;;:129;;;;;;;:11;;:129;;;5:2:-1;;;;30:1;27;20:12;5:2;86056:129:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;86211:14:0;;-1:-1:-1;86206:20:0;;-1:-1:-1;;86206:20:0;;86198:48;-1:-1:-1;86228:17:0;;-1:-1:-1;;;;;;82672:3582:0;;;;;;;;:::o;110989:429::-;111120:10;;111148:36;;;-1:-1:-1;;;111148:36:0;;-1:-1:-1;;;;;111148:36:0;;;;;;;111178:4;111148:36;;;;;;111064:5;;111120:10;;;;;111187:6;;111120:10;;111148:15;;:36;;;;;;;;;;;;;;;111120:10;111148:36;;;5:2:-1;;;;30:1;27;20:12;5:2;111148:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;111148:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;111148:36:0;:45;111144:119;;;111217:34;111210:41;;;;;111144:119;111303:6;111279:5;-1:-1:-1;;;;;111279:15:0;;111295:4;111279:21;;;;;;;;;;;;;-1:-1:-1;;;;;111279:21:0;-1:-1:-1;;;;;111279:21:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;111279:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;111279:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;111279:21:0;:30;111275:102;;;111333:32;111326:39;;;;;111275:102;-1:-1:-1;111396:14:0;;110989:429;-1:-1:-1;;;110989:429:0:o;112224:1344::-;112368:10;;112411:51;;;-1:-1:-1;;;112411:51:0;;112456:4;112411:51;;;;;;112291:4;;-1:-1:-1;;;;;112368:10:0;;112291:4;;112368:10;;112411:36;;:51;;;;;;;;;;;;;;112368:10;112411:51;;;5:2:-1;;;;30:1;27;20:12;5:2;112411:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;112411:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;112411:51:0;112473:47;;;-1:-1:-1;;;112473:47:0;;-1:-1:-1;;;;;112473:47:0;;;;;;;112506:4;112473:47;;;;;;;;;;;;112411:51;;-1:-1:-1;112473:18:0;;;;;;:47;;;;;-1:-1:-1;;112473:47:0;;;;;;;;-1:-1:-1;112473:18:0;:47;;;5:2:-1;;;;30:1;27;20:12;5:2;112473:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;112473:47:0;;;;112533:12;112587:16;112626:1;112621:153;;;;112797:2;112792:220;;;;113148:1;113145;113138:12;112621:153;-1:-1:-1;;112717:6:0;-1:-1:-1;112621:153:0;;112792:220;112895:2;112892:1;112889;112874:24;112937:1;112931:8;112920:19;;112580:589;;113198:7;113190:44;;;;;-1:-1:-1;;;113190:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;113347:10;;113332:51;;;-1:-1:-1;;;113332:51:0;;113377:4;113332:51;;;;;;113312:17;;-1:-1:-1;;;;;113347:10:0;;113332:36;;:51;;;;;;;;;;;;;;113347:10;113332:51;;;5:2:-1;;;;30:1;27;20:12;5:2;113332:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;113332:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;113332:51:0;;-1:-1:-1;113402:29:0;;;;113394:68;;;;;-1:-1:-1;;;113394:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;113480:28;;;;;112224:1344;-1:-1:-1;;;;;112224:1344:0:o;29169:337::-;29257:9;29268:4;29286:13;29301:19;;:::i;:::-;29324:31;29339:6;29347:7;28518:9;28529:10;;:::i;:::-;28836:14;28852;28870:25;25060:4;28888:6;28870:7;:25::i;:::-;28835:60;;-1:-1:-1;28835:60:0;-1:-1:-1;28918:18:0;28910:4;:26;;;;;;;;;28906:92;;-1:-1:-1;28967:18:0;;;;;;;;;-1:-1:-1;28967:18:0;;28961:4;;-1:-1:-1;28967:18:0;-1:-1:-1;28953:33:0;;28906:92;29015:35;29022:9;29033:7;:16;;;29015:6;:35::i;115403:1325::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;115403:1325:0;;;-1:-1:-1;115403:1325:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115403:1325:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115403:1325:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115403:1325:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115403:1325:0;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://828071af57941fc1c7a03f63b7f3ee952200158f55fc24cdebd8a9e878fd781e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.