ETH Price: $2,615.50 (-2.49%)
 

Overview

Max Total Supply

683.60936927 G-LendETH

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0.09941473 G-LendETH

Value
$0.00
0x41a6d452c4c5730d93784f54e8d68bf1e9956965
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:
GEther

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 8 of 11: GEther.sol
pragma solidity ^0.5.16;

import "./GToken.sol";

/**
 * @title GEther Contract
 * @notice GToken which wraps Ether
 */
contract GEther is GToken {
    /**
     * @notice Construct a new CEther 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_ 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(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(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_);

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


    /*** User Interface ***/

    /**
     * @notice Sender supplies assets into the market and receives gTokens in exchange
     * @dev Reverts upon any failure
     */
    function mint() external payable {
        (uint err,) = mintInternal(msg.value);
        requireNoError(err, "mint failed");
    }

    /**
     * @notice Sender redeems gTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of gTokens 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 gTokens 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
     * @dev Reverts upon any failure
     */
    function repayBorrow() external payable {
        (uint err,) = repayBorrowInternal(msg.value);
        requireNoError(err, "repayBorrow failed");
    }

    /**
     * @notice Sender repays a borrow belonging to borrower
     * @dev Reverts upon any failure
     * @param borrower the account with the debt being payed off
     */
    function repayBorrowBehalf(address borrower) external payable {
        (uint err,) = repayBorrowBehalfInternal(borrower, msg.value);
        requireNoError(err, "repayBorrowBehalf failed");
    }

    /**
     * @notice The sender liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @dev Reverts upon any failure
     * @param borrower The borrower of this gToken to be liquidated
     * @param gTokenCollateral The market in which to seize collateral from the borrower
     */
    function liquidateBorrow(address borrower, GToken gTokenCollateral) external payable {
        (uint err,) = liquidateBorrowInternal(borrower, msg.value, gTokenCollateral);
        requireNoError(err, "liquidateBorrow failed");
    }

    /**
     * @notice Send Ether to CEther to mint
     */
    function () external payable {
        (uint err,) = mintInternal(msg.value);
        requireNoError(err, "mint failed");
    }

    /*** Safe Token ***/

    /**
     * @notice Gets balance of this contract in terms of Ether, before this message
     * @dev This excludes the value of the current message, if any
     * @return The quantity of Ether owned by this contract
     */
    function getCashPrior() internal view returns (uint) {
        (MathError err, uint startingBalance) = subUInt(address(this).balance, msg.value);
        require(err == MathError.NO_ERROR);
        return startingBalance;
    }

    /**
     * @notice Perform the actual transfer in, which is a no-op
     * @param from Address sending the Ether
     * @param amount Amount of Ether being sent
     * @return The actual amount of Ether transferred
     */
    function doTransferIn(address from, uint amount) internal returns (uint) {
        // Sanity checks
        require(msg.sender == from, "sender mismatch");
        require(msg.value == amount, "value mismatch");
        return amount;
    }

    function doTransferOut(address payable to, uint amount) internal {
        /* Send the Ether, with minimal gas and revert on failure */
        to.transfer(amount);
    }

    function requireNoError(uint errCode, string memory message) internal pure {
        if (errCode == uint(Error.NO_ERROR)) {
            return;
        }

        bytes memory fullMessage = new bytes(bytes(message).length + 5);
        uint i;

        for (i = 0; i < bytes(message).length; i++) {
            fullMessage[i] = bytes(message)[i];
        }

        fullMessage[i+0] = byte(uint8(32));
        fullMessage[i+1] = byte(uint8(40));
        fullMessage[i+2] = byte(uint8(48 + ( errCode / 10 )));
        fullMessage[i+3] = byte(uint8(48 + ( errCode % 10 )));
        fullMessage[i+4] = byte(uint8(41));

        require(errCode == uint(Error.NO_ERROR), string(fullMessage));
    }
}

File 1 of 11: CarefulMath.sol
pragma solidity ^0.5.16;

/**
  * @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 2 of 11: ComptrollerInterface.sol
pragma solidity ^0.5.16;

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

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

    function enterMarkets(address[] calldata gTokens) external returns (uint[] memory);
    function exitMarket(address gToken) external returns (uint);

    /*** Policy Hooks ***/

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

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

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

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

    function liquidateBorrowAllowed(
        address gTokenBorrowed,
        address gTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount) external returns (uint);
    function liquidateBorrowVerify(
        address gTokenBorrowed,
        address gTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount,
        uint seizeTokens) external;

    function seizeAllowed(
        address gTokenCollateral,
        address gTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external returns (uint);
    function seizeVerify(
        address gTokenCollateral,
        address gTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external;

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

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

    function liquidateCalculateSeizeTokens(
        address gTokenBorrowed,
        address gTokenCollateral,
        uint repayAmount) external view returns (uint, uint);
}

File 3 of 11: EIP20Interface.sol
pragma solidity ^0.5.16;

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

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

    /**
     * @notice Gets the balance of the specified address
     * @param owner The address from which the balance will be retrieved
     * @return 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 4 of 11: EIP20NonStandardInterface.sol
pragma solidity ^0.5.16;

/**
 * @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 5 of 11: ErrorReporter.sol
pragma solidity ^0.5.16;

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, 
        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 6 of 11: Exponential.sol
pragma solidity ^0.5.16;

import "./CarefulMath.sol";
import "./ExponentialNoError.sol";

/**
 * @title Exponential module for storing fixed-precision decimals
 * @dev Legacy contract for compatibility reasons with existing contracts that still use MathError
 * @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, ExponentialNoError {
    /**
     * @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);
    }
}

File 7 of 11: ExponentialNoError.sol
pragma solidity ^0.5.16;

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

    struct Exp {
        uint mantissa;
    }

    struct Double {
        uint mantissa;
    }

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

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

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

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

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

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

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

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

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

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

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

    function add_(uint a, uint b) pure internal returns (uint) {
        return add_(a, b, "addition overflow");
    }

    function add_(uint a, uint b, string memory errorMessage) pure internal returns (uint) {
        uint c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

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

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

    function sub_(uint a, uint b) pure internal returns (uint) {
        return sub_(a, b, "subtraction underflow");
    }

    function sub_(uint a, uint b, string memory errorMessage) pure internal returns (uint) {
        require(b <= a, errorMessage);
        return a - b;
    }

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

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

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

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

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

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

    function mul_(uint a, uint b) pure internal returns (uint) {
        return mul_(a, b, "multiplication overflow");
    }

    function mul_(uint a, uint b, string memory errorMessage) pure internal returns (uint) {
        if (a == 0 || b == 0) {
            return 0;
        }
        uint c = a * b;
        require(c / a == b, errorMessage);
        return c;
    }

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

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

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

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

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

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

    function div_(uint a, uint b) pure internal returns (uint) {
        return div_(a, b, "divide by zero");
    }

    function div_(uint a, uint b, string memory errorMessage) pure internal returns (uint) {
        require(b > 0, errorMessage);
        return a / b;
    }

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

File 9 of 11: GToken.sol
pragma solidity ^0.5.16;

import "./ComptrollerInterface.sol";
import "./GTokenInterfaces.sol";
import "./ErrorReporter.sol";
import "./Exponential.sol";
import "./EIP20Interface.sol";
import "./EIP20NonStandardInterface.sol";
import "./InterestRateModel.sol";

/**
 * @title GToken Contract
 * @notice Abstract base for GTokens
 */
contract GToken is GTokenInterface, 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) {
        require(dst != address(0), "Zero address");
        require(src != dst, "Self transfer not allowed");

        /* Fail if transfer not allowed */
        uint allowed = comptroller.transferAllowed(address(this), src, dst, tokens);
        require(allowed == 0, "COMPTROLLER_REJECTION");

        /* 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);
        require(mathErr == MathError.NO_ERROR, "TRANSFER_NOT_ALLOWED");

        (mathErr, srcTokensNew) = subUInt(accountTokens[src], tokens);
        require(mathErr == MathError.NO_ERROR, "TRANSFER_NOT_ENOUGH");

        (mathErr, dstTokensNew) = addUInt(accountTokens[dst], tokens);
        require(mathErr == MathError.NO_ERROR, "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 gTokenBalance = 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), gTokenBalance, 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 gToken
     * @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 gToken
     * @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 GToken
     * @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 GToken
     * @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) {
        uint _totalSupply = totalSupply;
        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 gToken in the underlying asset
     * @return The quantity of underlying asset owned by this contract
     */
    function getCash() external view returns (uint) {
        return getCashPrior();
    }

    /**
     * @notice Applies accrued interest to total borrows and reserves
     * @dev This calculates interest accrued from the last checkpointed block
     *   up to the current block and writes new checkpoint to storage.
     */
    function accrueInterest() public returns (uint) {
        /* Remember the initial block number */
        uint currentBlockNumber = getBlockNumber();
        uint accrualBlockNumberPrior = accrualBlockNumber;

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

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

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

        /* Calculate the number of blocks elapsed since the last accrual */
        (MathError mathErr, uint blockDelta) = subUInt(currentBlockNumber, accrualBlockNumberPrior);
        require(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
         */

        Exp memory simpleInterestFactor;
        uint interestAccumulated;
        uint totalBorrowsNew;
        uint totalReservesNew;
        uint borrowIndexNew;

        (mathErr, simpleInterestFactor) = mulScalar(Exp({mantissa: borrowRateMantissa}), blockDelta);
        if (mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, uint(mathErr));
        }

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

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

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

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

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

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

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

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Sender supplies assets into the market and receives gTokens 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 gTokens 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;

        (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 gToken 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 gToken holds an additional `actualMintAmount`
         *  of cash.
         */
        vars.actualMintAmount = doTransferIn(minter, mintAmount);

        /*
         * We get the current exchange rate and calculate the number of gTokens 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 gTokens 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 gTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of gTokens 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 gTokens 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 gTokens
     * @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 gTokens 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 gTokens 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 gTokens (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 gToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the gToken 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 gToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the gToken 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;
        }

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

        /*
         * We call doTransferIn for the payer and the repayAmount
         *  Note: The gToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the gToken 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 gToken to be liquidated
     * @param gTokenCollateral 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, GTokenInterface gTokenCollateral) 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 = gTokenCollateral.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, gTokenCollateral);
    }

    /**
     * @notice The liquidator liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this gToken to be liquidated
     * @param liquidator The address repaying the borrow and seizing collateral
     * @param gTokenCollateral 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, GTokenInterface gTokenCollateral) internal returns (uint, uint) {
        /* Fail if liquidate not allowed */
        uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(gTokenCollateral), 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 gTokenCollateral market's block number equals current block number */
        if (gTokenCollateral.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(gTokenCollateral), actualRepayAmount);
        require(amountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED");

        /* Revert if borrower collateral token balance < seizeTokens */
        require(gTokenCollateral.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(gTokenCollateral) == address(this)) {
            seizeError = seizeInternal(address(this), liquidator, borrower, seizeTokens);
        } else {
            seizeError = gTokenCollateral.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(gTokenCollateral), seizeTokens);

        /* We call the defense hook */
        comptroller.liquidateBorrowVerify(address(this), address(gTokenCollateral), 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 gToken during the process of liquidation.
     *  Its absolutely critical to use msg.sender as the borrowed gToken and not a parameter.
     * @param liquidator The account receiving seized collateral
     * @param borrower The account having collateral seized
     * @param seizeTokens The number of gTokens 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 GToken.
     *  Its absolutely critical to use msg.sender as the seizer gToken and not a parameter.
     * @param seizerToken The contract seizing the collateral (i.e. borrowed gToken)
     * @param liquidator The account receiving seized collateral
     * @param borrower The account having collateral seized
     * @param seizeTokens The number of gTokens 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);
        }

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

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

        actualAddAmount = doTransferIn(msg.sender, addAmount);

        totalReservesNew = totalReserves + actualAddAmount;

        /* 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 change 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 Performs a transfer in, reverting upon failure. Returns the amount actually transferred to the protocol, in case of a fee.
     *  This may revert due to insufficient balance or insufficient allowance.
     */
    function doTransferIn(address from, uint amount) 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 10 of 11: GTokenInterfaces.sol
pragma solidity ^0.5.16;

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

contract GTokenStorage {
    /**
     * @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-gToken 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 GTokens (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 GTokenInterface is GTokenStorage {
    /**
     * @notice Indicator that this is a GToken contract (for inspection)
     */
    bool public constant isGToken = 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 gTokenCollateral, 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 GErc20Storage {
    /**
     * @notice Underlying asset for this GToken
     */
    address public underlying;
}

contract GErc20Interface is GErc20Storage {

    /*** 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, GTokenInterface gTokenCollateral) external returns (uint);


    /*** Admin Functions ***/

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

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

contract GDelegatorInterface is GDelegationStorage {
    /**
     * @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 GDelegateInterface is GDelegationStorage {
    /**
     * @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 11 of 11: InterestRateModel.sol
pragma solidity ^0.5.16;

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

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

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

}

Contract Security Audit

Contract ABI

[{"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"},{"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":"gTokenCollateral","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[],"name":"_acceptAdmin","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":"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":"isGToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"contract GToken","name":"gTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[],"payable":true,"stateMutability":"payable","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":[],"name":"repayBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"repayBorrowBehalf","outputs":[],"payable":true,"stateMutability":"payable","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"}]

60806040523480156200001157600080fd5b50604051620057dc380380620057dc833981810160405260e08110156200003757600080fd5b8151602083015160408085015160608601805192519496939591949391820192846401000000008211156200006b57600080fd5b9083019060208201858111156200008157600080fd5b82516401000000008111828201881017156200009c57600080fd5b82525081516020918201929091019080838360005b83811015620000cb578181015183820152602001620000b1565b50505050905090810190601f168015620000f95780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011d57600080fd5b9083019060208201858111156200013357600080fd5b82516401000000008111828201881017156200014e57600080fd5b82525081516020918201929091019080838360005b838110156200017d57818101518382015260200162000163565b50505050905090810190601f168015620001ab5780820380516001836020036101000a031916815260200191505b506040908152602082015191015160038054610100600160a81b03191633610100021790559092509050620001e587878787878762000218565b600380546001600160a01b0390921661010002610100600160a81b03199092169190911790555062000853945050505050565b60035461010090046001600160a01b03163314620002685760405162461bcd60e51b8152600401808060200182810382526024815260200180620057436024913960400191505060405180910390fd5b600954158015620002795750600a54155b620002b65760405162461bcd60e51b8152600401808060200182810382526023815260200180620057676023913960400191505060405180910390fd5b600784905583620002f95760405162461bcd60e51b81526004018080602001828103825260308152602001806200578a6030913960400191505060405180910390fd5b60006200030f876001600160e01b036200042e16565b9050801562000365576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b620003786001600160e01b036200059616565b600955670de0b6b3a7640000600a556200039b866001600160e01b036200059b16565b90508015620003dc5760405162461bcd60e51b8152600401808060200182810382526022815260200180620057ba6022913960400191505060405180910390fd5b8351620003f1906001906020870190620007b1565b50825162000407906002906020860190620007b1565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b60035460009061010090046001600160a01b031633146200046857620004606001603f6001600160e01b036200074116565b905062000591565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015620004ae57600080fd5b505afa158015620004c3573d6000803e3d6000fd5b505050506040513d6020811015620004da57600080fd5b50516200052e576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9150505b919050565b435b90565b600354600090819061010090046001600160a01b03163314620005d857620005cf600160426001600160e01b036200074116565b91505062000591565b620005eb6001600160e01b036200059616565b600954146200060b57620005cf600a60416001600160e01b036200074116565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200065d57600080fd5b505afa15801562000672573d6000803e3d6000fd5b505050506040513d60208110156200068957600080fd5b5051620006dd576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a160006200058d565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08360108111156200077157fe5b8360508111156200077e57fe5b604080519283526020830191909152600082820152519081900360600190a1826010811115620007aa57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007f457805160ff191683800117855562000824565b8280016001018555821562000824579182015b828111156200082457825182559160200191906001019062000807565b506200083292915062000836565b5090565b6200059891905b808211156200083257600081556001016200083d565b614ee080620008636000396000f3fe6080604052600436106102725760003560e01c80638f840ddd1161014f578063bd6d894d116100c1578063e9c714f21161007a578063e9c714f214610a22578063f2b3abbd14610a37578063f3fdb15a14610a6a578063f851a44014610a7f578063f8f9da2814610a94578063fca7820b14610aa957610272565b8063bd6d894d146108ff578063c37f68e214610914578063c5ebeaec1461096d578063db006a7514610997578063dd62ed3e146109c1578063e5974619146109fc57610272565b8063a9059cbb11610113578063a9059cbb146107f8578063aa5af0fd14610831578063aae40a2a14610846578063ae9d70b014610874578063b2a02ff114610889578063b71d1a0c146108cc57610272565b80638f840ddd1461062757806395d89b411461063c57806395dd91931461065157806399d8c1b414610684578063a6afed95146107e357610272565b80633af9e669116101e85780635fe3b567116101ac5780635fe3b56714610561578063601a0bf1146105765780636c540baf146105a057806370a08231146105b557806373acee98146105e8578063852a12e3146105fd57610272565b80633af9e669146104c95780633b1d21a2146104fc5780634576b5db1461051157806347bd3718146105445780634e4d9fea1461055957610272565b806318160ddd1161023a57806318160ddd146103eb578063182df0f514610400578063238d93111461041557806323b872dd1461042a578063267822471461046d578063313ce5671461049e57610272565b806306fdde03146102b0578063095ea7b31461033a5780631249c58b14610387578063173b99041461039157806317bfdfbc146103b8575b600061027d34610ad3565b5090506102ad816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610b7b565b50005b3480156102bc57600080fd5b506102c5610d7b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ff5781810151838201526020016102e7565b50505050905090810190601f16801561032c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034657600080fd5b506103736004803603604081101561035d57600080fd5b506001600160a01b038135169060200135610e08565b604080519115158252519081900360200190f35b61038f610e75565b005b34801561039d57600080fd5b506103a6610eb3565b60408051918252519081900360200190f35b3480156103c457600080fd5b506103a6600480360360208110156103db57600080fd5b50356001600160a01b0316610eb9565b3480156103f757600080fd5b506103a6610f79565b34801561040c57600080fd5b506103a6610f7f565b34801561042157600080fd5b50610373610fe2565b34801561043657600080fd5b506103736004803603606081101561044d57600080fd5b506001600160a01b03813581169160208101359091169060400135610fe7565b34801561047957600080fd5b50610482611059565b604080516001600160a01b039092168252519081900360200190f35b3480156104aa57600080fd5b506104b3611068565b6040805160ff9092168252519081900360200190f35b3480156104d557600080fd5b506103a6600480360360208110156104ec57600080fd5b50356001600160a01b0316611071565b34801561050857600080fd5b506103a6611129565b34801561051d57600080fd5b506103a66004803603602081101561053457600080fd5b50356001600160a01b0316611138565b34801561055057600080fd5b506103a661128d565b61038f611293565b34801561056d57600080fd5b506104826112d5565b34801561058257600080fd5b506103a66004803603602081101561059957600080fd5b50356112e4565b3480156105ac57600080fd5b506103a661137f565b3480156105c157600080fd5b506103a6600480360360208110156105d857600080fd5b50356001600160a01b0316611385565b3480156105f457600080fd5b506103a66113a0565b34801561060957600080fd5b506103a66004803603602081101561062057600080fd5b5035611456565b34801561063357600080fd5b506103a6611461565b34801561064857600080fd5b506102c5611467565b34801561065d57600080fd5b506103a66004803603602081101561067457600080fd5b50356001600160a01b03166114bf565b34801561069057600080fd5b5061038f600480360360c08110156106a757600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156106e257600080fd5b8201836020820111156106f457600080fd5b8035906020019184600183028401116401000000008311171561071657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561076957600080fd5b82018360208201111561077b57600080fd5b8035906020019184600183028401116401000000008311171561079d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff16915061151c9050565b3480156107ef57600080fd5b506103a6611703565b34801561080457600080fd5b506103736004803603604081101561081b57600080fd5b506001600160a01b038135169060200135611a5b565b34801561083d57600080fd5b506103a6611acc565b61038f6004803603604081101561085c57600080fd5b506001600160a01b0381358116916020013516611ad2565b34801561088057600080fd5b506103a6611b1f565b34801561089557600080fd5b506103a6600480360360608110156108ac57600080fd5b506001600160a01b03813581169160208101359091169060400135611bbe565b3480156108d857600080fd5b506103a6600480360360208110156108ef57600080fd5b50356001600160a01b0316611c2f565b34801561090b57600080fd5b506103a6611cbb565b34801561092057600080fd5b506109476004803603602081101561093757600080fd5b50356001600160a01b0316611d77565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561097957600080fd5b506103a66004803603602081101561099057600080fd5b5035611e0c565b3480156109a357600080fd5b506103a6600480360360208110156109ba57600080fd5b5035611e17565b3480156109cd57600080fd5b506103a6600480360360408110156109e457600080fd5b506001600160a01b0381358116916020013516611e22565b61038f60048036036020811015610a1257600080fd5b50356001600160a01b0316611e4d565b348015610a2e57600080fd5b506103a6611e9b565b348015610a4357600080fd5b506103a660048036036020811015610a5a57600080fd5b50356001600160a01b0316611f9e565b348015610a7657600080fd5b50610482611fd8565b348015610a8b57600080fd5b50610482611fe7565b348015610aa057600080fd5b506103a6611ffb565b348015610ab557600080fd5b506103a660048036036020811015610acc57600080fd5b503561205f565b60008054819060ff16610b1a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610b2c611703565b90508015610b5757610b4a816010811115610b4357fe5b601e6120dd565b925060009150610b679050565b610b613385612143565b92509250505b6000805460ff191660011790559092909150565b81610b8557610d77565b606081516005016040519080825280601f01601f191660200182016040528015610bb6576020820181803883390190505b50905060005b8251811015610c0757828181518110610bd157fe5b602001015160f81c60f81b828281518110610be857fe5b60200101906001600160f81b031916908160001a905350600101610bbc565b8151600160fd1b90839083908110610c1b57fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610c4657fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610c7657fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610ca657fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610cd157fe5b60200101906001600160f81b031916908160001a905350818415610d735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d38578181015183820152602001610d20565b50505050905090810190601f168015610d655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b820191906000526020600020905b815481529060010190602001808311610de357829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b6000610e8034610ad3565b509050610eb0816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610b7b565b50565b60085481565b6000805460ff16610efe576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610f10611703565b14610f5b576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610f64826114bf565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610f8c6125a3565b90925090506000826003811115610f9f57fe5b14610fdb5760405162461bcd60e51b8152600401808060200182810382526035815260200180614df76035913960400191505060405180910390fd5b9150505b90565b600181565b6000805460ff1661102c576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561104233868686612652565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b600061107b614ae5565b604051806020016040528061108e611cbb565b90526001600160a01b0384166000908152600e60205260408120549192509081906110ba908490612ab8565b909250905060008260038111156110cd57fe5b1461111f576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b925050505b919050565b6000611133612b0b565b905090565b60035460009061010090046001600160a01b031633146111655761115e6001603f6120dd565b9050611124565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b1580156111aa57600080fd5b505afa1580156111be573d6000803e3d6000fd5b505050506040513d60208110156111d457600080fd5b5051611227576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b600061129e34612b37565b509050610eb081604051806040016040528060128152602001711c995c185e509bdc9c9bddc819985a5b195960721b815250610b7b565b6005546001600160a01b031681565b6000805460ff16611329576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561133b611703565b905080156113615761135981601081111561135257fe5b60306120dd565b915050610f67565b61136a83612bb9565b9150506000805460ff19166001179055919050565b60095481565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166113e5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556113f7611703565b14611442576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610e6f82612cec565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b60008060006114cd84612d6d565b909250905060008260038111156114e057fe5b146112865760405162461bcd60e51b8152600401808060200182810382526037815260200180614d026037913960400191505060405180910390fd5b60035461010090046001600160a01b0316331461156a5760405162461bcd60e51b8152600401808060200182810382526024815260200180614c3e6024913960400191505060405180910390fd5b60095415801561157a5750600a54155b6115b55760405162461bcd60e51b8152600401808060200182810382526023815260200180614c626023913960400191505060405180910390fd5b6007849055836115f65760405162461bcd60e51b8152600401808060200182810382526030815260200180614c856030913960400191505060405180910390fd5b600061160187611138565b90508015611656576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b61165e612e21565b600955670de0b6b3a7640000600a5561167686612e25565b905080156116b55760405162461bcd60e51b8152600401808060200182810382526022815260200180614cb56022913960400191505060405180910390fd5b83516116c8906001906020870190614af8565b5082516116dc906002906020860190614af8565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b60008061170e612e21565b6009549091508082141561172757600092505050610fdf565b6000611731612b0b565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561179f57600080fd5b505afa1580156117b3573d6000803e3d6000fd5b505050506040513d60208110156117c957600080fd5b5051905065048c27395000811115611828576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6000806118358989612f9a565b9092509050600082600381111561184857fe5b1461189a576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b6118a2614ae5565b6000806000806118c060405180602001604052808a81525087612fbd565b909750945060008760038111156118d357fe5b14611905576118f0600960068960038111156118eb57fe5b613025565b9e505050505050505050505050505050610fdf565b61190f858c612ab8565b9097509350600087600381111561192257fe5b1461193a576118f0600960018960038111156118eb57fe5b611944848c61308b565b9097509250600087600381111561195757fe5b1461196f576118f0600960048960038111156118eb57fe5b61198a6040518060200160405280600854815250858c6130b1565b9097509150600087600381111561199d57fe5b146119b5576118f0600960058960038111156118eb57fe5b6119c0858a8b6130b1565b909750905060008760038111156119d357fe5b146119eb576118f0600960038960038111156118eb57fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611aa0576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611ab633338686612652565b1490506000805460ff1916600117905592915050565b600a5481565b6000611adf83348461310d565b509050611b1a81604051806040016040528060168152602001751b1a5c5d5a59185d19509bdc9c9bddc819985a5b195960521b815250610b7b565b505050565b6006546000906001600160a01b031663b8168816611b3b612b0b565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611b8d57600080fd5b505afa158015611ba1573d6000803e3d6000fd5b505050506040513d6020811015611bb757600080fd5b5051905090565b6000805460ff16611c03576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611c193385858561323f565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611c555761115e600160456120dd565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611286565b6000805460ff16611d00576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611d12611703565b14611d5d576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611d65610f7f565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611da289612d6d565b935090506000816003811115611db457fe5b14611dd25760095b975060009650869550859450611e059350505050565b611dda6125a3565b925090506000816003811115611dec57fe5b14611df8576009611dbc565b5060009650919450925090505b9193509193565b6000610e6f826134ad565b6000610e6f8261352c565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6000611e5982346135a6565b509050610d77816040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610b7b565b6004546000906001600160a01b031633141580611eb6575033155b15611ece57611ec7600160006120dd565b9050610fdf565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b600080611fa9611703565b90508015611fcf57611fc7816010811115611fc057fe5b60406120dd565b915050611124565b61128683612e25565b6006546001600160a01b031681565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f24053612017612b0b565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611b8d57600080fd5b6000805460ff166120a4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556120b6611703565b905080156120d4576113598160108111156120cd57fe5b60466120dd565b61136a83613651565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561210c57fe5b83605081111561211857fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561128657fe5b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b1580156121a457600080fd5b505af11580156121b8573d6000803e3d6000fd5b505050506040513d60208110156121ce57600080fd5b5051905080156121f2576121e56003601f83613025565b92506000915061259c9050565b6121fa612e21565b6009541461220e576121e5600a60226120dd565b612216614b76565b61221e6125a3565b604083018190526020830182600381111561223557fe5b600381111561224057fe5b905250600090508160200151600381111561225757fe5b146122815761227360096021836020015160038111156118eb57fe5b93506000925061259c915050565b61228b86866136f9565b60c08201819052604080516020810182529083015181526122ac9190613795565b60608301819052602083018260038111156122c357fe5b60038111156122ce57fe5b90525060009050816020015160038111156122e557fe5b14612337576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b612347600d54826060015161308b565b608083018190526020830182600381111561235e57fe5b600381111561236957fe5b905250600090508160200151600381111561238057fe5b146123bc5760405162461bcd60e51b8152600401808060200182810382526028815260200180614e2c6028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516123e4919061308b565b60a08301819052602083018260038111156123fb57fe5b600381111561240657fe5b905250600090508160200151600381111561241d57fe5b146124595760405162461bcd60e51b815260040180806020018281038252602b815260200180614cd7602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b038816913091600080516020614d738339815191529181900360200190a360055460c08201516060830151604080516341c728b960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916341c728b991608480830192600092919082900301818387803b15801561256f57600080fd5b505af1158015612583573d6000803e3d6000fd5b5060009250612590915050565b8160c001519350935050505b9250929050565b600d546000908190806125be5750506007546000915061264e565b60006125c8612b0b565b905060006125d4614ae5565b60006125e584600b54600c546137ac565b9350905060008160038111156125f757fe5b1461260c5795506000945061264e9350505050565b61261683866137ea565b92509050600081600381111561262857fe5b1461263d5795506000945061264e9350505050565b505160009550935061264e92505050565b9091565b60006001600160a01b03831661269e576040805162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015290519081900360640190fd5b826001600160a01b0316846001600160a01b03161415612705576040805162461bcd60e51b815260206004820152601960248201527f53656c66207472616e73666572206e6f7420616c6c6f77656400000000000000604482015290519081900360640190fd5b600554604080516317b9b84b60e31b81523060048201526001600160a01b0387811660248301528681166044830152606482018690529151600093929092169163bdcdc2589160848082019260209290919082900301818787803b15801561276c57600080fd5b505af1158015612780573d6000803e3d6000fd5b505050506040513d602081101561279657600080fd5b5051905080156127e5576040805162461bcd60e51b815260206004820152601560248201527421a7a6a82a2927a62622a92fa922a522a1aa24a7a760591b604482015290519081900360640190fd5b60006001600160a01b038781169087161415612804575060001961282c565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061283c8589612f9a565b9094509250600084600381111561284f57fe5b14612898576040805162461bcd60e51b81526020600482015260146024820152731514905394d1915497d393d517d0531313d5d15160621b604482015290519081900360640190fd5b6001600160a01b038a166000908152600e60205260409020546128bb9089612f9a565b909450915060008460038111156128ce57fe5b14612916576040805162461bcd60e51b81526020600482015260136024820152720a8a4829ca68c8aa4be9c9ea8be8a9c9eaa8e9606b1b604482015290519081900360640190fd5b6001600160a01b0389166000908152600e6020526040902054612939908961308b565b9094509050600084600381111561294c57fe5b14612992576040805162461bcd60e51b81526020600482015260116024820152700a8a4829ca68c8aa4bea89e9ebe9aaa869607b1b604482015290519081900360640190fd5b6001600160a01b03808b166000908152600e6020526040808220859055918b1681522081905560001985146129ea576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b0316600080516020614d738339815191528a6040518082815260200191505060405180910390a36005546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b158015612a8657600080fd5b505af1158015612a9a573d6000803e3d6000fd5b5060009250612aa7915050565b96505050505050505b949350505050565b6000806000612ac5614ae5565b612acf8686612fbd565b90925090506000826003811115612ae257fe5b14612af3575091506000905061259c565b6000612afe8261389a565b9350935050509250929050565b6000806000612b1a4734612f9a565b90925090506000826003811115612b2d57fe5b14610fdb57600080fd5b60008054819060ff16612b7e576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612b90611703565b90508015612bae57610b4a816010811115612ba757fe5b60366120dd565b610b613333866138a9565b600354600090819061010090046001600160a01b03163314612be157611fc7600160316120dd565b612be9612e21565b60095414612bfd57611fc7600a60336120dd565b82612c06612b0b565b1015612c1857611fc7600e60326120dd565b600c54831115612c2e57611fc7600260346120dd565b50600c5482810390811115612c745760405162461bcd60e51b8152600401808060200182810382526024815260200180614e886024913960400191505060405180910390fd5b600c819055600354612c949061010090046001600160a01b031684613c8e565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611286565b6000805460ff16612d31576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612d43611703565b90508015612d6157611359816010811115612d5a57fe5b60276120dd565b61136a33600085613cc4565b6001600160a01b038116600090815260106020526040812080548291829182918291612da4575060009450849350612e1c92505050565b612db48160000154600a5461418b565b90945092506000846003811115612dc757fe5b14612ddc575091935060009250612e1c915050565b612dea8382600101546141ca565b90945091506000846003811115612dfd57fe5b14612e12575091935060009250612e1c915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b03163314612e4d57611fc7600160426120dd565b612e55612e21565b60095414612e6957611fc7600a60416120dd565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612eba57600080fd5b505afa158015612ece573d6000803e3d6000fd5b505050506040513d6020811015612ee457600080fd5b5051612f37576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611286565b600080838311612fb157506000905081830361259c565b5060039050600061259c565b6000612fc7614ae5565b600080612fd886600001518661418b565b90925090506000826003811115612feb57fe5b1461300a5750604080516020810190915260008152909250905061259c565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa084601081111561305457fe5b84605081111561306057fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115612ab057fe5b6000808383018481106130a35760009250905061259c565b50600291506000905061259c565b60008060006130be614ae5565b6130c88787612fbd565b909250905060008260038111156130db57fe5b146130ec5750915060009050613105565b6130fe6130f88261389a565b8661308b565b9350935050505b935093915050565b60008054819060ff16613154576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613166611703565b905080156131915761318481601081111561317d57fe5b600f6120dd565b9250600091506132289050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156131cc57600080fd5b505af11580156131e0573d6000803e3d6000fd5b505050506040513d60208110156131f657600080fd5b5051905080156132165761318481601081111561320f57fe5b60106120dd565b613222338787876141f5565b92509250505b6000805460ff191660011790559094909350915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b1580156132ac57600080fd5b505af11580156132c0573d6000803e3d6000fd5b505050506040513d60208110156132d657600080fd5b5051905080156132f5576132ed6003601b83613025565b915050612ab0565b846001600160a01b0316846001600160a01b0316141561331b576132ed6006601c6120dd565b6001600160a01b0384166000908152600e6020526040812054819081906133429087612f9a565b9093509150600083600381111561335557fe5b146133785761336d6009601a8560038111156118eb57fe5b945050505050612ab0565b6001600160a01b0388166000908152600e602052604090205461339b908761308b565b909350905060008360038111156133ae57fe5b146133c65761336d600960198560038111156118eb57fe5b6001600160a01b038088166000818152600e60209081526040808320879055938c168083529184902085905583518a815293519193600080516020614d73833981519152929081900390910190a360055460408051636d35bf9160e01b81523060048201526001600160a01b038c811660248301528b811660448301528a81166064830152608482018a905291519190921691636d35bf919160a480830192600092919082900301818387803b15801561347f57600080fd5b505af1158015613493573d6000803e3d6000fd5b50600092506134a0915050565b9998505050505050505050565b6000805460ff166134f2576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613504611703565b905080156135225761135981601081111561351b57fe5b60086120dd565b61136a3384614778565b6000805460ff16613571576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613583611703565b9050801561359a57611359816010811115612d5a57fe5b61136a33846000613cc4565b60008054819060ff166135ed576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556135ff611703565b9050801561362a5761361d81601081111561361657fe5b60356120dd565b92506000915061363b9050565b6136353386866138a9565b92509250505b6000805460ff1916600117905590939092509050565b60035460009061010090046001600160a01b031633146136775761115e600160476120dd565b61367f612e21565b600954146136935761115e600a60486120dd565b670de0b6b3a76400008211156136af5761115e600260496120dd565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611286565b6000336001600160a01b0384161461374a576040805162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b604482015290519081900360640190fd5b81341461378f576040805162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b50919050565b60008060006137a2614ae5565b612acf8686614a86565b6000806000806137bc878761308b565b909250905060008260038111156137cf57fe5b146137e05750915060009050613105565b6130fe8186612f9a565b60006137f4614ae5565b60008061380986670de0b6b3a764000061418b565b9092509050600082600381111561381c57fe5b1461383b5750604080516020810190915260008152909250905061259c565b60008061384883886141ca565b9092509050600082600381111561385b57fe5b1461387d5750604080516020810190915260008152909450925061259c915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561391257600080fd5b505af1158015613926573d6000803e3d6000fd5b505050506040513d602081101561393c57600080fd5b505190508015613960576139536003603883613025565b9250600091506131059050565b613968612e21565b6009541461397c57613953600a60396120dd565b613984614bb4565b6001600160a01b03861660009081526010602052604090206001015460608201526139ae86612d6d565b60808301819052602083018260038111156139c557fe5b60038111156139d057fe5b90525060009050816020015160038111156139e757fe5b14613a1157613a0360096037836020015160038111156118eb57fe5b935060009250613105915050565b600019851415613a2a5760808101516040820152613a32565b604081018590525b613a408782604001516136f9565b60e082018190526080820151613a5591612f9a565b60a0830181905260208301826003811115613a6c57fe5b6003811115613a7757fe5b9052506000905081602001516003811115613a8e57fe5b14613aca5760405162461bcd60e51b815260040180806020018281038252603a815260200180614d39603a913960400191505060405180910390fd5b613ada600b548260e00151612f9a565b60c0830181905260208301826003811115613af157fe5b6003811115613afc57fe5b9052506000905081602001516003811115613b1357fe5b14613b4f5760405162461bcd60e51b8152600401808060200182810382526031815260200180614d936031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160055460e0820151606083015160408051631ededc9160e01b81523060048201526001600160a01b038c811660248301528b8116604483015260648201949094526084810192909252519190921691631ededc919160a480830192600092919082900301818387803b158015613c5a57600080fd5b505af1158015613c6e573d6000803e3d6000fd5b5060009250613c7b915050565b8160e00151935093505050935093915050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611b1a573d6000803e3d6000fd5b6000821580613cd1575081155b613d0c5760405162461bcd60e51b8152600401808060200182810382526034815260200180614e546034913960400191505060405180910390fd5b613d14614b76565b613d1c6125a3565b6040830181905260208301826003811115613d3357fe5b6003811115613d3e57fe5b9052506000905081602001516003811115613d5557fe5b14613d7957613d716009602b836020015160038111156118eb57fe5b915050611286565b8315613dfa576060810184905260408051602081018252908201518152613da09085612ab8565b6080830181905260208301826003811115613db757fe5b6003811115613dc257fe5b9052506000905081602001516003811115613dd957fe5b14613df557613d7160096029836020015160038111156118eb57fe5b613e73565b613e168360405180602001604052808460400151815250613795565b6060830181905260208301826003811115613e2d57fe5b6003811115613e3857fe5b9052506000905081602001516003811115613e4f57fe5b14613e6b57613d716009602a836020015160038111156118eb57fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613ed857600080fd5b505af1158015613eec573d6000803e3d6000fd5b505050506040513d6020811015613f0257600080fd5b505190508015613f2257613f196003602883613025565b92505050611286565b613f2a612e21565b60095414613f3e57613f19600a602c6120dd565b613f4e600d548360600151612f9a565b60a0840181905260208401826003811115613f6557fe5b6003811115613f7057fe5b9052506000905082602001516003811115613f8757fe5b14613fa357613f196009602e846020015160038111156118eb57fe5b6001600160a01b0386166000908152600e60205260409020546060830151613fcb9190612f9a565b60c0840181905260208401826003811115613fe257fe5b6003811115613fed57fe5b905250600090508260200151600381111561400457fe5b1461402057613f196009602d846020015160038111156118eb57fe5b816080015161402d612b0b565b101561403f57613f19600e602f6120dd565b61404d868360800151613c8e565b60a0820151600d5560c08201516001600160a01b0387166000818152600e6020908152604091829020939093556060850151815190815290513093600080516020614d73833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b15801561416057600080fd5b505af1158015614174573d6000803e3d6000fd5b5060009250614181915050565b9695505050505050565b6000808361419e5750600090508061259c565b838302838582816141ab57fe5b04146141bf5750600291506000905061259c565b60009250905061259c565b600080826141de575060019050600061259c565b60008385816141e957fe5b04915091509250929050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b15801561426657600080fd5b505af115801561427a573d6000803e3d6000fd5b505050506040513d602081101561429057600080fd5b5051905080156142b4576142a76003601283613025565b92506000915061476f9050565b6142bc612e21565b600954146142d0576142a7600a60166120dd565b6142d8612e21565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561431157600080fd5b505afa158015614325573d6000803e3d6000fd5b505050506040513d602081101561433b57600080fd5b50511461434e576142a7600a60116120dd565b866001600160a01b0316866001600160a01b03161415614374576142a7600660176120dd565b84614385576142a7600760156120dd565b60001985141561439b576142a7600760146120dd565b6000806143a98989896138a9565b909250905081156143d9576143ca8260108111156143c357fe5b60186120dd565b94506000935061476f92505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b15801561443357600080fd5b505afa158015614447573d6000803e3d6000fd5b505050506040513d604081101561445d57600080fd5b508051602090910151909250905081156144a85760405162461bcd60e51b8152600401808060200182810382526033815260200180614dc46033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156144ff57600080fd5b505afa158015614513573d6000803e3d6000fd5b505050506040513d602081101561452957600080fd5b5051101561457e576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b0389163014156145a45761459d308d8d8561323f565b905061462e565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b1580156145ff57600080fd5b505af1158015614613573d6000803e3d6000fd5b505050506040513d602081101561462957600080fd5b505190505b8015614678576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600554604080516347ef3b3b60e01b81523060048201526001600160a01b038c811660248301528f811660448301528e811660648301526084820188905260a48201869052915191909216916347ef3b3b9160c480830192600092919082900301818387803b15801561474357600080fd5b505af1158015614757573d6000803e3d6000fd5b5060009250614764915050565b975092955050505050505b94509492505050565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156147d557600080fd5b505af11580156147e9573d6000803e3d6000fd5b505050506040513d60208110156147ff57600080fd5b50519050801561481e576148166003600e83613025565b915050610e6f565b614826612e21565b6009541461483957614816600a806120dd565b82614842612b0b565b101561485457614816600e60096120dd565b61485c614bfa565b61486585612d6d565b602083018190528282600381111561487957fe5b600381111561488457fe5b905250600090508151600381111561489857fe5b146148bd576148b460096007836000015160038111156118eb57fe5b92505050610e6f565b6148cb81602001518561308b565b60408301819052828260038111156148df57fe5b60038111156148ea57fe5b90525060009050815160038111156148fe57fe5b1461491a576148b46009600c836000015160038111156118eb57fe5b614926600b548561308b565b606083018190528282600381111561493a57fe5b600381111561494557fe5b905250600090508151600381111561495957fe5b14614975576148b46009600b836000015160038111156118eb57fe5b61497f8585613c8e565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a160055460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b158015614a5c57600080fd5b505af1158015614a70573d6000803e3d6000fd5b5060009250614a7d915050565b95945050505050565b6000614a90614ae5565b600080614aa5670de0b6b3a76400008761418b565b90925090506000826003811115614ab857fe5b14614ad75750604080516020810190915260008152909250905061259c565b612afe8186600001516137ea565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614b3957805160ff1916838001178555614b66565b82800160010185558215614b66579182015b82811115614b66578251825591602001919060010190614b4b565b50614b72929150614c23565b5090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610fdf91905b80821115614b725760008155600101614c2956fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a72315820ee54102f003875fd731deee21070c30923d08a3ff2e9fe60b1f0961fc27340b164736f6c634300051000326f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c6564000000000000000000000000f22874f4ac836f23379f5dbd08dca79afc523396000000000000000000000000c347d03c18eef2bdc6eaf948df4f1cc516266c98000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000008000000000000000000000000fdefab1926f04bf988e3ffe2a325c657bea39dfb000000000000000000000000000000000000000000000000000000000000000c472d4c656e6420457468657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009472d4c656e644554480000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80638f840ddd1161014f578063bd6d894d116100c1578063e9c714f21161007a578063e9c714f214610a22578063f2b3abbd14610a37578063f3fdb15a14610a6a578063f851a44014610a7f578063f8f9da2814610a94578063fca7820b14610aa957610272565b8063bd6d894d146108ff578063c37f68e214610914578063c5ebeaec1461096d578063db006a7514610997578063dd62ed3e146109c1578063e5974619146109fc57610272565b8063a9059cbb11610113578063a9059cbb146107f8578063aa5af0fd14610831578063aae40a2a14610846578063ae9d70b014610874578063b2a02ff114610889578063b71d1a0c146108cc57610272565b80638f840ddd1461062757806395d89b411461063c57806395dd91931461065157806399d8c1b414610684578063a6afed95146107e357610272565b80633af9e669116101e85780635fe3b567116101ac5780635fe3b56714610561578063601a0bf1146105765780636c540baf146105a057806370a08231146105b557806373acee98146105e8578063852a12e3146105fd57610272565b80633af9e669146104c95780633b1d21a2146104fc5780634576b5db1461051157806347bd3718146105445780634e4d9fea1461055957610272565b806318160ddd1161023a57806318160ddd146103eb578063182df0f514610400578063238d93111461041557806323b872dd1461042a578063267822471461046d578063313ce5671461049e57610272565b806306fdde03146102b0578063095ea7b31461033a5780631249c58b14610387578063173b99041461039157806317bfdfbc146103b8575b600061027d34610ad3565b5090506102ad816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610b7b565b50005b3480156102bc57600080fd5b506102c5610d7b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ff5781810151838201526020016102e7565b50505050905090810190601f16801561032c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034657600080fd5b506103736004803603604081101561035d57600080fd5b506001600160a01b038135169060200135610e08565b604080519115158252519081900360200190f35b61038f610e75565b005b34801561039d57600080fd5b506103a6610eb3565b60408051918252519081900360200190f35b3480156103c457600080fd5b506103a6600480360360208110156103db57600080fd5b50356001600160a01b0316610eb9565b3480156103f757600080fd5b506103a6610f79565b34801561040c57600080fd5b506103a6610f7f565b34801561042157600080fd5b50610373610fe2565b34801561043657600080fd5b506103736004803603606081101561044d57600080fd5b506001600160a01b03813581169160208101359091169060400135610fe7565b34801561047957600080fd5b50610482611059565b604080516001600160a01b039092168252519081900360200190f35b3480156104aa57600080fd5b506104b3611068565b6040805160ff9092168252519081900360200190f35b3480156104d557600080fd5b506103a6600480360360208110156104ec57600080fd5b50356001600160a01b0316611071565b34801561050857600080fd5b506103a6611129565b34801561051d57600080fd5b506103a66004803603602081101561053457600080fd5b50356001600160a01b0316611138565b34801561055057600080fd5b506103a661128d565b61038f611293565b34801561056d57600080fd5b506104826112d5565b34801561058257600080fd5b506103a66004803603602081101561059957600080fd5b50356112e4565b3480156105ac57600080fd5b506103a661137f565b3480156105c157600080fd5b506103a6600480360360208110156105d857600080fd5b50356001600160a01b0316611385565b3480156105f457600080fd5b506103a66113a0565b34801561060957600080fd5b506103a66004803603602081101561062057600080fd5b5035611456565b34801561063357600080fd5b506103a6611461565b34801561064857600080fd5b506102c5611467565b34801561065d57600080fd5b506103a66004803603602081101561067457600080fd5b50356001600160a01b03166114bf565b34801561069057600080fd5b5061038f600480360360c08110156106a757600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156106e257600080fd5b8201836020820111156106f457600080fd5b8035906020019184600183028401116401000000008311171561071657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561076957600080fd5b82018360208201111561077b57600080fd5b8035906020019184600183028401116401000000008311171561079d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff16915061151c9050565b3480156107ef57600080fd5b506103a6611703565b34801561080457600080fd5b506103736004803603604081101561081b57600080fd5b506001600160a01b038135169060200135611a5b565b34801561083d57600080fd5b506103a6611acc565b61038f6004803603604081101561085c57600080fd5b506001600160a01b0381358116916020013516611ad2565b34801561088057600080fd5b506103a6611b1f565b34801561089557600080fd5b506103a6600480360360608110156108ac57600080fd5b506001600160a01b03813581169160208101359091169060400135611bbe565b3480156108d857600080fd5b506103a6600480360360208110156108ef57600080fd5b50356001600160a01b0316611c2f565b34801561090b57600080fd5b506103a6611cbb565b34801561092057600080fd5b506109476004803603602081101561093757600080fd5b50356001600160a01b0316611d77565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561097957600080fd5b506103a66004803603602081101561099057600080fd5b5035611e0c565b3480156109a357600080fd5b506103a6600480360360208110156109ba57600080fd5b5035611e17565b3480156109cd57600080fd5b506103a6600480360360408110156109e457600080fd5b506001600160a01b0381358116916020013516611e22565b61038f60048036036020811015610a1257600080fd5b50356001600160a01b0316611e4d565b348015610a2e57600080fd5b506103a6611e9b565b348015610a4357600080fd5b506103a660048036036020811015610a5a57600080fd5b50356001600160a01b0316611f9e565b348015610a7657600080fd5b50610482611fd8565b348015610a8b57600080fd5b50610482611fe7565b348015610aa057600080fd5b506103a6611ffb565b348015610ab557600080fd5b506103a660048036036020811015610acc57600080fd5b503561205f565b60008054819060ff16610b1a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610b2c611703565b90508015610b5757610b4a816010811115610b4357fe5b601e6120dd565b925060009150610b679050565b610b613385612143565b92509250505b6000805460ff191660011790559092909150565b81610b8557610d77565b606081516005016040519080825280601f01601f191660200182016040528015610bb6576020820181803883390190505b50905060005b8251811015610c0757828181518110610bd157fe5b602001015160f81c60f81b828281518110610be857fe5b60200101906001600160f81b031916908160001a905350600101610bbc565b8151600160fd1b90839083908110610c1b57fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610c4657fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610c7657fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610ca657fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610cd157fe5b60200101906001600160f81b031916908160001a905350818415610d735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d38578181015183820152602001610d20565b50505050905090810190601f168015610d655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b820191906000526020600020905b815481529060010190602001808311610de357829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b6000610e8034610ad3565b509050610eb0816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610b7b565b50565b60085481565b6000805460ff16610efe576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610f10611703565b14610f5b576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610f64826114bf565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610f8c6125a3565b90925090506000826003811115610f9f57fe5b14610fdb5760405162461bcd60e51b8152600401808060200182810382526035815260200180614df76035913960400191505060405180910390fd5b9150505b90565b600181565b6000805460ff1661102c576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561104233868686612652565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b600061107b614ae5565b604051806020016040528061108e611cbb565b90526001600160a01b0384166000908152600e60205260408120549192509081906110ba908490612ab8565b909250905060008260038111156110cd57fe5b1461111f576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b925050505b919050565b6000611133612b0b565b905090565b60035460009061010090046001600160a01b031633146111655761115e6001603f6120dd565b9050611124565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b1580156111aa57600080fd5b505afa1580156111be573d6000803e3d6000fd5b505050506040513d60208110156111d457600080fd5b5051611227576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b600061129e34612b37565b509050610eb081604051806040016040528060128152602001711c995c185e509bdc9c9bddc819985a5b195960721b815250610b7b565b6005546001600160a01b031681565b6000805460ff16611329576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561133b611703565b905080156113615761135981601081111561135257fe5b60306120dd565b915050610f67565b61136a83612bb9565b9150506000805460ff19166001179055919050565b60095481565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166113e5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556113f7611703565b14611442576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610e6f82612cec565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b60008060006114cd84612d6d565b909250905060008260038111156114e057fe5b146112865760405162461bcd60e51b8152600401808060200182810382526037815260200180614d026037913960400191505060405180910390fd5b60035461010090046001600160a01b0316331461156a5760405162461bcd60e51b8152600401808060200182810382526024815260200180614c3e6024913960400191505060405180910390fd5b60095415801561157a5750600a54155b6115b55760405162461bcd60e51b8152600401808060200182810382526023815260200180614c626023913960400191505060405180910390fd5b6007849055836115f65760405162461bcd60e51b8152600401808060200182810382526030815260200180614c856030913960400191505060405180910390fd5b600061160187611138565b90508015611656576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b61165e612e21565b600955670de0b6b3a7640000600a5561167686612e25565b905080156116b55760405162461bcd60e51b8152600401808060200182810382526022815260200180614cb56022913960400191505060405180910390fd5b83516116c8906001906020870190614af8565b5082516116dc906002906020860190614af8565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b60008061170e612e21565b6009549091508082141561172757600092505050610fdf565b6000611731612b0b565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561179f57600080fd5b505afa1580156117b3573d6000803e3d6000fd5b505050506040513d60208110156117c957600080fd5b5051905065048c27395000811115611828576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6000806118358989612f9a565b9092509050600082600381111561184857fe5b1461189a576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b6118a2614ae5565b6000806000806118c060405180602001604052808a81525087612fbd565b909750945060008760038111156118d357fe5b14611905576118f0600960068960038111156118eb57fe5b613025565b9e505050505050505050505050505050610fdf565b61190f858c612ab8565b9097509350600087600381111561192257fe5b1461193a576118f0600960018960038111156118eb57fe5b611944848c61308b565b9097509250600087600381111561195757fe5b1461196f576118f0600960048960038111156118eb57fe5b61198a6040518060200160405280600854815250858c6130b1565b9097509150600087600381111561199d57fe5b146119b5576118f0600960058960038111156118eb57fe5b6119c0858a8b6130b1565b909750905060008760038111156119d357fe5b146119eb576118f0600960038960038111156118eb57fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611aa0576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611ab633338686612652565b1490506000805460ff1916600117905592915050565b600a5481565b6000611adf83348461310d565b509050611b1a81604051806040016040528060168152602001751b1a5c5d5a59185d19509bdc9c9bddc819985a5b195960521b815250610b7b565b505050565b6006546000906001600160a01b031663b8168816611b3b612b0b565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611b8d57600080fd5b505afa158015611ba1573d6000803e3d6000fd5b505050506040513d6020811015611bb757600080fd5b5051905090565b6000805460ff16611c03576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611c193385858561323f565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611c555761115e600160456120dd565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611286565b6000805460ff16611d00576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611d12611703565b14611d5d576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611d65610f7f565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611da289612d6d565b935090506000816003811115611db457fe5b14611dd25760095b975060009650869550859450611e059350505050565b611dda6125a3565b925090506000816003811115611dec57fe5b14611df8576009611dbc565b5060009650919450925090505b9193509193565b6000610e6f826134ad565b6000610e6f8261352c565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6000611e5982346135a6565b509050610d77816040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610b7b565b6004546000906001600160a01b031633141580611eb6575033155b15611ece57611ec7600160006120dd565b9050610fdf565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b600080611fa9611703565b90508015611fcf57611fc7816010811115611fc057fe5b60406120dd565b915050611124565b61128683612e25565b6006546001600160a01b031681565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f24053612017612b0b565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611b8d57600080fd5b6000805460ff166120a4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556120b6611703565b905080156120d4576113598160108111156120cd57fe5b60466120dd565b61136a83613651565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561210c57fe5b83605081111561211857fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561128657fe5b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b1580156121a457600080fd5b505af11580156121b8573d6000803e3d6000fd5b505050506040513d60208110156121ce57600080fd5b5051905080156121f2576121e56003601f83613025565b92506000915061259c9050565b6121fa612e21565b6009541461220e576121e5600a60226120dd565b612216614b76565b61221e6125a3565b604083018190526020830182600381111561223557fe5b600381111561224057fe5b905250600090508160200151600381111561225757fe5b146122815761227360096021836020015160038111156118eb57fe5b93506000925061259c915050565b61228b86866136f9565b60c08201819052604080516020810182529083015181526122ac9190613795565b60608301819052602083018260038111156122c357fe5b60038111156122ce57fe5b90525060009050816020015160038111156122e557fe5b14612337576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b612347600d54826060015161308b565b608083018190526020830182600381111561235e57fe5b600381111561236957fe5b905250600090508160200151600381111561238057fe5b146123bc5760405162461bcd60e51b8152600401808060200182810382526028815260200180614e2c6028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516123e4919061308b565b60a08301819052602083018260038111156123fb57fe5b600381111561240657fe5b905250600090508160200151600381111561241d57fe5b146124595760405162461bcd60e51b815260040180806020018281038252602b815260200180614cd7602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b038816913091600080516020614d738339815191529181900360200190a360055460c08201516060830151604080516341c728b960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916341c728b991608480830192600092919082900301818387803b15801561256f57600080fd5b505af1158015612583573d6000803e3d6000fd5b5060009250612590915050565b8160c001519350935050505b9250929050565b600d546000908190806125be5750506007546000915061264e565b60006125c8612b0b565b905060006125d4614ae5565b60006125e584600b54600c546137ac565b9350905060008160038111156125f757fe5b1461260c5795506000945061264e9350505050565b61261683866137ea565b92509050600081600381111561262857fe5b1461263d5795506000945061264e9350505050565b505160009550935061264e92505050565b9091565b60006001600160a01b03831661269e576040805162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015290519081900360640190fd5b826001600160a01b0316846001600160a01b03161415612705576040805162461bcd60e51b815260206004820152601960248201527f53656c66207472616e73666572206e6f7420616c6c6f77656400000000000000604482015290519081900360640190fd5b600554604080516317b9b84b60e31b81523060048201526001600160a01b0387811660248301528681166044830152606482018690529151600093929092169163bdcdc2589160848082019260209290919082900301818787803b15801561276c57600080fd5b505af1158015612780573d6000803e3d6000fd5b505050506040513d602081101561279657600080fd5b5051905080156127e5576040805162461bcd60e51b815260206004820152601560248201527421a7a6a82a2927a62622a92fa922a522a1aa24a7a760591b604482015290519081900360640190fd5b60006001600160a01b038781169087161415612804575060001961282c565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061283c8589612f9a565b9094509250600084600381111561284f57fe5b14612898576040805162461bcd60e51b81526020600482015260146024820152731514905394d1915497d393d517d0531313d5d15160621b604482015290519081900360640190fd5b6001600160a01b038a166000908152600e60205260409020546128bb9089612f9a565b909450915060008460038111156128ce57fe5b14612916576040805162461bcd60e51b81526020600482015260136024820152720a8a4829ca68c8aa4be9c9ea8be8a9c9eaa8e9606b1b604482015290519081900360640190fd5b6001600160a01b0389166000908152600e6020526040902054612939908961308b565b9094509050600084600381111561294c57fe5b14612992576040805162461bcd60e51b81526020600482015260116024820152700a8a4829ca68c8aa4bea89e9ebe9aaa869607b1b604482015290519081900360640190fd5b6001600160a01b03808b166000908152600e6020526040808220859055918b1681522081905560001985146129ea576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b0316600080516020614d738339815191528a6040518082815260200191505060405180910390a36005546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b158015612a8657600080fd5b505af1158015612a9a573d6000803e3d6000fd5b5060009250612aa7915050565b96505050505050505b949350505050565b6000806000612ac5614ae5565b612acf8686612fbd565b90925090506000826003811115612ae257fe5b14612af3575091506000905061259c565b6000612afe8261389a565b9350935050509250929050565b6000806000612b1a4734612f9a565b90925090506000826003811115612b2d57fe5b14610fdb57600080fd5b60008054819060ff16612b7e576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612b90611703565b90508015612bae57610b4a816010811115612ba757fe5b60366120dd565b610b613333866138a9565b600354600090819061010090046001600160a01b03163314612be157611fc7600160316120dd565b612be9612e21565b60095414612bfd57611fc7600a60336120dd565b82612c06612b0b565b1015612c1857611fc7600e60326120dd565b600c54831115612c2e57611fc7600260346120dd565b50600c5482810390811115612c745760405162461bcd60e51b8152600401808060200182810382526024815260200180614e886024913960400191505060405180910390fd5b600c819055600354612c949061010090046001600160a01b031684613c8e565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611286565b6000805460ff16612d31576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612d43611703565b90508015612d6157611359816010811115612d5a57fe5b60276120dd565b61136a33600085613cc4565b6001600160a01b038116600090815260106020526040812080548291829182918291612da4575060009450849350612e1c92505050565b612db48160000154600a5461418b565b90945092506000846003811115612dc757fe5b14612ddc575091935060009250612e1c915050565b612dea8382600101546141ca565b90945091506000846003811115612dfd57fe5b14612e12575091935060009250612e1c915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b03163314612e4d57611fc7600160426120dd565b612e55612e21565b60095414612e6957611fc7600a60416120dd565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612eba57600080fd5b505afa158015612ece573d6000803e3d6000fd5b505050506040513d6020811015612ee457600080fd5b5051612f37576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611286565b600080838311612fb157506000905081830361259c565b5060039050600061259c565b6000612fc7614ae5565b600080612fd886600001518661418b565b90925090506000826003811115612feb57fe5b1461300a5750604080516020810190915260008152909250905061259c565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa084601081111561305457fe5b84605081111561306057fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115612ab057fe5b6000808383018481106130a35760009250905061259c565b50600291506000905061259c565b60008060006130be614ae5565b6130c88787612fbd565b909250905060008260038111156130db57fe5b146130ec5750915060009050613105565b6130fe6130f88261389a565b8661308b565b9350935050505b935093915050565b60008054819060ff16613154576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613166611703565b905080156131915761318481601081111561317d57fe5b600f6120dd565b9250600091506132289050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156131cc57600080fd5b505af11580156131e0573d6000803e3d6000fd5b505050506040513d60208110156131f657600080fd5b5051905080156132165761318481601081111561320f57fe5b60106120dd565b613222338787876141f5565b92509250505b6000805460ff191660011790559094909350915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b1580156132ac57600080fd5b505af11580156132c0573d6000803e3d6000fd5b505050506040513d60208110156132d657600080fd5b5051905080156132f5576132ed6003601b83613025565b915050612ab0565b846001600160a01b0316846001600160a01b0316141561331b576132ed6006601c6120dd565b6001600160a01b0384166000908152600e6020526040812054819081906133429087612f9a565b9093509150600083600381111561335557fe5b146133785761336d6009601a8560038111156118eb57fe5b945050505050612ab0565b6001600160a01b0388166000908152600e602052604090205461339b908761308b565b909350905060008360038111156133ae57fe5b146133c65761336d600960198560038111156118eb57fe5b6001600160a01b038088166000818152600e60209081526040808320879055938c168083529184902085905583518a815293519193600080516020614d73833981519152929081900390910190a360055460408051636d35bf9160e01b81523060048201526001600160a01b038c811660248301528b811660448301528a81166064830152608482018a905291519190921691636d35bf919160a480830192600092919082900301818387803b15801561347f57600080fd5b505af1158015613493573d6000803e3d6000fd5b50600092506134a0915050565b9998505050505050505050565b6000805460ff166134f2576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613504611703565b905080156135225761135981601081111561351b57fe5b60086120dd565b61136a3384614778565b6000805460ff16613571576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613583611703565b9050801561359a57611359816010811115612d5a57fe5b61136a33846000613cc4565b60008054819060ff166135ed576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556135ff611703565b9050801561362a5761361d81601081111561361657fe5b60356120dd565b92506000915061363b9050565b6136353386866138a9565b92509250505b6000805460ff1916600117905590939092509050565b60035460009061010090046001600160a01b031633146136775761115e600160476120dd565b61367f612e21565b600954146136935761115e600a60486120dd565b670de0b6b3a76400008211156136af5761115e600260496120dd565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611286565b6000336001600160a01b0384161461374a576040805162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b604482015290519081900360640190fd5b81341461378f576040805162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b50919050565b60008060006137a2614ae5565b612acf8686614a86565b6000806000806137bc878761308b565b909250905060008260038111156137cf57fe5b146137e05750915060009050613105565b6130fe8186612f9a565b60006137f4614ae5565b60008061380986670de0b6b3a764000061418b565b9092509050600082600381111561381c57fe5b1461383b5750604080516020810190915260008152909250905061259c565b60008061384883886141ca565b9092509050600082600381111561385b57fe5b1461387d5750604080516020810190915260008152909450925061259c915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561391257600080fd5b505af1158015613926573d6000803e3d6000fd5b505050506040513d602081101561393c57600080fd5b505190508015613960576139536003603883613025565b9250600091506131059050565b613968612e21565b6009541461397c57613953600a60396120dd565b613984614bb4565b6001600160a01b03861660009081526010602052604090206001015460608201526139ae86612d6d565b60808301819052602083018260038111156139c557fe5b60038111156139d057fe5b90525060009050816020015160038111156139e757fe5b14613a1157613a0360096037836020015160038111156118eb57fe5b935060009250613105915050565b600019851415613a2a5760808101516040820152613a32565b604081018590525b613a408782604001516136f9565b60e082018190526080820151613a5591612f9a565b60a0830181905260208301826003811115613a6c57fe5b6003811115613a7757fe5b9052506000905081602001516003811115613a8e57fe5b14613aca5760405162461bcd60e51b815260040180806020018281038252603a815260200180614d39603a913960400191505060405180910390fd5b613ada600b548260e00151612f9a565b60c0830181905260208301826003811115613af157fe5b6003811115613afc57fe5b9052506000905081602001516003811115613b1357fe5b14613b4f5760405162461bcd60e51b8152600401808060200182810382526031815260200180614d936031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160055460e0820151606083015160408051631ededc9160e01b81523060048201526001600160a01b038c811660248301528b8116604483015260648201949094526084810192909252519190921691631ededc919160a480830192600092919082900301818387803b158015613c5a57600080fd5b505af1158015613c6e573d6000803e3d6000fd5b5060009250613c7b915050565b8160e00151935093505050935093915050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611b1a573d6000803e3d6000fd5b6000821580613cd1575081155b613d0c5760405162461bcd60e51b8152600401808060200182810382526034815260200180614e546034913960400191505060405180910390fd5b613d14614b76565b613d1c6125a3565b6040830181905260208301826003811115613d3357fe5b6003811115613d3e57fe5b9052506000905081602001516003811115613d5557fe5b14613d7957613d716009602b836020015160038111156118eb57fe5b915050611286565b8315613dfa576060810184905260408051602081018252908201518152613da09085612ab8565b6080830181905260208301826003811115613db757fe5b6003811115613dc257fe5b9052506000905081602001516003811115613dd957fe5b14613df557613d7160096029836020015160038111156118eb57fe5b613e73565b613e168360405180602001604052808460400151815250613795565b6060830181905260208301826003811115613e2d57fe5b6003811115613e3857fe5b9052506000905081602001516003811115613e4f57fe5b14613e6b57613d716009602a836020015160038111156118eb57fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613ed857600080fd5b505af1158015613eec573d6000803e3d6000fd5b505050506040513d6020811015613f0257600080fd5b505190508015613f2257613f196003602883613025565b92505050611286565b613f2a612e21565b60095414613f3e57613f19600a602c6120dd565b613f4e600d548360600151612f9a565b60a0840181905260208401826003811115613f6557fe5b6003811115613f7057fe5b9052506000905082602001516003811115613f8757fe5b14613fa357613f196009602e846020015160038111156118eb57fe5b6001600160a01b0386166000908152600e60205260409020546060830151613fcb9190612f9a565b60c0840181905260208401826003811115613fe257fe5b6003811115613fed57fe5b905250600090508260200151600381111561400457fe5b1461402057613f196009602d846020015160038111156118eb57fe5b816080015161402d612b0b565b101561403f57613f19600e602f6120dd565b61404d868360800151613c8e565b60a0820151600d5560c08201516001600160a01b0387166000818152600e6020908152604091829020939093556060850151815190815290513093600080516020614d73833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b15801561416057600080fd5b505af1158015614174573d6000803e3d6000fd5b5060009250614181915050565b9695505050505050565b6000808361419e5750600090508061259c565b838302838582816141ab57fe5b04146141bf5750600291506000905061259c565b60009250905061259c565b600080826141de575060019050600061259c565b60008385816141e957fe5b04915091509250929050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b15801561426657600080fd5b505af115801561427a573d6000803e3d6000fd5b505050506040513d602081101561429057600080fd5b5051905080156142b4576142a76003601283613025565b92506000915061476f9050565b6142bc612e21565b600954146142d0576142a7600a60166120dd565b6142d8612e21565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561431157600080fd5b505afa158015614325573d6000803e3d6000fd5b505050506040513d602081101561433b57600080fd5b50511461434e576142a7600a60116120dd565b866001600160a01b0316866001600160a01b03161415614374576142a7600660176120dd565b84614385576142a7600760156120dd565b60001985141561439b576142a7600760146120dd565b6000806143a98989896138a9565b909250905081156143d9576143ca8260108111156143c357fe5b60186120dd565b94506000935061476f92505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b15801561443357600080fd5b505afa158015614447573d6000803e3d6000fd5b505050506040513d604081101561445d57600080fd5b508051602090910151909250905081156144a85760405162461bcd60e51b8152600401808060200182810382526033815260200180614dc46033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156144ff57600080fd5b505afa158015614513573d6000803e3d6000fd5b505050506040513d602081101561452957600080fd5b5051101561457e576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b0389163014156145a45761459d308d8d8561323f565b905061462e565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b1580156145ff57600080fd5b505af1158015614613573d6000803e3d6000fd5b505050506040513d602081101561462957600080fd5b505190505b8015614678576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600554604080516347ef3b3b60e01b81523060048201526001600160a01b038c811660248301528f811660448301528e811660648301526084820188905260a48201869052915191909216916347ef3b3b9160c480830192600092919082900301818387803b15801561474357600080fd5b505af1158015614757573d6000803e3d6000fd5b5060009250614764915050565b975092955050505050505b94509492505050565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156147d557600080fd5b505af11580156147e9573d6000803e3d6000fd5b505050506040513d60208110156147ff57600080fd5b50519050801561481e576148166003600e83613025565b915050610e6f565b614826612e21565b6009541461483957614816600a806120dd565b82614842612b0b565b101561485457614816600e60096120dd565b61485c614bfa565b61486585612d6d565b602083018190528282600381111561487957fe5b600381111561488457fe5b905250600090508151600381111561489857fe5b146148bd576148b460096007836000015160038111156118eb57fe5b92505050610e6f565b6148cb81602001518561308b565b60408301819052828260038111156148df57fe5b60038111156148ea57fe5b90525060009050815160038111156148fe57fe5b1461491a576148b46009600c836000015160038111156118eb57fe5b614926600b548561308b565b606083018190528282600381111561493a57fe5b600381111561494557fe5b905250600090508151600381111561495957fe5b14614975576148b46009600b836000015160038111156118eb57fe5b61497f8585613c8e565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a160055460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b158015614a5c57600080fd5b505af1158015614a70573d6000803e3d6000fd5b5060009250614a7d915050565b95945050505050565b6000614a90614ae5565b600080614aa5670de0b6b3a76400008761418b565b90925090506000826003811115614ab857fe5b14614ad75750604080516020810190915260008152909250905061259c565b612afe8186600001516137ea565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614b3957805160ff1916838001178555614b66565b82800160010185558215614b66579182015b82811115614b66578251825591602001919060010190614b4b565b50614b72929150614c23565b5090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610fdf91905b80821115614b725760008155600101614c2956fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a72315820ee54102f003875fd731deee21070c30923d08a3ff2e9fe60b1f0961fc27340b164736f6c63430005100032

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

000000000000000000000000f22874f4ac836f23379f5dbd08dca79afc523396000000000000000000000000c347d03c18eef2bdc6eaf948df4f1cc516266c98000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000008000000000000000000000000fdefab1926f04bf988e3ffe2a325c657bea39dfb000000000000000000000000000000000000000000000000000000000000000c472d4c656e6420457468657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009472d4c656e644554480000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : comptroller_ (address): 0xf22874F4aC836f23379f5dbd08dCA79afC523396
Arg [1] : interestRateModel_ (address): 0xC347D03c18EeF2BDC6EAf948Df4F1CC516266C98
Arg [2] : initialExchangeRateMantissa_ (uint256): 200000000000000000000000000
Arg [3] : name_ (string): G-Lend Ether
Arg [4] : symbol_ (string): G-LendETH
Arg [5] : decimals_ (uint8): 8
Arg [6] : admin_ (address): 0xFdEfAb1926f04Bf988e3FFe2A325c657beA39dFB

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000f22874f4ac836f23379f5dbd08dca79afc523396
Arg [1] : 000000000000000000000000c347d03c18eef2bdc6eaf948df4f1cc516266c98
Arg [2] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 000000000000000000000000fdefab1926f04bf988e3ffe2a325c657bea39dfb
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [8] : 472d4c656e642045746865720000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [10] : 472d4c656e644554480000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

120:6002:7:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4199:8;4212:23;4225:9;4212:12;:23::i;:::-;4198:37;;;4245:34;4260:3;4245:34;;;;;;;;;;;;;-1:-1:-1;;;4245:34:7;;;:14;:34::i;:::-;4159:127;120:6002;289:18:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;289:18:9;;;:::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;289:18:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6015:232:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6015:232:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6015:232:8;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1444:131:7;;;:::i;:::-;;1541:33:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1541:33:9;;;:::i;:::-;;;;;;;;;;;;;;;;10161:221:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10161:221:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10161:221:8;-1:-1:-1;;;;;10161:221:8;;:::i;2161:23:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2161:23:9;;;:::i;12939:257:8:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12939:257:8;;;:::i;3155:36:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3155:36:9;;;:::i;5362:193:8:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5362:193:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5362:193:8;;;;;;;;;;;;;;;;;:::i;985:35:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;985:35:9;;;:::i;:::-;;;;-1:-1:-1;;;;;985:35:9;;;;;;;;;;;;;;475:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;475:21:9;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7251:349:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7251:349:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7251:349:8;-1:-1:-1;;;;;7251:349:8;;:::i;14773:86::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14773:86:8;;;:::i;52041:718::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52041:718:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52041:718:8;-1:-1:-1;;;;;52041:718:8;;:::i;1935:24:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1935:24:9;;;:::i;2985:152:7:-;;;:::i;1106:39:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1106:39:9;;;:::i;57868:563:8:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;57868:563:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;57868:563:8;;:::i;1659:30:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1659:30:9;;;:::i;6893:110:8:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6893:110:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6893:110:8;-1:-1:-1;;;;;6893:110:8;;:::i;9688:189::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9688:189:8;;;:::i;2377:131:7:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2377:131:7;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2377:131:7;;:::i;2060:25:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2060:25:9;;;:::i;380:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;380:20:9;;;:::i;10584:283:8:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10584:283:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10584:283:8;-1:-1:-1;;;;;10584:283:8;;:::i;840:1498::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;840:1498:8;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;840:1498:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;840:1498:8;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;840:1498:8;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;840:1498:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;840:1498:8;;;;;;;;-1:-1:-1;840:1498:8;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;840:1498:8;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;840:1498:8;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;840:1498:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;840:1498:8;;-1:-1:-1;;;840:1498:8;;;;;-1:-1:-1;840:1498:8;;-1:-1:-1;840:1498:8:i;15100:3774::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15100:3774:8;;;:::i;4881:183::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4881:183:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4881:183:8;;;;;;;;:::i;1805:23:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1805:23:9;;;:::i;3860:233:7:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3860:233:7;;;;;;;;;;:::i;9366:182:8:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9366:182:8;;;:::i;46813:192::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46813:192:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;46813:192:8;;;;;;;;;;;;;;;;;:::i;50199:631::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50199:631:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50199:631:8;-1:-1:-1;;;;;50199:631:8;;:::i;12501:195::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12501:195:8;;;:::i;7938:685::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7938:685:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7938:685:8;-1:-1:-1;;;;;7938:685:8;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2769:111:7;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2769:111:7;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2769:111:7;;:::i;1918:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1918:111:7;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1918:111:7;;:::i;6569:141:8:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6569:141:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6569:141:8;;;;;;;;;;:::i;3321:196:7:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3321:196:7;-1:-1:-1;;;;;3321:196:7;;:::i;51101:722:8:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51101:722:8;;;:::i;60767:625::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60767:625:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;60767:625:8;-1:-1:-1;;;;;60767:625:8;;:::i;1242:42:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1242:42:9;;;:::i;879:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;879:28:9;;;:::i;9037:159:8:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9037:159:8;;;:::i;53055:599::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53055:599:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53055:599:8;;:::i;19264:539::-;19334:4;64221:11;;19334:4;;64221:11;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;19369:16;:14;:16::i;:::-;19356:29;-1:-1:-1;19399:29:8;;19395:249;;19570:59;19581:5;19575:12;;;;;;;;19589:39;19570:4;:59::i;:::-;19562:71;-1:-1:-1;19631:1:8;;-1:-1:-1;19562:71:8;;-1:-1:-1;19562:71:8;19395:249;19763:33;19773:10;19785;19763:9;:33::i;:::-;19756:40;;;;;64286:1;64297:11;:18;;-1:-1:-1;;64297:18:8;64311:4;64297:18;;;19264:539;;;;-1:-1:-1;19264:539:8:o;5427:693:7:-;5516:31;5512:68;;5563:7;;5512:68;5590:24;5633:7;5627:21;5651:1;5627:25;5617:36;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;5617:36:7;87:34:-1;135:17;;-1:-1;5617:36:7;-1:-1:-1;5590:63:7;-1:-1:-1;5663:6:7;5680:103;5702:7;5696:21;5692:1;:25;5680:103;;;5761:7;5770:1;5755:17;;;;;;;;;;;;;;;;5738:11;5750:1;5738:14;;;;;;;;;;;:34;-1:-1:-1;;;;;5738:34:7;;;;;;;;-1:-1:-1;5719:3:7;;5680:103;;;5793:16;;-1:-1:-1;;;5812:15:7;5793:11;;5805:1;;5793:16;;;;;;;;;:34;-1:-1:-1;;;;;5793:34:7;;;;;;;;;5867:2;5856:15;;5837:11;5849:1;5851;5849:3;5837:16;;;;;;;;;;;:34;-1:-1:-1;;;;;5837:34:7;;;;;;;;-1:-1:-1;5928:2:7;5918:7;:12;5911:2;:21;5900:34;;5881:11;5893:1;5895;5893:3;5881:16;;;;;;;;;;;:53;-1:-1:-1;;;;;5881:53:7;;;;;;;;-1:-1:-1;5991:2:7;5981:7;:12;5974:2;:21;5963:34;;5944:11;5956:1;5958;5956:3;5944:16;;;;;;;;;;;:53;-1:-1:-1;;;;;5944:53:7;;;;;;;;;6037:2;6026:15;;6007:11;6019:1;6021;6019:3;6007:16;;;;;;;;;;;:34;-1:-1:-1;;;;;6007:34:7;;;;;;;;-1:-1:-1;6100:11:7;6060:31;;6052:61;;;;-1:-1:-1;;;6052:61:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6052:61:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5427:693;;;;;:::o;289:18:9:-;;;;;;;;;;;;;;;-1:-1:-1;;289:18:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6015:232:8:-;6113:10;6083:4;6133:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;6133:32:8;;;;;;;;;;;:41;;;6189:30;;;;;;;6083:4;;6113:10;6133:32;;6113:10;;6189:30;;;;;;;;;;;6236:4;6229:11;;;6015:232;;;;;:::o;1444:131:7:-;1488:8;1501:23;1514:9;1501:12;:23::i;:::-;1487:37;;;1534:34;1549:3;1534:34;;;;;;;;;;;;;-1:-1:-1;;;1534:34:7;;;:14;:34::i;:::-;1444:131;:::o;1541:33:9:-;;;;:::o;10161:221:8:-;10239:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;10263:16;:14;:16::i;:::-;:40;10255:75;;;;;-1:-1:-1;;;10255:75:8;;;;;;;;;;;;-1:-1:-1;;;10255:75:8;;;;;;;;;;;;;;;10347:28;10367:7;10347:19;:28::i;:::-;10340:35;;64286:1;64297:11;:18;;-1:-1:-1;;64297:18:8;64311:4;64297:18;;;10161:221;;-1:-1:-1;10161:221:8:o;2161:23:9:-;;;;:::o;12939:257:8:-;12990:4;13007:13;13022:11;13037:28;:26;:28::i;:::-;13006:59;;-1:-1:-1;13006:59:8;-1:-1:-1;13090:18:8;13083:3;:25;;;;;;;;;13075:91;;;;-1:-1:-1;;;13075:91:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13183:6;-1:-1:-1;;12939:257:8;;:::o;3155:36:9:-;3187:4;3155:36;:::o;5362:193:8:-;5457:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;5480:44;5495:10;5507:3;5512;5517:6;5480:14;:44::i;:::-;:68;5473:75;;64297:11;:18;;-1:-1:-1;;64297:18:8;64311:4;64297:18;;;5362:193;;-1:-1:-1;;;5362:193:8:o;985:35:9:-;;;-1:-1:-1;;;;;985:35:9;;:::o;475:21::-;;;;;;:::o;7251:349:8:-;7313:4;7329:23;;:::i;:::-;7355:38;;;;;;;;7370:21;:19;:21::i;:::-;7355:38;;-1:-1:-1;;;;;7468:20:8;;7404:14;7468:20;;;:13;:20;;;;;;7329:64;;-1:-1:-1;7404:14:8;;;7436:53;;7329:64;;7436:17;:53::i;:::-;7403:86;;-1:-1:-1;7403:86:8;-1:-1:-1;7515:18:8;7507:4;:26;;;;;;;;;7499:70;;;;;-1:-1:-1;;;7499:70:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;7586:7;-1:-1:-1;;;7251:349:8;;;;:::o;14773:86::-;14815:4;14838:14;:12;:14::i;:::-;14831:21;;14773:86;:::o;52041:718::-;52186:5;;52119:4;;52186:5;;;-1:-1:-1;;;;;52186:5:8;52172:10;:19;52168:122;;52214:65;52219:18;52239:39;52214:4;:65::i;:::-;52207:72;;;;52168:122;52338:11;;52433:30;;;-1:-1:-1;;;52433:30:8;;;;-1:-1:-1;;;;;52338:11:8;;;;52433:28;;;;;:30;;;;;;;;;;;;;;:28;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;52433:30:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52433:30:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52433:30:8;52425:71;;;;;-1:-1:-1;;;52425:71:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;52561:11;:28;;-1:-1:-1;;;;;;52561:28:8;-1:-1:-1;;;;;52561:28:8;;;;;;;;;52668:46;;;;;;;;;;;;;;;;;;;;;;;;;;;52737:14;52732:20;52725:27;52041:718;-1:-1:-1;;;52041:718:8:o;1935:24:9:-;;;;:::o;2985:152:7:-;3036:8;3049:30;3069:9;3049:19;:30::i;:::-;3035:44;;;3089:41;3104:3;3089:41;;;;;;;;;;;;;-1:-1:-1;;;3089:41:7;;;:14;:41::i;1106:39:9:-;;;-1:-1:-1;;;;;1106:39:9;;:::o;57868:563:8:-;57943:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;57972:16;:14;:16::i;:::-;57959:29;-1:-1:-1;58002:29:8;;57998:274;;58191:70;58202:5;58196:12;;;;;;;;58210:50;58191:4;:70::i;:::-;58184:77;;;;;57998:274;58390:34;58411:12;58390:20;:34::i;:::-;58383:41;;;64297:11;:18;;-1:-1:-1;;64297:18:8;64311:4;64297:18;;;57868:563;;-1:-1:-1;57868:563:8:o;1659:30:9:-;;;;:::o;6893:110:8:-;-1:-1:-1;;;;;6976:20:8;6950:7;6976:20;;;:13;:20;;;;;;;6893:110::o;9688:189::-;9750:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;9774:16;:14;:16::i;:::-;:40;9766:75;;;;;-1:-1:-1;;;9766:75:8;;;;;;;;;;;;-1:-1:-1;;;9766:75:8;;;;;;;;;;;;;;;-1:-1:-1;9858:12:8;;64297:11;:18;;-1:-1:-1;;64297:18:8;64311:4;64297:18;;;9688:189;:::o;2377:131:7:-;2440:4;2463:38;2488:12;2463:24;:38::i;2060:25:9:-;;;;:::o;380:20::-;;;;;;;;;;;;;;-1:-1:-1;;380:20:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10584:283:8;10651:4;10668:13;10683:11;10698:36;10726:7;10698:27;:36::i;:::-;10667:67;;-1:-1:-1;10667:67:8;-1:-1:-1;10759:18:8;10752:3;:25;;;;;;;;;10744:93;;;;-1:-1:-1;;;10744:93:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840:1498;1188:5;;;;;-1:-1:-1;;;;;1188:5:8;1174:10;:19;1166:68;;;;-1:-1:-1;;;1166:68:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1252:18;;:23;:43;;;;-1:-1:-1;1279:11:8;;:16;1252:43;1244:91;;;;-1:-1:-1;;;1244:91:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1383:27;:58;;;1459:31;1451:92;;;;-1:-1:-1;;;1451:92:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1585:8;1596:29;1612:12;1596:15;:29::i;:::-;1585:40;-1:-1:-1;1643:27:8;;1635:66;;;;;-1:-1:-1;;;1635:66:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;1838:16;:14;:16::i;:::-;1817:18;:37;390:4:6;1864:11:8;:25;1986:46;2013:18;1986:26;:46::i;:::-;1980:52;-1:-1:-1;2050:27:8;;2042:74;;;;-1:-1:-1;;;2042:74:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2127:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;2149:16:8;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;;2175:8:8;:20;;;;;;-1:-1:-1;;2175:20:8;;;;;;:8;2313:18;;;;;2175:20;2313:18;;;-1:-1:-1;;;;;840:1498:8:o;15100:3774::-;15142:4;15206:23;15232:16;:14;:16::i;:::-;15289:18;;15206:42;;-1:-1:-1;15374:45:8;;;15370:103;;;15447:14;15435:27;;;;;;15370:103;15537:14;15554;:12;:14::i;:::-;15598:12;;15641:13;;15688:11;;15793:17;;:71;;;-1:-1:-1;;;15793:71:8;;;;;;;;;;;;;;;;;;;;;;15537:31;;-1:-1:-1;15598:12:8;;15641:13;;15688:11;;15578:17;;-1:-1:-1;;;;;15793:17:8;;;;:31;;:71;;;;;;;;;;;;;;:17;:71;;;5:2:-1;;;;30:1;27;20:12;5:2;15793:71:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15793:71:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15793:71:8;;-1:-1:-1;644:9:9;15882:43:8;;;15874:84;;;;;-1:-1:-1;;;15874:84:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;16046:17;16065:15;16084:52;16092:18;16112:23;16084:7;:52::i;:::-;16045:91;;-1:-1:-1;16045:91:8;-1:-1:-1;16165:18:8;16154:7;:29;;;;;;;;;16146:73;;;;;-1:-1:-1;;;16146:73:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;16700:31;;:::i;:::-;16741:24;16775:20;16805:21;16836:19;16900:58;16910:35;;;;;;;;16925:18;16910:35;;;16947:10;16900:9;:58::i;:::-;16866:92;;-1:-1:-1;16866:92:8;-1:-1:-1;16983:18:8;16972:7;:29;;;;;;;;;16968:181;;17024:114;17035:16;17053:69;17129:7;17124:13;;;;;;;;17024:10;:114::i;:::-;17017:121;;;;;;;;;;;;;;;;;;16968:181;17192:53;17210:20;17232:12;17192:17;:53::i;:::-;17159:86;;-1:-1:-1;17159:86:8;-1:-1:-1;17270:18:8;17259:7;:29;;;;;;;;;17255:179;;17311:112;17322:16;17340:67;17414:7;17409:13;;;;;;;17255:179;17473:42;17481:19;17502:12;17473:7;:42::i;:::-;17444:71;;-1:-1:-1;17444:71:8;-1:-1:-1;17540:18:8;17529:7;:29;;;;;;;;;17525:176;;17581:109;17592:16;17610:64;17681:7;17676:13;;;;;;;17525:176;17741:100;17766:38;;;;;;;;17781:21;;17766:38;;;17806:19;17827:13;17741:24;:100::i;:::-;17711:130;;-1:-1:-1;17711:130:8;-1:-1:-1;17866:18:8;17855:7;:29;;;;;;;;;17851:177;;17907:110;17918:16;17936:65;18008:7;18003:13;;;;;;;17851:177;18066:82;18091:20;18113:16;18131;18066:24;:82::i;:::-;18038:110;;-1:-1:-1;18038:110:8;-1:-1:-1;18173:18:8;18162:7;:29;;;;;;;;;18158:175;;18214:108;18225:16;18243:63;18313:7;18308:13;;;;;;;18158:175;18529:18;:39;;;18578:11;:28;;;18616:12;:30;;;18656:13;:32;;;18750:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18852:14;18840:27;;;;;;;;;;;;;;;;15100:3774;:::o;4881:183::-;4959:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;4982:51;4997:10;5009;5021:3;5026:6;4982:14;:51::i;:::-;:75;4975:82;;64297:11;:18;;-1:-1:-1;;64297:18:8;64311:4;64297:18;;;4881:183;;-1:-1:-1;;4881:183:8:o;1805:23:9:-;;;;:::o;3860:233:7:-;3956:8;3969:62;3993:8;4003:9;4014:16;3969:23;:62::i;:::-;3955:76;;;4041:45;4056:3;4041:45;;;;;;;;;;;;;-1:-1:-1;;;4041:45:7;;;:14;:45::i;:::-;3860:233;;;:::o;9366:182:8:-;9442:17;;9419:4;;-1:-1:-1;;;;;9442:17:8;:31;9474:14;:12;:14::i;:::-;9490:12;;9504:13;;9519:21;;9442:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9442:99:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9442:99:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9442:99:8;;-1:-1:-1;9366:182:8;:::o;46813:192::-;46915:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;46938:60;46952:10;46964;46976:8;46986:11;46938:13;:60::i;:::-;46931:67;;64297:11;:18;;-1:-1:-1;;64297:18:8;64311:4;64297:18;;;46813:192;;-1:-1:-1;;;46813:192:8:o;50199:631::-;50342:5;;50276:4;;50342:5;;;-1:-1:-1;;;;;50342:5:8;50328:10;:19;50324:124;;50370:67;50375:18;50395:41;50370:4;:67::i;50324:124::-;50544:12;;;-1:-1:-1;;;;;50624:30:8;;;-1:-1:-1;;;;;;50624:30:8;;;;;;;50736:49;;;50544:12;;;;50736:49;;;;;;;;;;;;;;;;;;;;;;;50808:14;50803:20;;12501:195;12561:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;12585:16;:14;:16::i;:::-;:40;12577:75;;;;;-1:-1:-1;;;12577:75:8;;;;;;;;;;;;-1:-1:-1;;;12577:75:8;;;;;;;;;;;;;;;12669:20;:18;:20::i;:::-;12662:27;;64297:11;:18;;-1:-1:-1;;64297:18:8;64311:4;64297:18;;;12501:195;:::o;7938:685::-;-1:-1:-1;;;;;8061:22:8;;8006:4;8061:22;;;:13;:22;;;;;;8006:4;;;;;;;;;8206:36;8075:7;8206:27;:36::i;:::-;8182:60;-1:-1:-1;8182:60:8;-1:-1:-1;8264:18:8;8256:4;:26;;;;;;;;;8252:97;;8311:16;8306:22;8298:40;-1:-1:-1;8330:1:8;;-1:-1:-1;8330:1:8;;-1:-1:-1;8330:1:8;;-1:-1:-1;8298:40:8;;-1:-1:-1;;;;8298:40:8;8252:97;8390:28;:26;:28::i;:::-;8359:59;-1:-1:-1;8359:59:8;-1:-1:-1;8440:18:8;8432:4;:26;;;;;;;;;8428:97;;8487:16;8482:22;;8428:97;-1:-1:-1;8548:14:8;;-1:-1:-1;8565:13:8;;-1:-1:-1;8580:13:8;-1:-1:-1;8580:13:8;-1:-1:-1;7938:685:8;;;;;;:::o;2769:111:7:-;2822:4;2845:28;2860:12;2845:14;:28::i;1918:111::-;1971:4;1994:28;2009:12;1994:14;:28::i;6569:141:8:-;-1:-1:-1;;;;;6669:25:8;;;6643:7;6669:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;6569:141::o;3321:196:7:-;3394:8;3407:46;3433:8;3443:9;3407:25;:46::i;:::-;3393:60;;;3463:47;3478:3;3463:47;;;;;;;;;;;;;;;;;:14;:47::i;51101:722:8:-;51249:12;;51143:4;;-1:-1:-1;;;;;51249:12:8;51235:10;:26;;;:54;;-1:-1:-1;51265:10:8;:24;51235:54;51231:162;;;51312:70;51317:18;51337:44;51312:4;:70::i;:::-;51305:77;;;;51231:162;51474:5;;;51515:12;;;-1:-1:-1;;;;;51515:12:8;;;51474:5;51585:20;;;-1:-1:-1;;;;;;51585:20:8;;;;;;;-1:-1:-1;;;;;;51651:25:8;;;;;;51692;;;51474:5;;;;;;51692:25;;;51711:5;;;;;51692:25;;;;;;51474:5;;51515:12;;51692:25;;;;;;;;;51765:12;;51732:46;;;-1:-1:-1;;;;;51732:46:8;;;;;51765:12;;;51732:46;;;;;;;;;;;;;;;;51801:14;51789:27;;;;51101:722;:::o;60767:625::-;60854:4;60870:10;60883:16;:14;:16::i;:::-;60870:29;-1:-1:-1;60913:29:8;;60909:295;;61115:78;61126:5;61120:12;;;;;;;;61134:58;61115:4;:78::i;:::-;61108:85;;;;;60909:295;61337:48;61364:20;61337:26;:48::i;1242:42:9:-;;;-1:-1:-1;;;;;1242:42:9;;:::o;879:28::-;;;;;;-1:-1:-1;;;;;879:28:9;;:::o;9037:159:8:-;9113:17;;9090:4;;-1:-1:-1;;;;;9113:17:8;:31;9145:14;:12;:14::i;:::-;9161:12;;9175:13;;9113:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;53055:599:8;53144:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;53173:16;:14;:16::i;:::-;53160:29;-1:-1:-1;53203:29:8;;53199:283;;53398:73;53409:5;53403:12;;;;;;;;53417:53;53398:4;:73::i;53199:283::-;53599:48;53622:24;53599:22;:48::i;7212:149:4:-;7273:4;7294:33;7307:3;7302:9;;;;;;;;7318:4;7313:10;;;;;;;;7294:33;;;;;;;;;;;;;7325:1;7294:33;;;;;;;;;;;;;7350:3;7345:9;;;;;;;20494:3112:8;20640:11;;:58;;;-1:-1:-1;;;20640:58:8;;20672:4;20640:58;;;;-1:-1:-1;;;;;20640:58:8;;;;;;;;;;;;;;;20564:4;;;;;;20640:11;;;:23;;:58;;;;;;;;;;;;;;;20564:4;20640:11;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;20640:58:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20640:58:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20640:58:8;;-1:-1:-1;20712:12:8;;20708:143;;20748:88;20759:27;20788:38;20828:7;20748:10;:88::i;:::-;20740:100;-1:-1:-1;20838:1:8;;-1:-1:-1;20740:100:8;;-1:-1:-1;20740:100:8;20708:143;20958:16;:14;:16::i;:::-;20936:18;;:38;20932:143;;20998:62;21003:22;21027:32;20998:4;:62::i;20932:143::-;21085:25;;:::i;:::-;21165:28;:26;:28::i;:::-;21136:25;;;21121:72;;;21122:12;;;21121:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;21223:18:8;;-1:-1:-1;21207:4:8;:12;;;:34;;;;;;;;;21203:169;;21265:92;21276:16;21294:42;21343:4;:12;;;21338:18;;;;;;;21265:92;21257:104;-1:-1:-1;21359:1:8;;-1:-1:-1;21257:104:8;;-1:-1:-1;;21257:104:8;21203:169;21990:32;22003:6;22011:10;21990:12;:32::i;:::-;21966:21;;;:56;;;22288:42;;;;;;;;22303:25;;;;22288:42;;22242:89;;21966:56;22242:22;:89::i;:::-;22223:15;;;22208:123;;;22209:12;;;22208:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;22365:18:8;;-1:-1:-1;22349:4:8;:12;;;:34;;;;;;;;;22341:79;;;;;-1:-1:-1;;;22341:79:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22717:37;22725:11;;22738:4;:15;;;22717:7;:37::i;:::-;22694:19;;;22679:75;;;22680:12;;;22679:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;22788:18:8;;-1:-1:-1;22772:4:8;:12;;;:34;;;;;;;;;22764:87;;;;-1:-1:-1;;;22764:87:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22910:21:8;;;;;;:13;:21;;;;;;22933:15;;;;22902:47;;22910:21;22902:7;:47::i;:::-;22877:21;;;22862:87;;;22863:12;;;22862:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;22983:18:8;;-1:-1:-1;22967:4:8;:12;;;:34;;;;;;;;;22959:90;;;;-1:-1:-1;;;22959:90:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23139:19;;;;23125:11;:33;23192:21;;;;-1:-1:-1;;;;;23168:21:8;;;;;;:13;:21;;;;;;;;;:45;;;;23299:21;;;;23322:15;;;;;23286:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23385:15;;;;23353:48;;;;;;;-1:-1:-1;;;;;23353:48:8;;;23370:4;;-1:-1:-1;;;;;;;;;;;23353:48:8;;;;;;;;23451:11;;23497:21;;;;23520:15;;;;23451:85;;;-1:-1:-1;;;23451:85:8;;23482:4;23451:85;;;;-1:-1:-1;;;;;23451:85:8;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:22;;:85;;;;;:11;;:85;;;;;;;:11;;:85;;;5:2:-1;;;;30:1;27;20:12;5:2;23451:85:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;23560:14:8;;-1:-1:-1;23555:20:8;;-1:-1:-1;;23555:20:8;;23577:4;:21;;;23547:52;;;;;;20494:3112;;;;;;:::o;13453:1156::-;13561:11;;13514:9;;;;13586:17;13582:1021;;-1:-1:-1;;13775:27:8;;13755:18;;-1:-1:-1;13747:56:8;;13582:1021;13979:14;13996;:12;:14::i;:::-;13979:31;;14024:33;14071:23;;:::i;:::-;14108:17;14182:54;14197:9;14208:12;;14222:13;;14182:14;:54::i;:::-;14140:96;-1:-1:-1;14140:96:8;-1:-1:-1;14265:18:8;14254:7;:29;;;;;;;;;14250:87;;14311:7;-1:-1:-1;14320:1:8;;-1:-1:-1;14303:19:8;;-1:-1:-1;;;;14303:19:8;14250:87;14377:50;14384:28;14414:12;14377:6;:50::i;:::-;14351:76;-1:-1:-1;14351:76:8;-1:-1:-1;14456:18:8;14445:7;:29;;;;;;;;;14441:87;;14502:7;-1:-1:-1;14511:1:8;;-1:-1:-1;14494:19:8;;-1:-1:-1;;;;14494:19:8;14441:87;-1:-1:-1;14570:21:8;14550:18;;-1:-1:-1;14570:21:8;-1:-1:-1;14542:50:8;;-1:-1:-1;;;14542:50:8;13453:1156;;;:::o;2790:1838::-;2888:4;-1:-1:-1;;;;;2912:17:8;;2904:42;;;;;-1:-1:-1;;;2904:42:8;;;;;;;;;;;;-1:-1:-1;;;2904:42:8;;;;;;;;;;;;;;;2971:3;-1:-1:-1;;;;;2964:10:8;:3;-1:-1:-1;;;;;2964:10:8;;;2956:48;;;;;-1:-1:-1;;;2956:48:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;3073:11;;:60;;;-1:-1:-1;;;3073:60:8;;3109:4;3073:60;;;;-1:-1:-1;;;;;3073:60:8;;;;;;;;;;;;;;;;;;;;;;3058:12;;3073:11;;;;;:27;;:60;;;;;;;;;;;;;;;3058:12;3073:11;:60;;;5:2:-1;;;;30:1;27;20:12;5:2;3073:60:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3073:60:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3073:60:8;;-1:-1:-1;3151:12:8;;3143:46;;;;;-1:-1:-1;;;3143:46:8;;;;;;;;;;;;-1:-1:-1;;;3143:46:8;;;;;;;;;;;;;;;3264:22;-1:-1:-1;;;;;3304:14:8;;;;;;;3300:156;;;-1:-1:-1;;;3300:156:8;;;-1:-1:-1;;;;;;3413:23:8;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;3300:156;3531:17;3558;3585;3612;3666:34;3674:17;3693:6;3666:7;:34::i;:::-;3640:60;;-1:-1:-1;3640:60:8;-1:-1:-1;3729:18:8;3718:7;:29;;;;;;;;;3710:62;;;;;-1:-1:-1;;;3710:62:8;;;;;;;;;;;;-1:-1:-1;;;3710:62:8;;;;;;;;;;;;;;;-1:-1:-1;;;;;3817:18:8;;;;;;:13;:18;;;;;;3809:35;;3837:6;3809:7;:35::i;:::-;3783:61;;-1:-1:-1;3783:61:8;-1:-1:-1;3873:18:8;3862:7;:29;;;;;;;;;3854:61;;;;;-1:-1:-1;;;3854:61:8;;;;;;;;;;;;-1:-1:-1;;;3854:61:8;;;;;;;;;;;;;;;-1:-1:-1;;;;;3960:18:8;;;;;;:13;:18;;;;;;3952:35;;3980:6;3952:7;:35::i;:::-;3926:61;;-1:-1:-1;3926:61:8;-1:-1:-1;4016:18:8;4005:7;:29;;;;;;;;;3997:59;;;;;-1:-1:-1;;;3997:59:8;;;;;;;;;;;;-1:-1:-1;;;3997:59:8;;;;;;;;;;;;;;;-1:-1:-1;;;;;4184:18:8;;;;;;;:13;:18;;;;;;:33;;;4227:18;;;;;;:33;;;-1:-1:-1;;4330:29:8;;4326:107;;-1:-1:-1;;;;;4375:23:8;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;4326:107;4501:3;-1:-1:-1;;;;;4487:26:8;4496:3;-1:-1:-1;;;;;4487:26:8;-1:-1:-1;;;;;;;;;;;4506:6:8;4487:26;;;;;;;;;;;;;;;;;;4524:11;;:59;;;-1:-1:-1;;;4524:59:8;;4559:4;4524:59;;;;-1:-1:-1;;;;;4524:59:8;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:26;;:59;;;;;:11;;:59;;;;;;;:11;;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;4524:59:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;4606:14:8;;-1:-1:-1;4601:20:8;;-1:-1:-1;;4601:20:8;;4594:27;;;;;;;;2790:1838;;;;;;;:::o;2412:306:5:-;2489:9;2500:4;2517:13;2532:18;;:::i;:::-;2554:20;2564:1;2567:6;2554:9;:20::i;:::-;2516:58;;-1:-1:-1;2516:58:5;-1:-1:-1;2595:18:5;2588:3;:25;;;;;;;;;2584:71;;-1:-1:-1;2637:3:5;-1:-1:-1;2642:1:5;;-1:-1:-1;2629:15:5;;2584:71;2673:18;2693:17;2702:7;2693:8;:17::i;:::-;2665:46;;;;;;2412:306;;;;;:::o;4545:227:7:-;4592:4;4609:13;4624:20;4648:41;4656:21;4679:9;4648:7;:41::i;:::-;4608:81;;-1:-1:-1;4608:81:7;-1:-1:-1;4714:18:7;4707:3;:25;;;;;;;;;4699:34;;;;;35149:564:8;35227:4;64221:11;;35227:4;;64221:11;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;35262:16;:14;:16::i;:::-;35249:29;-1:-1:-1;35292:29:8;;35288:257;;35463:67;35474:5;35468:12;;;;;;;;35482:47;35463:4;:67::i;35288:257::-;35653:53;35670:10;35682;35694:11;35653:16;:53::i;58700:1706::-;58906:5;;58767:4;;;;58906:5;;;-1:-1:-1;;;;;58906:5:8;58892:10;:19;58888:122;;58934:65;58939:18;58959:39;58934:4;:65::i;58888:122::-;59133:16;:14;:16::i;:::-;59111:18;;:38;59107:145;;59172:69;59177:22;59201:39;59172:4;:69::i;59107:145::-;59355:12;59338:14;:12;:14::i;:::-;:29;59334:150;;;59390:83;59395:29;59426:46;59390:4;:83::i;59334:150::-;59575:13;;59560:12;:28;59556:127;;;59611:61;59616:15;59633:38;59611:4;:61::i;59556:127::-;-1:-1:-1;59829:13:8;;:28;;;;59963:33;;;59955:82;;;;-1:-1:-1;;;59955:82:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60108:13;:32;;;60271:5;;60257:34;;60271:5;;;-1:-1:-1;;;;;60271:5:8;60278:12;60257:13;:34::i;:::-;60323:5;;60307:54;;;60323:5;;;;-1:-1:-1;;;;;60323:5:8;60307:54;;;;;;;;;;;;;;;;;;;;;;;;;60384:14;60379:20;;24840:529;24924:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;24953:16;:14;:16::i;:::-;24940:29;-1:-1:-1;24983:29:8;;24979:246;;25153:61;25164:5;25158:12;;;;;;;;25172:41;25153:4;:61::i;24979:246::-;25322:40;25334:10;25346:1;25349:12;25322:11;:40::i;11114:1238::-;-1:-1:-1;;;;;11456:23:8;;11191:9;11456:23;;;:14;:23;;;;;11680:24;;11191:9;;;;;;;;11676:90;;-1:-1:-1;11733:18:8;;-1:-1:-1;11733:18:8;;-1:-1:-1;11725:30:8;;-1:-1:-1;;;11725:30:8;11676:90;11988:46;11996:14;:24;;;12022:11;;11988:7;:46::i;:::-;11955:79;;-1:-1:-1;11955:79:8;-1:-1:-1;12059:18:8;12048:7;:29;;;;;;;;;12044:79;;-1:-1:-1;12101:7:8;;-1:-1:-1;12110:1:8;;-1:-1:-1;12093:19:8;;-1:-1:-1;;12093:19:8;12044:79;12153:58;12161:19;12182:14;:28;;;12153:7;:58::i;:::-;12133:78;;-1:-1:-1;12133:78:8;-1:-1:-1;12236:18:8;12225:7;:29;;;;;;;;;12221:79;;-1:-1:-1;12278:7:8;;-1:-1:-1;12287:1:8;;-1:-1:-1;12270:19:8;;-1:-1:-1;;12270:19:8;12221:79;-1:-1:-1;12318:18:8;;-1:-1:-1;12338:6:8;-1:-1:-1;;;11114:1238:8;;;;:::o;8776:91::-;8848:12;8776:91;:::o;61714:1271::-;62008:5;;61808:4;;;;62008:5;;;-1:-1:-1;;;;;62008:5:8;61994:10;:19;61990:130;;62036:73;62041:18;62061:47;62036:4;:73::i;61990:130::-;62243:16;:14;:16::i;:::-;62221:18;;:38;62217:153;;62282:77;62287:22;62311:47;62282:4;:77::i;62217:153::-;62461:17;;;;;;;;;-1:-1:-1;;;;;62461:17:8;62438:40;;62578:20;-1:-1:-1;;;;;62578:40:8;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;62578:42:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;62578:42:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;62578:42:8;62570:83;;;;;-1:-1:-1;;;62570:83:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;62727:17;:40;;-1:-1:-1;;;;;;62727:40:8;-1:-1:-1;;;;;62727:40:8;;;;;;;;;62870:70;;;;;;;;;;;;;;;;;;;;;;;;;;;62963:14;62958:20;;1258:230:0;1314:9;1325:4;1350:1;1345;:6;1341:141;;-1:-1:-1;1375:18:0;;-1:-1:-1;1395:5:0;;;1367:34;;1341:141;-1:-1:-1;1440:27:0;;-1:-1:-1;1469:1:0;1432:39;;1958:346:5;2027:9;2038:10;;:::i;:::-;2061:14;2077:19;2100:27;2108:1;:10;;;2120:6;2100:7;:27::i;:::-;2060:67;;-1:-1:-1;2060:67:5;-1:-1:-1;2149:18:5;2141:4;:26;;;;;;;;;2137:90;;-1:-1:-1;2197:18:5;;;;;;;;;-1:-1:-1;2197:18:5;;2191:4;;-1:-1:-1;2197:18:5;-1:-1:-1;2183:33:5;;2137:90;2265:31;;;;;;;;;;;;-1:-1:-1;;2265:31:5;;-1:-1:-1;1958:346:5;-1:-1:-1;;;;1958:346:5:o;7479:183:4:-;7564:4;7585:43;7598:3;7593:9;;;;;;;;7609:4;7604:10;;;;;;;;7585:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;7651:3;7646:9;;;;;;;1568:250:0;1624:9;;1660:5;;;1680:6;;;1676:136;;1710:18;;-1:-1:-1;1730:1:0;-1:-1:-1;1702:30:0;;1676:136;-1:-1:-1;1771:26:0;;-1:-1:-1;1799:1:0;;-1:-1:-1;1763:38:0;;2858:321:5;2955:9;2966:4;2983:13;2998:18;;:::i;:::-;3020:20;3030:1;3033:6;3020:9;:20::i;:::-;2982:58;;-1:-1:-1;2982:58:5;-1:-1:-1;3061:18:5;3054:3;:25;;;;;;;;;3050:71;;-1:-1:-1;3103:3:5;-1:-1:-1;3108:1:5;;-1:-1:-1;3095:15:5;;3050:71;3138:34;3146:17;3155:7;3146:8;:17::i;:::-;3165:6;3138:7;:34::i;:::-;3131:41;;;;;;2858:321;;;;;;;:::o;41169:979:8:-;41303:4;64221:11;;41303:4;;64221:11;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;41338:16;:14;:16::i;:::-;41325:29;-1:-1:-1;41368:29:8;;41364:266;;41544:71;41555:5;41549:12;;;;;;;;41563:51;41544:4;:71::i;:::-;41536:83;-1:-1:-1;41617:1:8;;-1:-1:-1;41536:83:8;;-1:-1:-1;41536:83:8;41364:266;41648:16;-1:-1:-1;;;;;41648:31:8;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41648:33:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41648:33:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41648:33:8;;-1:-1:-1;41695:29:8;;41691:270;;41871:75;41882:5;41876:12;;;;;;;;41890:55;41871:4;:75::i;41691:270::-;42068:73;42089:10;42101:8;42111:11;42124:16;42068:20;:73::i;:::-;42061:80;;;;;64286:1;64297:11;:18;;-1:-1:-1;;64297:18:8;64311:4;64297:18;;;41169:979;;;;-1:-1:-1;41169:979:8;-1:-1:-1;;41169:979:8:o;47668:2093::-;47857:11;;:87;;;-1:-1:-1;;;47857:87:8;;47890:4;47857:87;;;;-1:-1:-1;;;;;47857:87:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47786:4;;;;47857:11;;:24;;:87;;;;;;;;;;;;;;47786:4;47857:11;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;47857:87:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47857:87:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47857:87:8;;-1:-1:-1;47958:12:8;;47954:149;;47993:99;48004:27;48033:49;48084:7;47993:10;:99::i;:::-;47986:106;;;;;47954:149;48173:10;-1:-1:-1;;;;;48161:22:8;:8;-1:-1:-1;;;;;48161:22:8;;48157:144;;;48206:84;48211:26;48239:50;48206:4;:84::i;48157:144::-;-1:-1:-1;;;;;48714:23:8;;48311:17;48714:23;;;:13;:23;;;;;;48311:17;;;;48706:45;;48739:11;48706:7;:45::i;:::-;48675:76;;-1:-1:-1;48675:76:8;-1:-1:-1;48776:18:8;48765:7;:29;;;;;;;;;48761:164;;48817:97;48828:16;48846:52;48905:7;48900:13;;;;;;;48817:97;48810:104;;;;;;;;48761:164;-1:-1:-1;;;;;48976:25:8;;;;;;:13;:25;;;;;;48968:47;;49003:11;48968:7;:47::i;:::-;48935:80;;-1:-1:-1;48935:80:8;-1:-1:-1;49040:18:8;49029:7;:29;;;;;;;;;49025:164;;49081:97;49092:16;49110:52;49169:7;49164:13;;;;;;;49025:164;-1:-1:-1;;;;;49385:23:8;;;;;;;:13;:23;;;;;;;;:43;;;49438:25;;;;;;;;;;:47;;;49537:43;;;;;;;49438:25;;-1:-1:-1;;;;;;;;;;;49537:43:8;;;;;;;;;;49630:11;;:86;;;-1:-1:-1;;;49630:86:8;;49662:4;49630:86;;;;-1:-1:-1;;;;;49630:86:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:23;;:86;;;;;:11;;:86;;;;;;;:11;;:86;;;5:2:-1;;;;30:1;27;20:12;5:2;49630:86:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;49739:14:8;;-1:-1:-1;49734:20:8;;-1:-1:-1;;49734:20:8;;49727:27;47668:2093;-1:-1:-1;;;;;;;;;47668:2093:8:o;31003:516::-;31077:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;31106:16;:14;:16::i;:::-;31093:29;-1:-1:-1;31136:29:8;;31132:246;;31306:61;31317:5;31311:12;;;;;;;;31325:41;31306:4;:61::i;31132:246::-;31475:37;31487:10;31499:12;31475:11;:37::i;23949:519::-;24023:4;64221:11;;;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;24052:16;:14;:16::i;:::-;24039:29;-1:-1:-1;24082:29:8;;24078:246;;24252:61;24263:5;24257:12;;;;;;;24078:246;24421:40;24433:10;24445:12;24459:1;24421:11;:40::i;36038:586::-;36140:4;64221:11;;36140:4;;64221:11;;64213:34;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;-1:-1:-1;;;64213:34:8;;;;;;;;;;;;;;;64271:5;64257:19;;-1:-1:-1;;64257:19:8;;;36175:16;:14;:16::i;:::-;36162:29;-1:-1:-1;36205:29:8;;36201:257;;36376:67;36387:5;36381:12;;;;;;;;36395:47;36376:4;:67::i;:::-;36368:79;-1:-1:-1;36445:1:8;;-1:-1:-1;36368:79:8;;-1:-1:-1;36368:79:8;36201:257;36566:51;36583:10;36595:8;36605:11;36566:16;:51::i;:::-;36559:58;;;;;64286:1;64297:11;:18;;-1:-1:-1;;64297:18:8;64311:4;64297:18;;;36038:586;;;;-1:-1:-1;36038:586:8;-1:-1:-1;36038:586:8:o;53915:951::-;54063:5;;53996:4;;54063:5;;;-1:-1:-1;;;;;54063:5:8;54049:10;:19;54045:125;;54091:68;54096:18;54116:42;54091:4;:68::i;54045:125::-;54274:16;:14;:16::i;:::-;54252:18;;:38;54248:148;;54313:72;54318:22;54342:42;54313:4;:72::i;54248:148::-;805:4:9;54465:24:8;:51;54461:155;;;54539:66;54544:15;54561:43;54539:4;:66::i;54461:155::-;54658:21;;;54689:48;;;;54753:68;;;;;;;;;;;;;;;;;;;;;;;;;54844:14;54839:20;;5005:240:7;5072:4;5121:10;-1:-1:-1;;;;;5121:18:7;;;5113:46;;;;;-1:-1:-1;;;5113:46:7;;;;;;;;;;;;-1:-1:-1;;;5113:46:7;;;;;;;;;;;;;;;5190:6;5177:9;:19;5169:46;;;;;-1:-1:-1;;;5169:46:7;;;;;;;;;;;;-1:-1:-1;;;5169:46:7;;;;;;;;;;;;;;;-1:-1:-1;5232:6:7;5005:240;-1:-1:-1;5005:240:7:o;4404:330:5:-;4492:9;4503:4;4520:13;4535:19;;:::i;:::-;4558:31;4573:6;4581:7;4558:14;:31::i;1882:263:0:-;1953:9;1964:4;1981:14;1997:8;2009:13;2017:1;2020;2009:7;:13::i;:::-;1980:42;;-1:-1:-1;1980:42:0;-1:-1:-1;2045:18:0;2037:4;:26;;;;;;;;;2033:73;;-1:-1:-1;2087:4:0;-1:-1:-1;2093:1:0;;-1:-1:-1;2079:16:0;;2033:73;2123:15;2131:3;2136:1;2123:7;:15::i;752:503:5:-;813:9;824:10;;:::i;:::-;847:14;863:20;887:22;895:3;390:4:6;887:7:5;:22::i;:::-;846:63;;-1:-1:-1;846:63:5;-1:-1:-1;931:18:5;923:4;:26;;;;;;;;;919:90;;-1:-1:-1;979:18:5;;;;;;;;;-1:-1:-1;979:18:5;;973:4;;-1:-1:-1;979:18:5;-1:-1:-1;965:33:5;;919:90;1020:14;1036:13;1053:31;1061:15;1078:5;1053:7;:31::i;:::-;1019:65;;-1:-1:-1;1019:65:5;-1:-1:-1;1106:18:5;1098:4;:26;;;;;;;;;1094:90;;-1:-1:-1;1154:18:5;;;;;;;;;-1:-1:-1;1154:18:5;;1148:4;;-1:-1:-1;1154:18:5;-1:-1:-1;1140:33:5;;-1:-1:-1;;1140:33:5;1094:90;1222:25;;;;;;;;;;;;-1:-1:-1;;1222:25:5;;-1:-1:-1;752:503:5;-1:-1:-1;;;;;;752:503:5:o;769:210:6:-;949:12;390:4;949:23;;;769:210::o;37309:3343:8:-;37487:11;;:75;;;-1:-1:-1;;;37487:75:8;;37526:4;37487:75;;;;-1:-1:-1;;;;;37487:75:8;;;;;;;;;;;;;;;;;;;;;;37404:4;;;;;;37487:11;;;:30;;:75;;;;;;;;;;;;;;;37404:4;37487:11;:75;;;5:2:-1;;;;30:1;27;20:12;5:2;37487:75:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37487:75:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37487:75:8;;-1:-1:-1;37576:12:8;;37572:151;;37612:96;37623:27;37652:46;37700:7;37612:10;:96::i;:::-;37604:108;-1:-1:-1;37710:1:8;;-1:-1:-1;37604:108:8;;-1:-1:-1;37604:108:8;37572:151;37830:16;:14;:16::i;:::-;37808:18;;:38;37804:151;;37870:70;37875:22;37899:40;37870:4;:70::i;37804:151::-;37965:32;;:::i;:::-;-1:-1:-1;;;;;38108:24:8;;;;;;:14;:24;;;;;:38;;;38087:18;;;:59;38274:37;38123:8;38274:27;:37::i;:::-;38251:19;;;38236:75;;;38237:12;;;38236:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;38341:18:8;;-1:-1:-1;38325:4:8;:12;;;:34;;;;;;;;;38321:190;;38383:113;38394:16;38412:63;38482:4;:12;;;38477:18;;;;;;;38383:113;38375:125;-1:-1:-1;38498:1:8;;-1:-1:-1;38375:125:8;;-1:-1:-1;;38375:125:8;38321:190;-1:-1:-1;;38590:11:8;:23;38586:153;;;38648:19;;;;38629:16;;;:38;38586:153;;;38698:16;;;:30;;;38586:153;39324:37;39337:5;39344:4;:16;;;39324:12;:37::i;:::-;39299:22;;;:62;;;39664:19;;;;39656:52;;:7;:52::i;:::-;39630:22;;;39615:93;;;39616:12;;;39615:93;;;;;;;;;;;;;;;;;;;-1:-1:-1;39742:18:8;;-1:-1:-1;39726:4:8;:12;;;:34;;;;;;;;;39718:105;;;;-1:-1:-1;;;39718:105:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39873:45;39881:12;;39895:4;:22;;;39873:7;:45::i;:::-;39849:20;;;39834:84;;;39835:12;;;39834:84;;;;;;;;;;;;;;;;;;;-1:-1:-1;39952:18:8;;-1:-1:-1;39936:4:8;:12;;;:34;;;;;;;;;39928:96;;;;-1:-1:-1;;;39928:96:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40141:22;;;;;;-1:-1:-1;;;;;40104:24:8;;;;;;;:14;:24;;;;;;;;;:59;;;40214:11;;40173:38;;;;:52;;;;40250:20;;;;40235:12;:35;;;40357:22;;;;40381;;40328:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40476:11;;40538:22;;;;40562:18;;;;40476:105;;;-1:-1:-1;;;40476:105:8;;40514:4;40476:105;;;;-1:-1:-1;;;;;40476:105:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:29;;:105;;;;;:11;;:105;;;;;;;:11;;:105;;;5:2:-1;;;;30:1;27;20:12;5:2;40476:105:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;40605:14:8;;-1:-1:-1;40600:20:8;;-1:-1:-1;;40600:20:8;;40622:4;:22;;;40592:53;;;;;;37309:3343;;;;;;:::o;5251:170:7:-;5395:19;;-1:-1:-1;;;;;5395:11:7;;;:19;;;;;5407:6;;5395:19;;;;5407:6;5395:11;:19;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;26238:4504:8;26345:4;26369:19;;;:42;;-1:-1:-1;26392:19:8;;26369:42;26361:107;;;;-1:-1:-1;;;26361:107:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26479:27;;:::i;:::-;26620:28;:26;:28::i;:::-;26591:25;;;26576:72;;;26577:12;;;26576:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;26678:18:8;;-1:-1:-1;26662:4:8;:12;;;:34;;;;;;;;;26658:166;;26719:94;26730:16;26748:44;26799:4;:12;;;26794:18;;;;;;;26719:94;26712:101;;;;;26658:166;26875:18;;26871:1265;;27145:17;;;:34;;;27248:42;;;;;;;;27263:25;;;;27248:42;;27230:77;;27165:14;27230:17;:77::i;:::-;27209:17;;;27194:113;;;27195:12;;;27194:113;;;;;;;;;;;;;;;;;;;-1:-1:-1;27341:18:8;;-1:-1:-1;27325:4:8;:12;;;:34;;;;;;;;;27321:183;;27386:103;27397:16;27415:53;27475:4;:12;;;27470:18;;;;;;;27321:183;26871:1265;;;27798:82;27821:14;27837:42;;;;;;;;27852:4;:25;;;27837:42;;;27798:22;:82::i;:::-;27777:17;;;27762:118;;;27763:12;;;27762:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;27914:18:8;;-1:-1:-1;27898:4:8;:12;;;:34;;;;;;;;;27894:183;;27959:103;27970:16;27988:53;28048:4;:12;;;28043:18;;;;;;;27894:183;28091:17;;;:34;;;26871:1265;28202:11;;28253:17;;;;28202:69;;;-1:-1:-1;;;28202:69:8;;28236:4;28202:69;;;;-1:-1:-1;;;;;28202:69:8;;;;;;;;;;;;;;;;28187:12;;28202:11;;;;;:25;;:69;;;;;;;;;;;;;;;28187:12;28202:11;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;28202:69:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28202:69:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28202:69:8;;-1:-1:-1;28285:12:8;;28281:140;;28320:90;28331:27;28360:40;28402:7;28320:10;:90::i;:::-;28313:97;;;;;;28281:140;28528:16;:14;:16::i;:::-;28506:18;;:38;28502:140;;28567:64;28572:22;28596:34;28567:4;:64::i;28502:140::-;28930:39;28938:11;;28951:4;:17;;;28930:7;:39::i;:::-;28907:19;;;28892:77;;;28893:12;;;28892:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;28999:18:8;;-1:-1:-1;28983:4:8;:12;;;:34;;;;;;;;;28979:176;;29040:104;29051:16;29069:54;29130:4;:12;;;29125:18;;;;;;;28979:176;-1:-1:-1;;;;;29213:23:8;;;;;;:13;:23;;;;;;29238:17;;;;29205:51;;29213:23;29205:7;:51::i;:::-;29180:21;;;29165:91;;;29166:12;;;29165:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;29286:18:8;;-1:-1:-1;29270:4:8;:12;;;:34;;;;;;;;;29266:179;;29327:107;29338:16;29356:57;29420:4;:12;;;29415:18;;;;;;;29266:179;29540:4;:17;;;29523:14;:12;:14::i;:::-;:34;29519:153;;;29580:81;29585:29;29616:44;29580:4;:81::i;29519:153::-;30156:42;30170:8;30180:4;:17;;;30156:13;:42::i;:::-;30288:19;;;;30274:11;:33;30343:21;;;;-1:-1:-1;;;;;30317:23:8;;;;;;:13;:23;;;;;;;;;:47;;;;30473:17;;;;30439:52;;;;;;;30466:4;;-1:-1:-1;;;;;;;;;;;30439:52:8;;;;;;;30523:17;;;;30542;;;;;30506:54;;;-1:-1:-1;;;;;30506:54:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30610:11;;30660:17;;;;30679;;;;30610:87;;;-1:-1:-1;;;30610:87:8;;30643:4;30610:87;;;;-1:-1:-1;;;;;30610:87:8;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:24;;:87;;;;;:11;;:87;;;;;;;:11;;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;30610:87:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;30720:14:8;;-1:-1:-1;30715:20:8;;-1:-1:-1;;30715:20:8;;30708:27;26238:4504;-1:-1:-1;;;;;;26238:4504:8:o;498:331:0:-;554:9;;585:6;581:67;;-1:-1:-1;615:18:0;;-1:-1:-1;615:18:0;607:30;;581:67;667:5;;;671:1;667;:5;:1;687:5;;;;;:10;683:140;;-1:-1:-1;721:26:0;;-1:-1:-1;749:1:0;;-1:-1:-1;713:38:0;;683:140;790:18;;-1:-1:-1;810:1:0;-1:-1:-1;782:30:0;;919:209;975:9;;1006:6;1002:75;;-1:-1:-1;1036:26:0;;-1:-1:-1;1064:1:0;1028:38;;1002:75;1095:18;1119:1;1115;:5;;;;;;1087:34;;;;919:209;;;;;:::o;42749:3514:8:-;42968:11;;:111;;;-1:-1:-1;;;42968:111:8;;43011:4;42968:111;;;;-1:-1:-1;;;;;42968:111:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42887:4;;;;;;42968:11;;;:34;;:111;;;;;;;;;;;;;;;42887:4;42968:11;:111;;;5:2:-1;;;;30:1;27;20:12;5:2;42968:111:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42968:111:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42968:111:8;;-1:-1:-1;43093:12:8;;43089:148;;43129:93;43140:27;43169:43;43214:7;43129:10;:93::i;:::-;43121:105;-1:-1:-1;43224:1:8;;-1:-1:-1;43121:105:8;;-1:-1:-1;43121:105:8;43089:148;43344:16;:14;:16::i;:::-;43322:18;;:38;43318:148;;43384:67;43389:22;43413:37;43384:4;:67::i;43318:148::-;43609:16;:14;:16::i;:::-;43568;-1:-1:-1;;;;;43568:35:8;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43568:37:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43568:37:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43568:37:8;:57;43564:178;;43649:78;43654:22;43678:48;43649:4;:78::i;43564:178::-;43812:10;-1:-1:-1;;;;;43800:22:8;:8;-1:-1:-1;;;;;43800:22:8;;43796:143;;;43846:78;43851:26;43879:44;43846:4;:78::i;43796:143::-;43991:16;43987:145;;44031:86;44036:36;44074:42;44031:4;:86::i;43987:145::-;-1:-1:-1;;44185:11:8;:23;44181:156;;;44232:90;44237:36;44275:46;44232:4;:90::i;44181:156::-;44389:21;44412:22;44438:51;44455:10;44467:8;44477:11;44438:16;:51::i;:::-;44388:101;;-1:-1:-1;44388:101:8;-1:-1:-1;44503:40:8;;44499:161;;44567:78;44578:16;44572:23;;;;;;;;44597:47;44567:4;:78::i;:::-;44559:90;-1:-1:-1;44647:1:8;;-1:-1:-1;44559:90:8;;-1:-1:-1;;;44559:90:8;44499:161;44910:11;;:102;;;-1:-1:-1;;;44910:102:8;;44960:4;44910:102;;;;-1:-1:-1;;;;;44910:102:8;;;;;;;;;;;;;;;44867:21;;;;44910:11;;;:41;;:102;;;;;;;;;;;;:11;:102;;;5:2:-1;;;;30:1;27;20:12;5:2;44910:102:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44910:102:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44910:102:8;;;;;;;;;-1:-1:-1;44910:102:8;-1:-1:-1;45030:40:8;;45022:104;;;;-1:-1:-1;;;45022:104:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45257:11;45217:16;-1:-1:-1;;;;;45217:26:8;;45244:8;45217:36;;;;;;;;;;;;;-1:-1:-1;;;;;45217:36:8;-1:-1:-1;;;;;45217:36:8;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45217:36:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45217:36:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45217:36:8;:51;;45209:88;;;;;-1:-1:-1;;;45209:88:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;45423:15;-1:-1:-1;;;;;45452:42:8;;45489:4;45452:42;45448:250;;;45523:63;45545:4;45552:10;45564:8;45574:11;45523:13;:63::i;:::-;45510:76;;45448:250;;;45630:57;;;-1:-1:-1;;;45630:57:8;;-1:-1:-1;;;;;45630:57:8;;;;;;;;;;;;;;;;;;;;;;:22;;;;;;:57;;;;;;;;;;;;;;;-1:-1:-1;45630:22:8;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;45630:57:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45630:57:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45630:57:8;;-1:-1:-1;45448:250:8;45801:34;;45793:67;;;;;-1:-1:-1;;;45793:67:8;;;;;;;;;;;;-1:-1:-1;;;45793:67:8;;;;;;;;;;;;;;;45922:96;;;-1:-1:-1;;;;;45922:96:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46068:11;;:129;;;-1:-1:-1;;;46068:129:8;;46110:4;46068:129;;;;-1:-1:-1;;;;;46068:129:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:33;;:129;;;;;:11;;:129;;;;;;;:11;;:129;;;5:2:-1;;;;30:1;27;20:12;5:2;46068:129:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;46221:14:8;;-1:-1:-1;46216:20:8;;-1:-1:-1;;46216:20:8;;46208:48;-1:-1:-1;46238:17:8;;-1:-1:-1;;;;;;42749:3514:8;;;;;;;;:::o;31932:2971::-;32088:11;;:64;;;-1:-1:-1;;;32088:64:8;;32122:4;32088:64;;;;-1:-1:-1;;;;;32088:64:8;;;;;;;;;;;;;;;32016:4;;;;32088:11;;:25;;:64;;;;;;;;;;;;;;32016:4;32088:11;:64;;;5:2:-1;;;;30:1;27;20:12;5:2;32088:64:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32088:64:8;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32088:64:8;;-1:-1:-1;32166:12:8;;32162:140;;32201:90;32212:27;32241:40;32283:7;32201:10;:90::i;:::-;32194:97;;;;;32162:140;32409:16;:14;:16::i;:::-;32387:18;;:38;32383:140;;32448:64;32453:22;32477:34;32448:4;:64::i;32383:140::-;32629:12;32612:14;:12;:14::i;:::-;:29;32608:141;;;32664:74;32669:29;32700:37;32664:4;:74::i;32608:141::-;32759:27;;:::i;:::-;33067:37;33095:8;33067:27;:37::i;:::-;33044:19;;;33029:75;;;33030:4;33029:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;33134:18:8;;-1:-1:-1;33118:12:8;;:34;;;;;;;;;33114:179;;33175:107;33186:16;33204:57;33268:4;:12;;;33263:18;;;;;;;33175:107;33168:114;;;;;;33114:179;33344:42;33352:4;:19;;;33373:12;33344:7;:42::i;:::-;33318:22;;;33303:83;;;33304:4;33303:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;33416:18:8;;-1:-1:-1;33400:12:8;;:34;;;;;;;;;33396:186;;33457:114;33468:16;33486:64;33557:4;:12;;;33552:18;;;;;;;33396:186;33631:35;33639:12;;33653;33631:7;:35::i;:::-;33607:20;;;33592:74;;;33593:4;33592:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;33696:18:8;;-1:-1:-1;33680:12:8;;:34;;;;;;;;;33676:177;;33737:105;33748:16;33766:55;33828:4;:12;;;33823:18;;;;;;;33676:177;34333:37;34347:8;34357:12;34333:13;:37::i;:::-;34487:22;;;;;;-1:-1:-1;;;;;34450:24:8;;;;;;:14;:24;;;;;;;;:59;;;34560:11;;34519:38;;;;:52;;;;34596:20;;;;;34581:12;:35;;;34700:22;;34669:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34795:11;;:63;;;-1:-1:-1;;;34795:63:8;;34828:4;34795:63;;;;-1:-1:-1;;;;;34795:63:8;;;;;;;;;;;;;;;:11;;;;;:24;;:63;;;;;:11;;:63;;;;;;;:11;;:63;;;5:2:-1;;;;30:1;27;20:12;5:2;34795:63:8;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;34881:14:8;;-1:-1:-1;34876:20:8;;-1:-1:-1;;34876:20:8;;34869:27;31932:2971;-1:-1:-1;;;;;31932:2971:8:o;3693:605:5:-;3773:9;3784:10;;:::i;:::-;4081:14;4097;4115:25;390:4:6;4133:6:5;4115:7;:25::i;:::-;4080:60;;-1:-1:-1;4080:60:5;-1:-1:-1;4162:18:5;4154:4;:26;;;;;;;;;4150:90;;-1:-1:-1;4210:18:5;;;;;;;;;-1:-1:-1;4210:18:5;;4204:4;;-1:-1:-1;4210:18:5;-1:-1:-1;4196:33:5;;4150:90;4256:35;4263:9;4274:7;:16;;;4256:6;:35::i;120:6002:7:-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;120:6002:7;;;-1:-1:-1;120:6002:7;:::i;:::-;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;120:6002:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;120:6002:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;120:6002:7;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://ee54102f003875fd731deee21070c30923d08a3ff2e9fe60b1f0961fc27340b1
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.