ETH Price: $2,941.71 (-4.10%)
Gas: 1 Gwei

Token

Artem USD Coin (aUSDC)
 

Overview

Max Total Supply

18,617,773.23516937 aUSDC

Holders

34 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
wantgold.eth
Balance
0.15225454 aUSDC

Value
$0.00
0x4Bf2120F90Feff1E1f443Ad07E542CA6b2F30105
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ArtemProtocol is a Compound derived Defi project that features liquidity for cryptocurrencies and Real-World Assets (RWA).

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AErc20

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

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

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-28
*/

pragma solidity ^0.5.16;

/**
  * @title Artem ERC-20 Contract
  * @notice Derived from Compound's cERC20 contract
  * https://github.com/compound-finance/compound-protocol/tree/master/contracts
  */

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

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

interface ControllerInterface {

    function isController() external view returns (bool);

    function enterMarkets(address[] calldata aTokens) external returns (uint[] memory);
    function exitMarket(address aToken) external returns (uint);

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

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

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

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

    function liquidateBorrowAllowed(
        address aTokenBorrowed,
        address aTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount) external returns (uint);
        
    function liquidateBorrowVerify(
        address aTokenBorrowed,
        address aTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount,
        uint seizeTokens) external;

    function seizeAllowed(
        address aTokenCollateral,
        address aTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external returns (uint);
        
    function seizeVerify(
        address aTokenCollateral,
        address aTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external;

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

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

    function liquidateCalculateSeizeTokens(
        address aTokenBorrowed,
        address aTokenCollateral,
        uint repayAmount) external view returns (uint, uint);
}


contract ControllerErrorReporter {

    event Failure(uint error, uint info, uint detail);


    function fail(Error err, FailureInfo info) internal returns (uint) {
        emit Failure(uint(err), uint(info), 0);

        return uint(err);
    }

    function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) {
        emit Failure(uint(err), uint(info), opaqueError);

        return uint(err);
    }
    
    enum Error {
        NO_ERROR,
        UNAUTHORIZED,
        CONTROLLER_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,
        ZUNUSED
    }

    
}

contract TokenErrorReporter {

    event Failure(uint error, uint info, uint detail);

    function fail(Error err, FailureInfo info) internal returns (uint) {
        emit Failure(uint(err), uint(info), 0);

        return uint(err);
    }

    function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) {
        emit Failure(uint(err), uint(info), opaqueError);

        return uint(err);
    }
    
    enum Error {
        NO_ERROR,
        UNAUTHORIZED,
        BAD_INPUT,
        CONTROLLER_REJECTION,
        CONTROLLER_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
    }


    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_CONTROLLER_REJECTION,
        LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED,
        LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED,
        LIQUIDATE_COLLATERAL_FRESHNESS_CHECK,
        LIQUIDATE_CONTROLLER_REJECTION,
        LIQUIDATE_CONTROLLER_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_CONTROLLER_REJECTION,
        LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER,
        LIQUIDATE_SEIZE_TOO_MUCH,
        MINT_ACCRUE_INTEREST_FAILED,
        MINT_CONTROLLER_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_CONTROLLER_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_CONTROLLER_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_CONTROLLER_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_CONTROLLER_REJECTION,
        TRANSFER_NOT_ALLOWED,
        TRANSFER_NOT_ENOUGH,
        TRANSFER_TOO_MUCH
    }


}


contract Exponential is CarefulMath {
    uint constant expScale = 1e18;
    uint constant halfExpScale = expScale/2;
    uint constant mantissaOne = expScale;

    struct Exp {
        uint mantissa;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    function divExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {
        return getExp(a.mantissa, b.mantissa);
    }

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

    function lessThanExp(Exp memory left, Exp memory right) pure internal returns (bool) {
        return left.mantissa < right.mantissa; //TODO: Add some simple tests and this in another PR yo.
    }

    function lessThanOrEqualExp(Exp memory left, Exp memory right) pure internal returns (bool) {
        return left.mantissa <= right.mantissa;
    }

    function isZeroExp(Exp memory value) pure internal returns (bool) {
        return value.mantissa == 0;
    }
}

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

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

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

    /**
      * @notice Transfer `amount` tokens from `msg.sender` to `dst`
      * @param dst The address of the destination account
      * @param amount The number of tokens to transfer
      * @return Whether or not the transfer succeeded
      */
    function transfer(address dst, uint256 amount) external returns (bool success);

    /**
      * @notice Transfer `amount` tokens from `src` to `dst`
      * @param src The address of the source account
      * @param dst The address of the destination account
      * @param amount The number of tokens to transfer
      * @return Whether or not the transfer succeeded
      */
    function transferFrom(address src, address dst, uint256 amount) external returns (bool success);

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

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

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


/**
 *  @title EIP20NonStandardInterface
 *  notice: 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 {

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256 balance);

    function transfer(address dst, uint256 amount) external;

    function transferFrom(address src, address dst, uint256 amount) external;

    function approve(address spender, uint256 amount) external returns (bool success);

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


/**
 * @title Helps contracts guard against reentrancy attacks.
 * @author Remco Bloemen <remco@2π.com>, Eenae <[email protected]>
 * @dev If you mark a function `nonReentrant`, you should also
 * mark it `external`.
 */
contract ReentrancyGuard {
    /// @dev counter to allow mutex lock with only one SSTORE operation
    uint256 private _guardCounter;

    constructor () public {
        // The counter starts at one to prevent changing it from zero to a non-zero
        // value, which is a more expensive operation.
        _guardCounter = 1;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _guardCounter += 1;
        uint256 localCounter = _guardCounter;
        _;
        require(localCounter == _guardCounter, "re-entered");
    }
}


interface InterestRateModel {

    function getBorrowRate(uint cash, uint borrows, uint reserves) external view returns (uint, uint);

    function isInterestRateModel() external view returns (bool);
}


contract AToken is EIP20Interface, Exponential, TokenErrorReporter, ReentrancyGuard {
    /**
     * @notice Indicator that this is a AToken contract (for inspection)
     */
    bool public constant isAToken = true;

    /**
     * @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
     */
    uint public decimals;

    /**
     * @notice Maximum borrow rate that can ever be applied (.0005% / block)
     */
    uint constant borrowRateMaxMantissa = 5e14;

    /**
     * @notice Maximum fraction of interest that can be set aside for reserves
     */
    uint 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-aToken operations
     */
    ControllerInterface public controller;

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

    /**
     * @notice Initial exchange rate used when minting the first ATokens (used when totalSupply = 0)
     */
    uint public 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 total earned interest 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
     */
    uint256 public totalSupply;

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

    /**
     * @notice Approved token transfer amounts on behalf of others
     */
    mapping (address => mapping (address => uint256)) 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) accountBorrows;


    /*** Market Events ***/

    /**
     * @notice Event emitted when interest is accrued
     */
    event AccrueInterest(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 aTokenCollateral, 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 controller is changed
     */
    event NewController(ControllerInterface oldController, ControllerInterface newController);

    /**
     * @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 reduced
     */
    event ReservesReduced(address admin, uint reduceAmount, uint newTotalReserves);

    constructor( ) public { 
        admin = msg.sender;

        // Set initial exchange rate
        initialExchangeRateMantissa = uint(200000000000000);

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

        name = string("Artem USD Coin");
        symbol = string("aUSDC");
        decimals = uint(8);
    }

    function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) {
        /* Fail if transfer not allowed */
        uint allowed = controller.transferAllowed(address(this), src, dst, tokens);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.TRANSFER_CONTROLLER_REJECTION, allowed);
        }

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

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

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

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

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

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

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

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

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

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

        /* We call the defense hook (which checks for under-collateralization) */
        controller.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);
        return balance;
    }

    /**
     * @notice Get a snapshot of the account's balances, and the cached exchange rate
     * @dev This is used by controller 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 aTokenBalance = 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), aTokenBalance, 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 aToken
     * @return The borrow interest rate per block, scaled by 1e18
     */
    function borrowRatePerBlock() external view returns (uint) {
        (uint opaqueErr, uint borrowRateMantissa) = interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves);
        require(opaqueErr == 0, "borrowRatePerBlock: interestRateModel.borrowRate failed"); // semi-opaque
        return borrowRateMantissa;
    }

    /**
     * @notice Returns the current per-block supply interest rate for this aToken
     * @return The supply interest rate per block, scaled by 1e18
     */
    function supplyRatePerBlock() external view returns (uint) {
        /* We calculate the supply rate:
         *  underlying = totalSupply × exchangeRate
         *  borrowsPer = totalBorrows ÷ underlying
         *  supplyRate = borrowRate × (1-reserveFactor) × borrowsPer
         */
        uint exchangeRateMantissa = exchangeRateStored();

        (uint e0, uint borrowRateMantissa) = interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves);
        require(e0 == 0, "supplyRatePerBlock: calculating borrowRate failed"); // semi-opaque

        (MathError e1, Exp memory underlying) = mulScalar(Exp({mantissa: exchangeRateMantissa}), totalSupply);
        require(e1 == MathError.NO_ERROR, "supplyRatePerBlock: calculating underlying failed");

        (MathError e2, Exp memory borrowsPer) = divScalarByExp(totalBorrows, underlying);
        require(e2 == MathError.NO_ERROR, "supplyRatePerBlock: calculating borrowsPer failed");

        (MathError e3, Exp memory oneMinusReserveFactor) = subExp(Exp({mantissa: mantissaOne}), Exp({mantissa: reserveFactorMantissa}));
        require(e3 == MathError.NO_ERROR, "supplyRatePerBlock: calculating oneMinusReserveFactor failed");

        (MathError e4, Exp memory supplyRate) = mulExp3(Exp({mantissa: borrowRateMantissa}), oneMinusReserveFactor, borrowsPer);
        require(e4 == MathError.NO_ERROR, "supplyRatePerBlock: calculating supplyRate failed");

        return supplyRate.mantissa;
    }

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

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

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

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

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

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

        Exp simpleInterestFactor;

        uint interestAccumulated;
        uint totalBorrowsNew;
        uint totalReservesNew;
        uint borrowIndexNew;
    }
    
    function getCash_pub() public 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) {
        AccrueInterestLocalVars memory vars;

        /* Calculate the current borrow interest rate */
        (vars.opaqueErr, vars.borrowRateMantissa) = interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves);

        require(vars.borrowRateMantissa <= borrowRateMaxMantissa, "borrow rate is absurdly high");
        if (vars.opaqueErr != 0) {
            return failOpaque(Error.INTEREST_RATE_MODEL_ERROR, FailureInfo.ACCRUE_INTEREST_BORROW_RATE_CALCULATION_FAILED, vars.opaqueErr);
        }

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

        /* Calculate the number of blocks elapsed since the last accrual */
        (vars.mathErr, vars.blockDelta) = subUInt(vars.currentBlockNumber, accrualBlockNumber);
        assert(vars.mathErr == MathError.NO_ERROR); // Block delta should always succeed and if it doesn't, blow up.

        /*
         * Calculate the interest accumulated into borrows and reserves and the new index:
         *  simpleInterestFactor = borrowRate * blockDelta
         *  interestAccumulated = simpleInterestFactor * totalBorrows
         *  totalBorrowsNew = interestAccumulated + totalBorrows
         *  totalReservesNew = interestAccumulated * reserveFactor + totalReserves
         *  borrowIndexNew = simpleInterestFactor * borrowIndex + borrowIndex
         */
        (vars.mathErr, vars.simpleInterestFactor) = mulScalar(Exp({mantissa: vars.borrowRateMantissa}), vars.blockDelta);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, uint(vars.mathErr));
        }

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

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

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

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

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

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

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

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Sender supplies assets into the market and receives aTokens in exchange
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param mintAmount The amount of the underlying asset to supply
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function mintInternal(uint mintAmount) 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.MINT_ACCRUE_INTEREST_FAILED);
        }
        // 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;
    }
    
    /**
     * @notice User supplies assets into the market and receives aTokens 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 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function mintFresh(address minter, uint mintAmount) internal returns (uint) {
        /* Fail if mint not allowed */
        uint allowed = controller.mintAllowed(address(this), minter, mintAmount);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.MINT_CONTROLLER_REJECTION, allowed);
        }

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

        MintLocalVars memory vars;

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

        /*
         * We get the current exchange rate and calculate the number of aTokens to be minted:
         *  mintTokens = mintAmount / exchangeRate
         */
        (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));
        }

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

        /*
         * We calculate the new total supply of aTokens and minter token balance, checking for overflow:
         *  totalSupplyNew = totalSupply + mintTokens
         *  accountTokensNew = accountTokens[minter] + mintTokens
         */
        (vars.mathErr, vars.totalSupplyNew) = addUInt(totalSupply, vars.mintTokens);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.accountTokensNew) = addUInt(accountTokens[minter], vars.mintTokens);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

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

        /*
         * We call doTransferIn for the minter and the mintAmount
         *  Note: The aToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the aToken holds an additional mintAmount of cash.
         *  If doTransferIn fails despite the fact we checked pre-conditions,
         *   we revert because we can't be sure if side effects occurred.
         */
        vars.err = doTransferIn(minter, mintAmount);
        if (vars.err != Error.NO_ERROR) {
            return fail(vars.err, FailureInfo.MINT_TRANSFER_IN_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, mintAmount, vars.mintTokens);
        emit Transfer(address(this), minter, vars.mintTokens);

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

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Sender redeems aTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of aTokens 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 aTokens 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 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 aTokens 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 aTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be zero)
     * @param redeemAmountIn The number of aTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be 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 = controller.redeemAllowed(address(this), redeemer, vars.redeemTokens);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.REDEEM_CONTROLLER_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 aToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the aToken has redeemAmount less of cash.
         *  If doTransferOut fails despite the fact we checked pre-conditions,
         *   we revert because we can't be sure if side effects occurred.
         */
        vars.err = doTransferOut(redeemer, vars.redeemAmount);
        require(vars.err == Error.NO_ERROR, "redeem transfer out failed");

        /* 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 */
        controller.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 {
        Error err;
        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 = controller.borrowAllowed(address(this), borrower, borrowAmount);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.BORROW_CONTROLLER_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 aToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the aToken borrowAmount less of cash.
         *  If doTransferOut fails despite the fact we checked pre-conditions,
         *   we revert because we can't be sure if side effects occurred.
         */
        vars.err = doTransferOut(borrower, borrowAmount);
        require(vars.err == Error.NO_ERROR, "borrow transfer out failed");

        /* 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 */
        controller.borrowVerify(address(this), borrower, borrowAmount);

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Sender repays their own borrow
     * @param repayAmount The amount to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowInternal(uint repayAmount) 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.REPAY_BORROW_ACCRUE_INTEREST_FAILED);
        }
        // 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 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowBehalfInternal(address borrower, uint repayAmount) 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.REPAY_BEHALF_ACCRUE_INTEREST_FAILED);
        }
        // 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;
    }

    /**
     * @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 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowFresh(address payer, address borrower, uint repayAmount) internal returns (uint) {
        /* Fail if repayBorrow not allowed */
        uint allowed = controller.repayBorrowAllowed(address(this), payer, borrower, repayAmount);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.REPAY_BORROW_CONTROLLER_REJECTION, allowed);
        }

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

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

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

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

        /*
         * We calculate the new borrower and total borrow balances, failing on underflow:
         *  accountBorrowsNew = accountBorrows - repayAmount
         *  totalBorrowsNew = totalBorrows - repayAmount
         */
        (vars.mathErr, vars.accountBorrowsNew) = subUInt(vars.accountBorrows, vars.repayAmount);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.totalBorrowsNew) = subUInt(totalBorrows, vars.repayAmount);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

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

        /*
         * We call doTransferIn for the payer and the repayAmount
         *  Note: The aToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the aToken holds an additional repayAmount of cash.
         *  If doTransferIn fails despite the fact we checked pre-conditions,
         *   we revert because we can't be sure if side effects occurred.
         */
        vars.err = doTransferIn(payer, vars.repayAmount);
        require(vars.err == Error.NO_ERROR, "repay borrow transfer in 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.repayAmount, vars.accountBorrowsNew, vars.totalBorrowsNew);

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

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice The sender liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this aToken to be liquidated
     * @param aTokenCollateral The market in which to seize collateral from the borrower
     * @param repayAmount The amount of the underlying borrowed asset to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function liquidateBorrowInternal(address borrower, uint repayAmount, AToken aTokenCollateral) 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 liquidation failed
            return fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED);
        }

        error = aTokenCollateral.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);
        }

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

    /**
     * @notice The liquidator liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this aToken to be liquidated
     * @param liquidator The address repaying the borrow and seizing collateral
     * @param aTokenCollateral The market in which to seize collateral from the borrower
     * @param repayAmount The amount of the underlying borrowed asset to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function liquidateBorrowFresh(address liquidator, address borrower, uint repayAmount, AToken aTokenCollateral) internal returns (uint) {
        /* Fail if liquidate not allowed */
        uint allowed = controller.liquidateBorrowAllowed(address(this), address(aTokenCollateral), liquidator, borrower, repayAmount);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.LIQUIDATE_CONTROLLER_REJECTION, allowed);
        }

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

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

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

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

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

        /* We calculate the number of collateral tokens that will be seized */
        (uint amountSeizeError, uint seizeTokens) = controller.liquidateCalculateSeizeTokens(address(this), address(aTokenCollateral), repayAmount);
        if (amountSeizeError != 0) {
            return failOpaque(Error.CONTROLLER_CALCULATION_ERROR, FailureInfo.LIQUIDATE_CONTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED, amountSeizeError);
        }

        /* Fail if seizeTokens > borrower collateral token balance */
        if (seizeTokens > aTokenCollateral.balanceOf(borrower)) {
            return fail(Error.TOKEN_INSUFFICIENT_BALANCE, FailureInfo.LIQUIDATE_SEIZE_TOO_MUCH);
        }

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

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

        /* We emit a LiquidateBorrow event */
        emit LiquidateBorrow(liquidator, borrower, repayAmount, address(aTokenCollateral), seizeTokens);

        /* We call the defense hook */
        controller.liquidateBorrowVerify(address(this), address(aTokenCollateral), liquidator, borrower, repayAmount, seizeTokens);

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Transfers collateral tokens (this market) to the liquidator.
     * @dev Will fail unless called by another aToken during the process of liquidation.
     *  Its absolutely critical to use msg.sender as the borrowed aToken and not a parameter.
     * @param liquidator The account receiving seized collateral
     * @param borrower The account having collateral seized
     * @param seizeTokens The number of aTokens 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) {
        /* Fail if seize not allowed */
        uint allowed = controller.seizeAllowed(address(this), msg.sender, liquidator, borrower, seizeTokens);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.LIQUIDATE_SEIZE_CONTROLLER_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 */
        controller.seizeVerify(address(this), msg.sender, 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)
      *
      * TODO: Should we add a second arg to verify, like a checksum of `newAdmin` address?
      */
    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 controller for the market
      * @dev Admin function to set a new controller
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _setController(ControllerInterface newController) public returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_CONTROLLER_OWNER_CHECK);
        }

        ControllerInterface oldController = controller;
        
        // Ensure invoke controller.isController() returns true
        require(newController.isController(), "marker method returned false");

        // Set market's controller to newController
        controller = newController;

        // Emit NewControllerr(oldController, newController)
        emit NewController(oldController, newController);

        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()) {
            // TODO: static_assert + no error code?
            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 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) {
        Error err;
        // 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()) {
            // TODO: static_assert + no error code?
            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)
        // TODO: I'm following the spec literally here but I think we should we just use SafeMath instead and fail on an error (which would be underflow)
        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;

        // invoke doTransferOut(reduceAmount, admin)
        err = doTransferOut(admin, reduceAmount);
        // we revert on the failure of this command
        require(err == Error.NO_ERROR, "reduce reserves transfer out failed");

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

    function _setInterestRateModel_init(InterestRateModel newInterestRateModel) public returns (uint) {
        if (msg.sender != admin) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_INTEREST_RATE_MODEL_FRESH_CHECK);
        }
        // _setInterestRateModelFresh emits interest-rate-model-update-specific logs on errors, so we don't need to.
        interestRateModel = newInterestRateModel;
        _setInterestRateModelFresh(interestRateModel);
    }
    
    /**
     * @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()) {
            // TODO: static_assert + no error code?
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_INTEREST_RATE_MODEL_FRESH_CHECK);
        }

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

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

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

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

        return uint(Error.NO_ERROR);
    }

    
    /*** Safe Token ***/

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

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

    /**
     * @dev Performs a transfer in, ideally returning an explanatory error code upon failure rather than reverting.
     *  If caller has not called `checkTransferIn`, this may revert due to insufficient balance or insufficient allowance.
     *  If caller has called `checkTransferIn` successfully, this should not revert in normal conditions.
     */
    function doTransferIn(address from, uint amount) internal returns (Error);

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



contract AErc20 is AToken {

    /**
     * @notice Underlying asset for this AToken
     */
    address public underlying;

    /*** User Interface ***/

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

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

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

    /**
     * @notice Sender repays their own borrow
     * @param repayAmount The amount to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrow(uint repayAmount) external returns (uint) {
        return repayBorrowInternal(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 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint) {
        return repayBorrowBehalfInternal(borrower, repayAmount);
    }

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

    /*** Safe Token ***/

    /**
     * @notice Gets balance of this contract in terms of the underlying
     * @dev This excludes the value of the current message, if any
     * @return The quantity of underlying tokens owned by this contract
     */
    function getCashPrior() internal view returns (uint) {
        EIP20Interface token = EIP20Interface(underlying);
        return token.balanceOf(address(this));
    }

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

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

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

        return Error.NO_ERROR;
    }

    /**
     * @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom` and returns an explanatory
     *      error code rather than reverting.  If caller has not called `checkTransferIn`, this may revert due to
     *      insufficient balance or insufficient allowance. If caller has called `checkTransferIn` prior to this call,
     *      and it returned Error.NO_ERROR, this should not revert in normal conditions.
     *
     *      Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value.
     *            See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
     */
    function doTransferIn(address from, uint amount) internal returns (Error) {
        EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying);
        bool result;

        token.transferFrom(from, address(this), amount);

        // solium-disable-next-line security/no-inline-assembly
        assembly {
            switch returndatasize()
                case 0 {                      // This is a non-standard ERC-20
                    result := not(0)          // set result to true
                }
                case 32 {                     // This is a complaint ERC-20
                    returndatacopy(0, 0, 32)
                    result := mload(0)        // Set `result = returndata` of external call
                }
                default {                     // This is an excessively non-compliant ERC-20, revert.
                    revert(0, 0)
                }
        }

        if (!result) {
            return Error.TOKEN_TRANSFER_IN_FAILED;
        }

        return Error.NO_ERROR;
    }

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

        token.transfer(to, amount);

        // solium-disable-next-line security/no-inline-assembly
        assembly {
            switch returndatasize()
                case 0 {                      // This is a non-standard ERC-20
                    result := not(0)          // set result to true
                }
                case 32 {                     // This is a complaint ERC-20
                    returndatacopy(0, 0, 32)
                    result := mload(0)        // Set `result = returndata` of external call
                }
                default {                     // This is an excessively non-compliant ERC-20, revert.
                    revert(0, 0)
                }
        }

        if (!result) {
            return Error.TOKEN_TRANSFER_OUT_FAILED;
        }

        return Error.NO_ERROR;
    }
    
    function _setUnderlying(address newunderlying) public returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_CONTROLLER_OWNER_CHECK);
        }

        // Set market's controller to newController
        underlying = newunderlying;
        EIP20Interface(underlying).totalSupply(); // Sanity check the underlying
        
        return uint(Error.NO_ERROR);
    } 
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"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":"aTokenCollateral","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 ControllerInterface","name":"oldController","type":"address"},{"indexed":false,"internalType":"contract ControllerInterface","name":"newController","type":"address"}],"name":"NewController","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":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"reduceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesReduced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ControllerInterface","name":"newController","type":"address"}],"name":"_setController","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":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel_init","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":false,"inputs":[{"internalType":"address","name":"newunderlying","type":"address"}],"name":"_setUnderlying","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":"controller","outputs":[{"internalType":"contract ControllerInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"getCash_pub","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialExchangeRateMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isAToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"},{"internalType":"contract AToken","name":"aTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrowBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"supplyRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]

60806040526001600055600480546001600160a01b0319163317905565b5e620f48000600855620000386001600160e01b03620000b916565b600a55670de0b6b3a7640000600b5560408051808201909152600e8082526d20b93a32b6902aa9a21021b7b4b760911b60209092019182526200007e91600191620000be565b5060408051808201909152600580825264615553444360d81b6020909201918252620000ad91600291620000be565b50600860035562000160565b435b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200010157805160ff191683800117855562000131565b8280016001018555821562000131579182015b828111156200013157825182559160200191906001019062000114565b506200013f92915062000143565b5090565b620000bb91905b808211156200013f57600081556001016200014a565b614acd80620001706000396000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c80638f840ddd11610182578063c37f68e2116100e9578063f2b3abbd116100a2578063f77c47911161007c578063f77c4791146107c3578063f851a440146107cb578063f8f9da28146107d3578063fca7820b146107db576102bb565b8063f2b3abbd1461075f578063f3fdb15a14610785578063f5e3c4621461078d576102bb565b8063c37f68e21461067d578063c5ebeaec146106c9578063db006a75146106e6578063dd62ed3e14610703578063e9c714f214610731578063ef7c74e414610739576102bb565b8063a9059cbb1161013b578063a9059cbb146105dd578063aa5af0fd14610609578063ae9d70b014610611578063b2a02ff114610619578063b71d1a0c1461064f578063bd6d894d14610675576102bb565b80638f840ddd1461057a57806394c393fc1461058257806395d89b411461058a57806395dd919314610592578063a0712d68146105b8578063a6afed95146105d5576102bb565b80633af9e669116102265780636f307dc3116101df5780636f307dc31461050157806370a082311461050957806373acee981461052f57806377f7ae19146104c457806383de424e14610537578063852a12e31461055d576102bb565b80633af9e6691461049e5780633b1d21a2146104c457806347bd3718146104cc578063601a0bf1146104d4578063675d972c146104f15780636c540baf146104f9576102bb565b8063182df0f511610278578063182df0f5146103e257806323b872dd146103ea5780632608f81814610420578063267822471461044c5780632d75635914610470578063313ce56714610496576102bb565b806306fdde03146102c0578063095ea7b31461033d5780630e7527021461037d578063173b9904146103ac57806317bfdfbc146103b457806318160ddd146103da575b600080fd5b6102c86107f8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103025781810151838201526020016102ea565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610885565b604080519115158252519081900360200190f35b61039a6004803603602081101561039357600080fd5b50356108f2565b60408051918252519081900360200190f35b61039a610905565b61039a600480360360208110156103ca57600080fd5b50356001600160a01b031661090b565b61039a6109be565b61039a6109c4565b6103696004803603606081101561040057600080fd5b506001600160a01b03813581169160208101359091169060400135610a27565b61039a6004803603604081101561043657600080fd5b506001600160a01b038135169060200135610a8d565b610454610aa0565b604080516001600160a01b039092168252519081900360200190f35b61039a6004803603602081101561048657600080fd5b50356001600160a01b0316610aaf565b61039a610b02565b61039a600480360360208110156104b457600080fd5b50356001600160a01b0316610b08565b61039a610b76565b61039a610b85565b61039a600480360360208110156104ea57600080fd5b5035610b8b565b61039a610c13565b61039a610c19565b610454610c1f565b61039a6004803603602081101561051f57600080fd5b50356001600160a01b0316610c2e565b61039a610c49565b61039a6004803603602081101561054d57600080fd5b50356001600160a01b0316610cf3565b61039a6004803603602081101561057357600080fd5b5035610e3d565b61039a610e48565b610369610e4e565b6102c8610e53565b61039a600480360360208110156105a857600080fd5b50356001600160a01b0316610eab565b61039a600480360360208110156105ce57600080fd5b5035610f08565b61039a610f13565b610369600480360360408110156105f357600080fd5b506001600160a01b03813516906020013561130c565b61039a611371565b61039a611377565b61039a6004803603606081101561062f57600080fd5b506001600160a01b03813581169160208101359091169060400135611642565b61039a6004803603602081101561066557600080fd5b50356001600160a01b03166118f3565b61039a61197a565b6106a36004803603602081101561069357600080fd5b50356001600160a01b0316611a25565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61039a600480360360208110156106df57600080fd5b5035611aba565b61039a600480360360208110156106fc57600080fd5b5035611ac5565b61039a6004803603604081101561071957600080fd5b506001600160a01b0381358116916020013516611ad0565b61039a611afb565b61039a6004803603602081101561074f57600080fd5b50356001600160a01b0316611bea565b61039a6004803603602081101561077557600080fd5b50356001600160a01b0316611c9b565b610454611cd5565b61039a600480360360608110156107a357600080fd5b506001600160a01b03813581169160208101359160409091013516611ce4565b610454611cf1565b610454611d00565b61039a611d0f565b61039a600480360360208110156107f157600080fd5b5035611deb565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b505050505081565b3360008181526010602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b60006108fd82611e25565b90505b919050565b60095481565b600080546001018082558161091e610f13565b14610969576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b61097283610eab565b91505b60005481146109b8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b50919050565b600e5481565b60008060006109d1611e61565b909250905060008260038111156109e457fe5b14610a205760405162461bcd60e51b8152600401808060200182810382526035815260200180614a0c6035913960400191505060405180910390fd5b9150505b90565b6000805460010180825581610a3e33878787611f0f565b1491505b6000548114610a85576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b509392505050565b6000610a99838361221d565b9392505050565b6005546001600160a01b031681565b6004546000906001600160a01b03163314610ad757610ad0600a60416122a7565b9050610900565b600780546001600160a01b0319166001600160a01b0384811691909117918290556109b8911661230d565b60035481565b6000610b12614765565b6040518060200160405280610b2561197a565b90526001600160a01b0384166000908152600f6020526040812054919250908190610b5190849061247d565b90925090506000826003811115610b6457fe5b14610b6e57600080fd5b949350505050565b6000610b806124d1565b905090565b600c5481565b6000805460010180825581610b9e610f13565b90508015610bc457610bbc816010811115610bb557fe5b60306122a7565b925050610975565b610bcd84612551565b92505060005481146109b8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b60085481565b600a5481565b6012546001600160a01b031681565b6001600160a01b03166000908152600f602052604090205490565b6000805460010180825581610c5c610f13565b14610ca7576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b600c5491506000548114610cef576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5090565b6004546000906001600160a01b03163314610d1457610ad06001603f6122a7565b60065460408051634e1647fb60e01b815290516001600160a01b0392831692851691634e1647fb916004808301926020929190829003018186803b158015610d5b57600080fd5b505afa158015610d6f573d6000803e3d6000fd5b505050506040513d6020811015610d8557600080fd5b5051610dd8576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517ff9b6a28700579d5c8fab50f0ac2dcaa52109b85c369c4f511fcc873330ab6cbb9281900390910190a160009392505050565b60006108fd826126cf565b600d5481565b600181565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561087d5780601f106108525761010080835404028352916020019161087d565b6000806000610eb98461270c565b90925090506000826003811115610ecc57fe5b14610a995760405162461bcd60e51b81526004018080602001828103825260378152602001806148e06037913960400191505060405180910390fd5b60006108fd826127c0565b6000610f1d614778565b6007546001600160a01b03166315f24053610f366124d1565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b158015610f7d57600080fd5b505afa158015610f91573d6000803e3d6000fd5b505050506040513d6040811015610fa757600080fd5b50805160209182015160408401819052918301526601c6bf526340001015611016576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b602081015115611039576110316005600283602001516127fb565b915050610a24565b611041612861565b60608201819052600a546110559190612865565b608083018190528282600381111561106957fe5b600381111561107457fe5b905250600090508151600381111561108857fe5b1461108f57fe5b6110af604051806020016040528083604001518152508260800151612888565b60a08301819052828260038111156110c357fe5b60038111156110ce57fe5b90525060009050815160038111156110e257fe5b146111035761103160096006836000015160038111156110fe57fe5b6127fb565b6111138160a00151600c5461247d565b60c083018190528282600381111561112757fe5b600381111561113257fe5b905250600090508151600381111561114657fe5b146111625761103160096001836000015160038111156110fe57fe5b6111728160c00151600c546128f0565b60e083018190528282600381111561118657fe5b600381111561119157fe5b90525060009050815160038111156111a557fe5b146111c15761103160096004836000015160038111156110fe57fe5b6111e260405180602001604052806009548152508260c00151600d54612916565b6101008301819052828260038111156111f757fe5b600381111561120257fe5b905250600090508151600381111561121657fe5b146112325761103160096005836000015160038111156110fe57fe5b6112458160a00151600b54600b54612916565b61012083018190528282600381111561125a57fe5b600381111561126557fe5b905250600090508151600381111561127957fe5b146112955761103160096003836000015160038111156110fe57fe5b606080820151600a55610120820151600b81905560e0830151600c819055610100840151600d5560c08401516040805191825260208201939093528083019190915290517f875352fb3fadeb8c0be7cbbe8ff761b308fa7033470cd0287f02f3436fd76cb9929181900390910190a1600091505090565b600080546001018082558161132333338787611f0f565b1491505b600054811461136a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5092915050565b600b5481565b6000806113826109c4565b60075490915060009081906001600160a01b03166315f240536113a36124d1565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b1580156113ea57600080fd5b505afa1580156113fe573d6000803e3d6000fd5b505050506040513d604081101561141457600080fd5b5080516020909101519092509050811561145f5760405162461bcd60e51b815260040180806020018281038252603181526020018061497f6031913960400191505060405180910390fd5b6000611469614765565b611483604051806020016040528087815250600e54612888565b9092509050600082600381111561149657fe5b146114d25760405162461bcd60e51b81526004018080602001828103825260318152602001806149176031913960400191505060405180910390fd5b60006114dc614765565b6114e8600c5484612972565b909250905060008260038111156114fb57fe5b146115375760405162461bcd60e51b815260040180806020018281038252603181526020018061485b6031913960400191505060405180910390fd5b6000611541614765565b6115716040518060200160405280670de0b6b3a764000081525060405180602001604052806009548152506129d1565b9092509050600082600381111561158457fe5b146115c05760405162461bcd60e51b815260040180806020018281038252603c8152602001806149d0603c913960400191505060405180910390fd5b60006115ca614765565b6115e360405180602001604052808b8152508487612a0b565b909250905060008260038111156115f657fe5b146116325760405162461bcd60e51b81526004018080602001828103825260318152602001806148af6031913960400191505060405180910390fd5b519a505050505050505050505090565b600080546001018082556006546040805163d02f735160e01b81523060048201523360248201526001600160a01b03888116604483015287811660648301526084820187905291518593929092169163d02f73519160a48082019260209290919082900301818787803b1580156116b857600080fd5b505af11580156116cc573d6000803e3d6000fd5b505050506040513d60208110156116e257600080fd5b505190508015611701576116f96003601b836127fb565b925050610a42565b856001600160a01b0316856001600160a01b03161415611727576116f96006601c6122a7565b6001600160a01b0385166000908152600f60205260408120548190819061174e9088612865565b9093509150600083600381111561176157fe5b14611784576117796009601a8560038111156110fe57fe5b955050505050610a42565b6001600160a01b0389166000908152600f60205260409020546117a790886128f0565b909350905060008360038111156117ba57fe5b146117d257611779600960198560038111156110fe57fe5b6001600160a01b038089166000818152600f60209081526040808320879055938d168083529184902085905583518b8152935191936000805160206149b0833981519152929081900390910190a360065460408051636d35bf9160e01b81523060048201523360248201526001600160a01b038c811660448301528b81166064830152608482018b905291519190921691636d35bf919160a480830192600092919082900301818387803b15801561188957600080fd5b505af115801561189d573d6000803e3d6000fd5b50600092506118aa915050565b9550505050506000548114610a85576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b0316331461191457610ad0600160456122a7565b600580546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000610a99565b600080546001018082558161198d610f13565b146119d8576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b6119e06109c4565b91506000548114610cef576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6001600160a01b0381166000908152600f6020526040812054819081908190818080611a508961270c565b935090506000816003811115611a6257fe5b14611a805760095b975060009650869550859450611ab39350505050565b611a88611e61565b925090506000816003811115611a9a57fe5b14611aa6576009611a6a565b5060009650919450925090505b9193509193565b60006108fd82612a55565b60006108fd82612a90565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b6005546000906001600160a01b031633141580611b16575033155b15611b2e57611b27600160006122a7565b9050610a24565b60048054600580546001600160a01b038082166001600160a01b031980861682179687905590921690925560408051938316808552949092166020840152815190927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600554604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6004546000906001600160a01b03163314611c0b57610ad06001603f6122a7565b601280546001600160a01b0319166001600160a01b038481169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015611c6757600080fd5b505afa158015611c7b573d6000803e3d6000fd5b505050506040513d6020811015611c9157600080fd5b50600090506108fd565b600080611ca6610f13565b90508015611ccc57611cc4816010811115611cbd57fe5b60406122a7565b915050610900565b610a998361230d565b6007546001600160a01b031681565b6000610b6e848484612ac6565b6006546001600160a01b031681565b6004546001600160a01b031681565b600754600090819081906001600160a01b03166315f24053611d2f6124d1565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b158015611d7657600080fd5b505afa158015611d8a573d6000803e3d6000fd5b505050506040513d6040811015611da057600080fd5b50805160209091015190925090508115610a205760405162461bcd60e51b81526004018080602001828103825260378152602001806149486037913960400191505060405180910390fd5b6000805460010180825581611dfe610f13565b90508015611e1c57610bbc816010811115611e1557fe5b60466122a7565b610bcd84612bce565b6000805460010180825581611e38610f13565b90508015611e5657610bbc816010811115611e4f57fe5b60366122a7565b610bcd333386612c71565b600080600e5460001415611e7c575050600854600090611f0b565b6000611e866124d1565b90506000611e92614765565b6000611ea384600c54600d546130c4565b935090506000816003811115611eb557fe5b14611ec957945060009350611f0b92505050565b611ed583600e54613102565b925090506000816003811115611ee757fe5b14611efb57945060009350611f0b92505050565b5051600094509250611f0b915050565b9091565b600654604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b158015611f7457600080fd5b505af1158015611f88573d6000803e3d6000fd5b505050506040513d6020811015611f9e57600080fd5b505190508015611fbd57611fb56003604a836127fb565b915050610b6e565b836001600160a01b0316856001600160a01b03161415611fe357611fb56002604b6122a7565b60006001600160a01b038781169087161415612002575060001961202a565b506001600160a01b038086166000908152601060209081526040808320938a16835292905220545b60008060008061203a8589612865565b9094509250600084600381111561204d57fe5b1461206b5761205e6009604b6122a7565b9650505050505050610b6e565b6001600160a01b038a166000908152600f602052604090205461208e9089612865565b909450915060008460038111156120a157fe5b146120b25761205e6009604c6122a7565b6001600160a01b0389166000908152600f60205260409020546120d590896128f0565b909450905060008460038111156120e857fe5b146120f95761205e6009604d6122a7565b6001600160a01b03808b166000908152600f6020526040808220859055918b168152208190556000198514612151576001600160a01b03808b166000908152601060209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206149b08339815191528a6040518082815260200191505060405180910390a36006546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b1580156121ed57600080fd5b505af1158015612201573d6000803e3d6000fd5b506000925061220e915050565b9b9a5050505050505050505050565b6000805460010180825581612230610f13565b905080156122565761224e81601081111561224757fe5b60356122a7565b925050611327565b612261338686612c71565b925050600054811461136a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08360108111156122d657fe5b83604d8111156122e257fe5b604080519283526020830191909152600082820152519081900360600190a1826010811115610a9957fe5b60045460009081906001600160a01b0316331461233057611cc4600160426122a7565b612338612861565b600a541461234c57611cc4600a60416122a7565b600760009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561239d57600080fd5b505afa1580156123b1573d6000803e3d6000fd5b505050506040513d60208110156123c757600080fd5b505161241a576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000610a99565b600080600061248a614765565b6124948686612888565b909250905060008260038111156124a757fe5b146124b857509150600090506124ca565b60006124c3826131b2565b9350935050505b9250929050565b601254604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561251f57600080fd5b505afa158015612533573d6000803e3d6000fd5b505050506040513d602081101561254957600080fd5b505191505090565b600454600090819081906001600160a01b0316331461257f57612576600160316122a7565b92505050610900565b612587612861565b600a541461259b57612576600a60336122a7565b836125a46124d1565b10156125b657612576600e60326122a7565b600d548411156125cc57612576600260346122a7565b50600d54838103908111156126125760405162461bcd60e51b8152600401808060200182810382526024815260200180614a756024913960400191505060405180910390fd5b600d81905560045461262d906001600160a01b0316856131c1565b9150600082601081111561263d57fe5b146126795760405162461bcd60e51b815260040180806020018281038252602381526020018061488c6023913960400191505060405180910390fd5b600454604080516001600160a01b03909216825260208201869052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e9181900360600190a16000949350505050565b60008054600101808255816126e2610f13565b9050801561270057610bbc8160108111156126f957fe5b60276122a7565b610bcd3360008661327d565b6001600160a01b0381166000908152601160205260408120805482918291829182916127435750600094508493506127bb92505050565b6127538160000154600b54613786565b9094509250600084600381111561276657fe5b1461277b5750919350600092506127bb915050565b6127898382600101546137c5565b9094509150600084600381111561279c57fe5b146127b15750919350600092506127bb915050565b5060009450925050505b915091565b60008054600101808255816127d3610f13565b905080156127f157610bbc8160108111156127ea57fe5b601e6122a7565b610bcd33856137f0565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa084601081111561282a57fe5b84604d81111561283657fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115610b6e57fe5b4390565b60008083831161287c5750600090508183036124ca565b506003905060006124ca565b6000612892614765565b6000806128a3866000015186613786565b909250905060008260038111156128b657fe5b146128d5575060408051602081019091526000815290925090506124ca565b60408051602081019091529081526000969095509350505050565b600080838301848110612908576000925090506124ca565b5060029150600090506124ca565b6000806000612923614765565b61292d8787612888565b9092509050600082600381111561294057fe5b14612951575091506000905061296a565b61296361295d826131b2565b866128f0565b9350935050505b935093915050565b600061297c614765565b600080612991670de0b6b3a764000087613786565b909250905060008260038111156129a457fe5b146129c3575060408051602081019091526000815290925090506124ca565b6124c3818660000151613102565b60006129db614765565b6000806129f086600001518660000151612865565b60408051602081019091529081529097909650945050505050565b6000612a15614765565b6000612a1f614765565b612a298787613c38565b90925090506000826003811115612a3c57fe5b14612a4b57909250905061296a565b6129638186613c38565b6000805460010180825581612a68610f13565b90508015612a8657610bbc816010811115612a7f57fe5b60086122a7565b610bcd3385613d21565b6000805460010180825581612aa3610f13565b90508015612aba57610bbc8160108111156126f957fe5b610bcd3385600061327d565b6000805460010180825581612ad9610f13565b90508015612af7576116f9816010811115612af057fe5b600f6122a7565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612b3257600080fd5b505af1158015612b46573d6000803e3d6000fd5b505050506040513d6020811015612b5c57600080fd5b505190508015612b7c576116f9816010811115612b7557fe5b60106122a7565b612b8833878787614087565b9250506000548114610a85576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b03163314612bef57610ad0600160476122a7565b612bf7612861565b600a5414612c0b57610ad0600a60486122a7565b670de0b6b3a7640000821115612c2757610ad0600260496122a7565b6009805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000610a99565b60065460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849316916324008a6291608480830192602092919082900301818787803b158015612cd657600080fd5b505af1158015612cea573d6000803e3d6000fd5b505050506040513d6020811015612d0057600080fd5b505190508015612d1f57612d1760036038836127fb565b915050610a99565b612d27612861565b600a5414612d3b57612d17600a60396122a7565b612d436147d2565b6001600160a01b0385166000908152601160205260409020600101546060820152612d6d8561270c565b6080830181905260208301826003811115612d8457fe5b6003811115612d8f57fe5b9052506000905081602001516003811115612da657fe5b14612dcb57612dc260096037836020015160038111156110fe57fe5b92505050610a99565b600019841415612de45760808101516040820152612dec565b604081018490525b612dfa868260400151614563565b81906010811115612e0757fe5b90816010811115612e1457fe5b905250600081516010811115612e2657fe5b14612e38578051612dc290603c6122a7565b612e4a81608001518260400151612865565b60a0830181905260208301826003811115612e6157fe5b6003811115612e6c57fe5b9052506000905081602001516003811115612e8357fe5b14612e9f57612dc26009603a836020015160038111156110fe57fe5b612eaf600c548260400151612865565b60c0830181905260208301826003811115612ec657fe5b6003811115612ed157fe5b9052506000905081602001516003811115612ee857fe5b14612f0457612dc26009603b836020015160038111156110fe57fe5b612f12868260400151614697565b81906010811115612f1f57fe5b90816010811115612f2c57fe5b905250600081516010811115612f3e57fe5b14612f90576040805162461bcd60e51b815260206004820152601f60248201527f726570617920626f72726f77207472616e7366657220696e206661696c656400604482015290519081900360640190fd5b60a080820180516001600160a01b03808916600081815260116020908152604091829020948555600b5460019095019490945560c0870151600c8190558188015195518251948e16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160065460408083015160608401518251631ededc9160e01b81523060048201526001600160a01b038b811660248301528a81166044830152606482019390935260848101919091529151921691631ededc919160a48082019260009290919082900301818387803b15801561309957600080fd5b505af11580156130ad573d6000803e3d6000fd5b50600092506130ba915050565b9695505050505050565b6000806000806130d487876128f0565b909250905060008260038111156130e757fe5b146130f8575091506000905061296a565b6129638186612865565b600061310c614765565b60008061312186670de0b6b3a7640000613786565b9092509050600082600381111561313457fe5b14613153575060408051602081019091526000815290925090506124ca565b60008061316083886137c5565b9092509050600082600381111561317357fe5b14613195575060408051602081019091526000815290945092506124ca915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b6012546040805163a9059cbb60e01b81526001600160a01b03858116600483015260248201859052915160009392909216918391839163a9059cbb91604480820192869290919082900301818387803b15801561321d57600080fd5b505af1158015613231573d6000803e3d6000fd5b505050503d6000811461324b576020811461325557600080fd5b6000199150613261565b60206000803e60005191505b5080613272576010925050506108ec565b506000949350505050565b600082158061328a575081155b6132c55760405162461bcd60e51b8152600401808060200182810382526034815260200180614a416034913960400191505060405180910390fd5b6132cd6147d2565b6132d5611e61565b60408301819052602083018260038111156132ec57fe5b60038111156132f757fe5b905250600090508160200151600381111561330e57fe5b1461332a57612d176009602b836020015160038111156110fe57fe5b83156133ab576060810184905260408051602081018252908201518152613351908561247d565b608083018190526020830182600381111561336857fe5b600381111561337357fe5b905250600090508160200151600381111561338a57fe5b146133a657612d1760096029836020015160038111156110fe57fe5b613424565b6133c7836040518060200160405280846040015181525061474e565b60608301819052602083018260038111156133de57fe5b60038111156133e957fe5b905250600090508160200151600381111561340057fe5b1461341c57612d176009602a836020015160038111156110fe57fe5b608081018390525b60065460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b15801561348957600080fd5b505af115801561349d573d6000803e3d6000fd5b505050506040513d60208110156134b357600080fd5b5051905080156134ca57612dc260036028836127fb565b6134d2612861565b600a54146134e657612dc2600a602c6122a7565b6134f6600e548360600151612865565b60a084018190526020840182600381111561350d57fe5b600381111561351857fe5b905250600090508260200151600381111561352f57fe5b1461354b57612dc26009602e846020015160038111156110fe57fe5b6001600160a01b0386166000908152600f602052604090205460608301516135739190612865565b60c084018190526020840182600381111561358a57fe5b600381111561359557fe5b90525060009050826020015160038111156135ac57fe5b146135c857612dc26009602d846020015160038111156110fe57fe5b81608001516135d56124d1565b10156135e757612dc2600e602f6122a7565b6135f58683608001516131c1565b8290601081111561360257fe5b9081601081111561360f57fe5b90525060008251601081111561362157fe5b14613673576040805162461bcd60e51b815260206004820152601a60248201527f72656465656d207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b60a0820151600e5560c08201516001600160a01b0387166000818152600f60209081526040918290209390935560608501518151908152905130936000805160206149b0833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160065460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b15801561309957600080fd5b60008083613799575060009050806124ca565b838302838582816137a657fe5b04146137ba575060029150600090506124ca565b6000925090506124ca565b600080826137d957506001905060006124ca565b60008385816137e457fe5b04915091509250929050565b60065460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384931691634ef4c3e191606480830192602092919082900301818787803b15801561384d57600080fd5b505af1158015613861573d6000803e3d6000fd5b505050506040513d602081101561387757600080fd5b5051905080156138965761388e6003601f836127fb565b9150506108ec565b61389e612861565b600a54146138b25761388e600a60226122a7565b6138ba614810565b6138c48585614563565b819060108111156138d157fe5b908160108111156138de57fe5b9052506000815160108111156138f057fe5b1461390b5780516139029060266122a7565b925050506108ec565b613913611e61565b604083018190526020830182600381111561392a57fe5b600381111561393557fe5b905250600090508160200151600381111561394c57fe5b146139685761390260096021836020015160038111156110fe57fe5b613984846040518060200160405280846040015181525061474e565b606083018190526020830182600381111561399b57fe5b60038111156139a657fe5b90525060009050816020015160038111156139bd57fe5b146139d95761390260096020836020015160038111156110fe57fe5b6139e9600e5482606001516128f0565b6080830181905260208301826003811115613a0057fe5b6003811115613a0b57fe5b9052506000905081602001516003811115613a2257fe5b14613a3e5761390260096024836020015160038111156110fe57fe5b6001600160a01b0385166000908152600f60205260409020546060820151613a6691906128f0565b60a0830181905260208301826003811115613a7d57fe5b6003811115613a8857fe5b9052506000905081602001516003811115613a9f57fe5b14613abb5761390260096023836020015160038111156110fe57fe5b613ac58585614697565b81906010811115613ad257fe5b90816010811115613adf57fe5b905250600081516010811115613af157fe5b14613b035780516139029060256122a7565b6080810151600e5560a08101516001600160a01b0386166000818152600f602090815260409182902093909355606080850151825193845293830188905282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0387169130916000805160206149b08339815191529181900360200190a36006546060820151604080516341c728b960e01b81523060048201526001600160a01b038981166024830152604482018990526064820193909352905191909216916341c728b991608480830192600092919082900301818387803b158015613c0e57600080fd5b505af1158015613c22573d6000803e3d6000fd5b5060009250613c2f915050565b95945050505050565b6000613c42614765565b600080613c5786600001518660000151613786565b90925090506000826003811115613c6a57fe5b14613c89575060408051602081019091526000815290925090506124ca565b600080613c9e6706f05b59d3b20000846128f0565b90925090506000826003811115613cb157fe5b14613cd3575060408051602081019091526000815290945092506124ca915050565b600080613ce883670de0b6b3a76400006137c5565b90925090506000826003811115613cfb57fe5b14613d0257fe5b604080516020810190915290815260009a909950975050505050505050565b6006546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b158015613d7e57600080fd5b505af1158015613d92573d6000803e3d6000fd5b505050506040513d6020811015613da857600080fd5b505190508015613dbf5761388e6003600e836127fb565b613dc7612861565b600a5414613dda5761388e600a806122a7565b82613de36124d1565b1015613df55761388e600e60096122a7565b613dfd61482a565b613e068561270c565b6040830181905260208301826003811115613e1d57fe5b6003811115613e2857fe5b9052506000905081602001516003811115613e3f57fe5b14613e5b5761390260096007836020015160038111156110fe57fe5b613e698160400151856128f0565b6060830181905260208301826003811115613e8057fe5b6003811115613e8b57fe5b9052506000905081602001516003811115613ea257fe5b14613ebe576139026009600c836020015160038111156110fe57fe5b613eca600c54856128f0565b6080830181905260208301826003811115613ee157fe5b6003811115613eec57fe5b9052506000905081602001516003811115613f0357fe5b14613f1f576139026009600b836020015160038111156110fe57fe5b613f2985856131c1565b81906010811115613f3657fe5b90816010811115613f4357fe5b905250600081516010811115613f5557fe5b14613fa7576040805162461bcd60e51b815260206004820152601a60248201527f626f72726f77207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b606080820180516001600160a01b038816600081815260116020908152604091829020938455600b54600190940193909355608080870151600c819055945182519384529383018a9052828201939093529381019290925291517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab80929181900390910190a160065460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b158015613c0e57600080fd5b60065460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384931691635fc7e71e9160a480830192602092919082900301818787803b1580156140f457600080fd5b505af1158015614108573d6000803e3d6000fd5b505050506040513d602081101561411e57600080fd5b50519050801561413557611fb560036012836127fb565b61413d612861565b600a541461415157611fb5600a60166122a7565b614159612861565b836001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561419257600080fd5b505afa1580156141a6573d6000803e3d6000fd5b505050506040513d60208110156141bc57600080fd5b5051146141cf57611fb5600a60116122a7565b856001600160a01b0316856001600160a01b031614156141f557611fb5600660176122a7565b8361420657611fb5600760156122a7565b60001984141561421c57611fb5600760146122a7565b6006546040805163c488847b60e01b81523060048201526001600160a01b038681166024830152604482018890528251600094859492169263c488847b926064808301939192829003018186803b15801561427657600080fd5b505afa15801561428a573d6000803e3d6000fd5b505050506040513d60408110156142a057600080fd5b508051602090910151909250905081156142cb576142c160046013846127fb565b9350505050610b6e565b846001600160a01b03166370a08231886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561432157600080fd5b505afa158015614335573d6000803e3d6000fd5b505050506040513d602081101561434b57600080fd5b5051811115614360576142c1600d601d6122a7565b600061436d898989612c71565b905080156143965761438b81601081111561438457fe5b60186122a7565b945050505050610b6e565b6040805163b2a02ff160e01b81526001600160a01b038b811660048301528a8116602483015260448201859052915160009289169163b2a02ff191606480830192602092919082900301818787803b1580156143f157600080fd5b505af1158015614405573d6000803e3d6000fd5b505050506040513d602081101561441b57600080fd5b505190508015614469576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808d168252808c1660208301528183018b9052891660608201526080810185905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600654604080516347ef3b3b60e01b81523060048201526001600160a01b038a811660248301528d811660448301528c81166064830152608482018c905260a48201879052915191909216916347ef3b3b9160c480830192600092919082900301818387803b15801561453457600080fd5b505af1158015614548573d6000803e3d6000fd5b5060009250614555915050565b9a9950505050505050505050565b60125460408051636eb1769f60e11b81526001600160a01b038581166004830152306024830152915160009392909216918491839163dd62ed3e91604480820192602092909190829003018186803b1580156145be57600080fd5b505afa1580156145d2573d6000803e3d6000fd5b505050506040513d60208110156145e857600080fd5b505110156145fa57600c9150506108ec565b82816001600160a01b03166370a08231866040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561465157600080fd5b505afa158015614665573d6000803e3d6000fd5b505050506040513d602081101561467b57600080fd5b5051101561468d57600d9150506108ec565b5060009392505050565b601254604080516323b872dd60e01b81526001600160a01b0385811660048301523060248301526044820185905291516000939290921691839183916323b872dd91606480820192869290919082900301818387803b1580156146f957600080fd5b505af115801561470d573d6000803e3d6000fd5b505050503d60008114614727576020811461473157600080fd5b600019915061473d565b60206000803e60005191505b508061327257600f925050506108ec565b600080600061475b614765565b6124948686612972565b6040518060200160405280600081525090565b6040805161014081019091528060008152602001600081526020016000815260200160008152602001600081526020016147b0614765565b8152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160c08101909152806000815260200160006147b0565b6040805160a08101909152806000815260200160008152602001600081526020016000815260200160008152509056fe737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7773506572206661696c6564726564756365207265736572766573207472616e73666572206f7574206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720737570706c7952617465206661696c6564626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720756e6465726c79696e67206661696c6564626f72726f7752617465506572426c6f636b3a20696e746572657374526174654d6f64656c2e626f72726f7752617465206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7752617465206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef737570706c7952617465506572426c6f636b3a2063616c63756c6174696e67206f6e654d696e757352657365727665466163746f72206661696c656465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65646f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a72315820b7c433149c60a02dd87599195d49df693dd32d50dfe1f5b802ec551c9ec2f08364736f6c63430005100032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c80638f840ddd11610182578063c37f68e2116100e9578063f2b3abbd116100a2578063f77c47911161007c578063f77c4791146107c3578063f851a440146107cb578063f8f9da28146107d3578063fca7820b146107db576102bb565b8063f2b3abbd1461075f578063f3fdb15a14610785578063f5e3c4621461078d576102bb565b8063c37f68e21461067d578063c5ebeaec146106c9578063db006a75146106e6578063dd62ed3e14610703578063e9c714f214610731578063ef7c74e414610739576102bb565b8063a9059cbb1161013b578063a9059cbb146105dd578063aa5af0fd14610609578063ae9d70b014610611578063b2a02ff114610619578063b71d1a0c1461064f578063bd6d894d14610675576102bb565b80638f840ddd1461057a57806394c393fc1461058257806395d89b411461058a57806395dd919314610592578063a0712d68146105b8578063a6afed95146105d5576102bb565b80633af9e669116102265780636f307dc3116101df5780636f307dc31461050157806370a082311461050957806373acee981461052f57806377f7ae19146104c457806383de424e14610537578063852a12e31461055d576102bb565b80633af9e6691461049e5780633b1d21a2146104c457806347bd3718146104cc578063601a0bf1146104d4578063675d972c146104f15780636c540baf146104f9576102bb565b8063182df0f511610278578063182df0f5146103e257806323b872dd146103ea5780632608f81814610420578063267822471461044c5780632d75635914610470578063313ce56714610496576102bb565b806306fdde03146102c0578063095ea7b31461033d5780630e7527021461037d578063173b9904146103ac57806317bfdfbc146103b457806318160ddd146103da575b600080fd5b6102c86107f8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103025781810151838201526020016102ea565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610885565b604080519115158252519081900360200190f35b61039a6004803603602081101561039357600080fd5b50356108f2565b60408051918252519081900360200190f35b61039a610905565b61039a600480360360208110156103ca57600080fd5b50356001600160a01b031661090b565b61039a6109be565b61039a6109c4565b6103696004803603606081101561040057600080fd5b506001600160a01b03813581169160208101359091169060400135610a27565b61039a6004803603604081101561043657600080fd5b506001600160a01b038135169060200135610a8d565b610454610aa0565b604080516001600160a01b039092168252519081900360200190f35b61039a6004803603602081101561048657600080fd5b50356001600160a01b0316610aaf565b61039a610b02565b61039a600480360360208110156104b457600080fd5b50356001600160a01b0316610b08565b61039a610b76565b61039a610b85565b61039a600480360360208110156104ea57600080fd5b5035610b8b565b61039a610c13565b61039a610c19565b610454610c1f565b61039a6004803603602081101561051f57600080fd5b50356001600160a01b0316610c2e565b61039a610c49565b61039a6004803603602081101561054d57600080fd5b50356001600160a01b0316610cf3565b61039a6004803603602081101561057357600080fd5b5035610e3d565b61039a610e48565b610369610e4e565b6102c8610e53565b61039a600480360360208110156105a857600080fd5b50356001600160a01b0316610eab565b61039a600480360360208110156105ce57600080fd5b5035610f08565b61039a610f13565b610369600480360360408110156105f357600080fd5b506001600160a01b03813516906020013561130c565b61039a611371565b61039a611377565b61039a6004803603606081101561062f57600080fd5b506001600160a01b03813581169160208101359091169060400135611642565b61039a6004803603602081101561066557600080fd5b50356001600160a01b03166118f3565b61039a61197a565b6106a36004803603602081101561069357600080fd5b50356001600160a01b0316611a25565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61039a600480360360208110156106df57600080fd5b5035611aba565b61039a600480360360208110156106fc57600080fd5b5035611ac5565b61039a6004803603604081101561071957600080fd5b506001600160a01b0381358116916020013516611ad0565b61039a611afb565b61039a6004803603602081101561074f57600080fd5b50356001600160a01b0316611bea565b61039a6004803603602081101561077557600080fd5b50356001600160a01b0316611c9b565b610454611cd5565b61039a600480360360608110156107a357600080fd5b506001600160a01b03813581169160208101359160409091013516611ce4565b610454611cf1565b610454611d00565b61039a611d0f565b61039a600480360360208110156107f157600080fd5b5035611deb565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b505050505081565b3360008181526010602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b60006108fd82611e25565b90505b919050565b60095481565b600080546001018082558161091e610f13565b14610969576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b61097283610eab565b91505b60005481146109b8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b50919050565b600e5481565b60008060006109d1611e61565b909250905060008260038111156109e457fe5b14610a205760405162461bcd60e51b8152600401808060200182810382526035815260200180614a0c6035913960400191505060405180910390fd5b9150505b90565b6000805460010180825581610a3e33878787611f0f565b1491505b6000548114610a85576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b509392505050565b6000610a99838361221d565b9392505050565b6005546001600160a01b031681565b6004546000906001600160a01b03163314610ad757610ad0600a60416122a7565b9050610900565b600780546001600160a01b0319166001600160a01b0384811691909117918290556109b8911661230d565b60035481565b6000610b12614765565b6040518060200160405280610b2561197a565b90526001600160a01b0384166000908152600f6020526040812054919250908190610b5190849061247d565b90925090506000826003811115610b6457fe5b14610b6e57600080fd5b949350505050565b6000610b806124d1565b905090565b600c5481565b6000805460010180825581610b9e610f13565b90508015610bc457610bbc816010811115610bb557fe5b60306122a7565b925050610975565b610bcd84612551565b92505060005481146109b8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b60085481565b600a5481565b6012546001600160a01b031681565b6001600160a01b03166000908152600f602052604090205490565b6000805460010180825581610c5c610f13565b14610ca7576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b600c5491506000548114610cef576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5090565b6004546000906001600160a01b03163314610d1457610ad06001603f6122a7565b60065460408051634e1647fb60e01b815290516001600160a01b0392831692851691634e1647fb916004808301926020929190829003018186803b158015610d5b57600080fd5b505afa158015610d6f573d6000803e3d6000fd5b505050506040513d6020811015610d8557600080fd5b5051610dd8576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517ff9b6a28700579d5c8fab50f0ac2dcaa52109b85c369c4f511fcc873330ab6cbb9281900390910190a160009392505050565b60006108fd826126cf565b600d5481565b600181565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561087d5780601f106108525761010080835404028352916020019161087d565b6000806000610eb98461270c565b90925090506000826003811115610ecc57fe5b14610a995760405162461bcd60e51b81526004018080602001828103825260378152602001806148e06037913960400191505060405180910390fd5b60006108fd826127c0565b6000610f1d614778565b6007546001600160a01b03166315f24053610f366124d1565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b158015610f7d57600080fd5b505afa158015610f91573d6000803e3d6000fd5b505050506040513d6040811015610fa757600080fd5b50805160209182015160408401819052918301526601c6bf526340001015611016576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b602081015115611039576110316005600283602001516127fb565b915050610a24565b611041612861565b60608201819052600a546110559190612865565b608083018190528282600381111561106957fe5b600381111561107457fe5b905250600090508151600381111561108857fe5b1461108f57fe5b6110af604051806020016040528083604001518152508260800151612888565b60a08301819052828260038111156110c357fe5b60038111156110ce57fe5b90525060009050815160038111156110e257fe5b146111035761103160096006836000015160038111156110fe57fe5b6127fb565b6111138160a00151600c5461247d565b60c083018190528282600381111561112757fe5b600381111561113257fe5b905250600090508151600381111561114657fe5b146111625761103160096001836000015160038111156110fe57fe5b6111728160c00151600c546128f0565b60e083018190528282600381111561118657fe5b600381111561119157fe5b90525060009050815160038111156111a557fe5b146111c15761103160096004836000015160038111156110fe57fe5b6111e260405180602001604052806009548152508260c00151600d54612916565b6101008301819052828260038111156111f757fe5b600381111561120257fe5b905250600090508151600381111561121657fe5b146112325761103160096005836000015160038111156110fe57fe5b6112458160a00151600b54600b54612916565b61012083018190528282600381111561125a57fe5b600381111561126557fe5b905250600090508151600381111561127957fe5b146112955761103160096003836000015160038111156110fe57fe5b606080820151600a55610120820151600b81905560e0830151600c819055610100840151600d5560c08401516040805191825260208201939093528083019190915290517f875352fb3fadeb8c0be7cbbe8ff761b308fa7033470cd0287f02f3436fd76cb9929181900390910190a1600091505090565b600080546001018082558161132333338787611f0f565b1491505b600054811461136a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5092915050565b600b5481565b6000806113826109c4565b60075490915060009081906001600160a01b03166315f240536113a36124d1565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b1580156113ea57600080fd5b505afa1580156113fe573d6000803e3d6000fd5b505050506040513d604081101561141457600080fd5b5080516020909101519092509050811561145f5760405162461bcd60e51b815260040180806020018281038252603181526020018061497f6031913960400191505060405180910390fd5b6000611469614765565b611483604051806020016040528087815250600e54612888565b9092509050600082600381111561149657fe5b146114d25760405162461bcd60e51b81526004018080602001828103825260318152602001806149176031913960400191505060405180910390fd5b60006114dc614765565b6114e8600c5484612972565b909250905060008260038111156114fb57fe5b146115375760405162461bcd60e51b815260040180806020018281038252603181526020018061485b6031913960400191505060405180910390fd5b6000611541614765565b6115716040518060200160405280670de0b6b3a764000081525060405180602001604052806009548152506129d1565b9092509050600082600381111561158457fe5b146115c05760405162461bcd60e51b815260040180806020018281038252603c8152602001806149d0603c913960400191505060405180910390fd5b60006115ca614765565b6115e360405180602001604052808b8152508487612a0b565b909250905060008260038111156115f657fe5b146116325760405162461bcd60e51b81526004018080602001828103825260318152602001806148af6031913960400191505060405180910390fd5b519a505050505050505050505090565b600080546001018082556006546040805163d02f735160e01b81523060048201523360248201526001600160a01b03888116604483015287811660648301526084820187905291518593929092169163d02f73519160a48082019260209290919082900301818787803b1580156116b857600080fd5b505af11580156116cc573d6000803e3d6000fd5b505050506040513d60208110156116e257600080fd5b505190508015611701576116f96003601b836127fb565b925050610a42565b856001600160a01b0316856001600160a01b03161415611727576116f96006601c6122a7565b6001600160a01b0385166000908152600f60205260408120548190819061174e9088612865565b9093509150600083600381111561176157fe5b14611784576117796009601a8560038111156110fe57fe5b955050505050610a42565b6001600160a01b0389166000908152600f60205260409020546117a790886128f0565b909350905060008360038111156117ba57fe5b146117d257611779600960198560038111156110fe57fe5b6001600160a01b038089166000818152600f60209081526040808320879055938d168083529184902085905583518b8152935191936000805160206149b0833981519152929081900390910190a360065460408051636d35bf9160e01b81523060048201523360248201526001600160a01b038c811660448301528b81166064830152608482018b905291519190921691636d35bf919160a480830192600092919082900301818387803b15801561188957600080fd5b505af115801561189d573d6000803e3d6000fd5b50600092506118aa915050565b9550505050506000548114610a85576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b0316331461191457610ad0600160456122a7565b600580546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000610a99565b600080546001018082558161198d610f13565b146119d8576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b6119e06109c4565b91506000548114610cef576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6001600160a01b0381166000908152600f6020526040812054819081908190818080611a508961270c565b935090506000816003811115611a6257fe5b14611a805760095b975060009650869550859450611ab39350505050565b611a88611e61565b925090506000816003811115611a9a57fe5b14611aa6576009611a6a565b5060009650919450925090505b9193509193565b60006108fd82612a55565b60006108fd82612a90565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b6005546000906001600160a01b031633141580611b16575033155b15611b2e57611b27600160006122a7565b9050610a24565b60048054600580546001600160a01b038082166001600160a01b031980861682179687905590921690925560408051938316808552949092166020840152815190927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600554604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6004546000906001600160a01b03163314611c0b57610ad06001603f6122a7565b601280546001600160a01b0319166001600160a01b038481169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015611c6757600080fd5b505afa158015611c7b573d6000803e3d6000fd5b505050506040513d6020811015611c9157600080fd5b50600090506108fd565b600080611ca6610f13565b90508015611ccc57611cc4816010811115611cbd57fe5b60406122a7565b915050610900565b610a998361230d565b6007546001600160a01b031681565b6000610b6e848484612ac6565b6006546001600160a01b031681565b6004546001600160a01b031681565b600754600090819081906001600160a01b03166315f24053611d2f6124d1565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b158015611d7657600080fd5b505afa158015611d8a573d6000803e3d6000fd5b505050506040513d6040811015611da057600080fd5b50805160209091015190925090508115610a205760405162461bcd60e51b81526004018080602001828103825260378152602001806149486037913960400191505060405180910390fd5b6000805460010180825581611dfe610f13565b90508015611e1c57610bbc816010811115611e1557fe5b60466122a7565b610bcd84612bce565b6000805460010180825581611e38610f13565b90508015611e5657610bbc816010811115611e4f57fe5b60366122a7565b610bcd333386612c71565b600080600e5460001415611e7c575050600854600090611f0b565b6000611e866124d1565b90506000611e92614765565b6000611ea384600c54600d546130c4565b935090506000816003811115611eb557fe5b14611ec957945060009350611f0b92505050565b611ed583600e54613102565b925090506000816003811115611ee757fe5b14611efb57945060009350611f0b92505050565b5051600094509250611f0b915050565b9091565b600654604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b158015611f7457600080fd5b505af1158015611f88573d6000803e3d6000fd5b505050506040513d6020811015611f9e57600080fd5b505190508015611fbd57611fb56003604a836127fb565b915050610b6e565b836001600160a01b0316856001600160a01b03161415611fe357611fb56002604b6122a7565b60006001600160a01b038781169087161415612002575060001961202a565b506001600160a01b038086166000908152601060209081526040808320938a16835292905220545b60008060008061203a8589612865565b9094509250600084600381111561204d57fe5b1461206b5761205e6009604b6122a7565b9650505050505050610b6e565b6001600160a01b038a166000908152600f602052604090205461208e9089612865565b909450915060008460038111156120a157fe5b146120b25761205e6009604c6122a7565b6001600160a01b0389166000908152600f60205260409020546120d590896128f0565b909450905060008460038111156120e857fe5b146120f95761205e6009604d6122a7565b6001600160a01b03808b166000908152600f6020526040808220859055918b168152208190556000198514612151576001600160a01b03808b166000908152601060209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206149b08339815191528a6040518082815260200191505060405180910390a36006546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b1580156121ed57600080fd5b505af1158015612201573d6000803e3d6000fd5b506000925061220e915050565b9b9a5050505050505050505050565b6000805460010180825581612230610f13565b905080156122565761224e81601081111561224757fe5b60356122a7565b925050611327565b612261338686612c71565b925050600054811461136a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08360108111156122d657fe5b83604d8111156122e257fe5b604080519283526020830191909152600082820152519081900360600190a1826010811115610a9957fe5b60045460009081906001600160a01b0316331461233057611cc4600160426122a7565b612338612861565b600a541461234c57611cc4600a60416122a7565b600760009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561239d57600080fd5b505afa1580156123b1573d6000803e3d6000fd5b505050506040513d60208110156123c757600080fd5b505161241a576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000610a99565b600080600061248a614765565b6124948686612888565b909250905060008260038111156124a757fe5b146124b857509150600090506124ca565b60006124c3826131b2565b9350935050505b9250929050565b601254604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561251f57600080fd5b505afa158015612533573d6000803e3d6000fd5b505050506040513d602081101561254957600080fd5b505191505090565b600454600090819081906001600160a01b0316331461257f57612576600160316122a7565b92505050610900565b612587612861565b600a541461259b57612576600a60336122a7565b836125a46124d1565b10156125b657612576600e60326122a7565b600d548411156125cc57612576600260346122a7565b50600d54838103908111156126125760405162461bcd60e51b8152600401808060200182810382526024815260200180614a756024913960400191505060405180910390fd5b600d81905560045461262d906001600160a01b0316856131c1565b9150600082601081111561263d57fe5b146126795760405162461bcd60e51b815260040180806020018281038252602381526020018061488c6023913960400191505060405180910390fd5b600454604080516001600160a01b03909216825260208201869052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e9181900360600190a16000949350505050565b60008054600101808255816126e2610f13565b9050801561270057610bbc8160108111156126f957fe5b60276122a7565b610bcd3360008661327d565b6001600160a01b0381166000908152601160205260408120805482918291829182916127435750600094508493506127bb92505050565b6127538160000154600b54613786565b9094509250600084600381111561276657fe5b1461277b5750919350600092506127bb915050565b6127898382600101546137c5565b9094509150600084600381111561279c57fe5b146127b15750919350600092506127bb915050565b5060009450925050505b915091565b60008054600101808255816127d3610f13565b905080156127f157610bbc8160108111156127ea57fe5b601e6122a7565b610bcd33856137f0565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa084601081111561282a57fe5b84604d81111561283657fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115610b6e57fe5b4390565b60008083831161287c5750600090508183036124ca565b506003905060006124ca565b6000612892614765565b6000806128a3866000015186613786565b909250905060008260038111156128b657fe5b146128d5575060408051602081019091526000815290925090506124ca565b60408051602081019091529081526000969095509350505050565b600080838301848110612908576000925090506124ca565b5060029150600090506124ca565b6000806000612923614765565b61292d8787612888565b9092509050600082600381111561294057fe5b14612951575091506000905061296a565b61296361295d826131b2565b866128f0565b9350935050505b935093915050565b600061297c614765565b600080612991670de0b6b3a764000087613786565b909250905060008260038111156129a457fe5b146129c3575060408051602081019091526000815290925090506124ca565b6124c3818660000151613102565b60006129db614765565b6000806129f086600001518660000151612865565b60408051602081019091529081529097909650945050505050565b6000612a15614765565b6000612a1f614765565b612a298787613c38565b90925090506000826003811115612a3c57fe5b14612a4b57909250905061296a565b6129638186613c38565b6000805460010180825581612a68610f13565b90508015612a8657610bbc816010811115612a7f57fe5b60086122a7565b610bcd3385613d21565b6000805460010180825581612aa3610f13565b90508015612aba57610bbc8160108111156126f957fe5b610bcd3385600061327d565b6000805460010180825581612ad9610f13565b90508015612af7576116f9816010811115612af057fe5b600f6122a7565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612b3257600080fd5b505af1158015612b46573d6000803e3d6000fd5b505050506040513d6020811015612b5c57600080fd5b505190508015612b7c576116f9816010811115612b7557fe5b60106122a7565b612b8833878787614087565b9250506000548114610a85576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b03163314612bef57610ad0600160476122a7565b612bf7612861565b600a5414612c0b57610ad0600a60486122a7565b670de0b6b3a7640000821115612c2757610ad0600260496122a7565b6009805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000610a99565b60065460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849316916324008a6291608480830192602092919082900301818787803b158015612cd657600080fd5b505af1158015612cea573d6000803e3d6000fd5b505050506040513d6020811015612d0057600080fd5b505190508015612d1f57612d1760036038836127fb565b915050610a99565b612d27612861565b600a5414612d3b57612d17600a60396122a7565b612d436147d2565b6001600160a01b0385166000908152601160205260409020600101546060820152612d6d8561270c565b6080830181905260208301826003811115612d8457fe5b6003811115612d8f57fe5b9052506000905081602001516003811115612da657fe5b14612dcb57612dc260096037836020015160038111156110fe57fe5b92505050610a99565b600019841415612de45760808101516040820152612dec565b604081018490525b612dfa868260400151614563565b81906010811115612e0757fe5b90816010811115612e1457fe5b905250600081516010811115612e2657fe5b14612e38578051612dc290603c6122a7565b612e4a81608001518260400151612865565b60a0830181905260208301826003811115612e6157fe5b6003811115612e6c57fe5b9052506000905081602001516003811115612e8357fe5b14612e9f57612dc26009603a836020015160038111156110fe57fe5b612eaf600c548260400151612865565b60c0830181905260208301826003811115612ec657fe5b6003811115612ed157fe5b9052506000905081602001516003811115612ee857fe5b14612f0457612dc26009603b836020015160038111156110fe57fe5b612f12868260400151614697565b81906010811115612f1f57fe5b90816010811115612f2c57fe5b905250600081516010811115612f3e57fe5b14612f90576040805162461bcd60e51b815260206004820152601f60248201527f726570617920626f72726f77207472616e7366657220696e206661696c656400604482015290519081900360640190fd5b60a080820180516001600160a01b03808916600081815260116020908152604091829020948555600b5460019095019490945560c0870151600c8190558188015195518251948e16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160065460408083015160608401518251631ededc9160e01b81523060048201526001600160a01b038b811660248301528a81166044830152606482019390935260848101919091529151921691631ededc919160a48082019260009290919082900301818387803b15801561309957600080fd5b505af11580156130ad573d6000803e3d6000fd5b50600092506130ba915050565b9695505050505050565b6000806000806130d487876128f0565b909250905060008260038111156130e757fe5b146130f8575091506000905061296a565b6129638186612865565b600061310c614765565b60008061312186670de0b6b3a7640000613786565b9092509050600082600381111561313457fe5b14613153575060408051602081019091526000815290925090506124ca565b60008061316083886137c5565b9092509050600082600381111561317357fe5b14613195575060408051602081019091526000815290945092506124ca915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b6012546040805163a9059cbb60e01b81526001600160a01b03858116600483015260248201859052915160009392909216918391839163a9059cbb91604480820192869290919082900301818387803b15801561321d57600080fd5b505af1158015613231573d6000803e3d6000fd5b505050503d6000811461324b576020811461325557600080fd5b6000199150613261565b60206000803e60005191505b5080613272576010925050506108ec565b506000949350505050565b600082158061328a575081155b6132c55760405162461bcd60e51b8152600401808060200182810382526034815260200180614a416034913960400191505060405180910390fd5b6132cd6147d2565b6132d5611e61565b60408301819052602083018260038111156132ec57fe5b60038111156132f757fe5b905250600090508160200151600381111561330e57fe5b1461332a57612d176009602b836020015160038111156110fe57fe5b83156133ab576060810184905260408051602081018252908201518152613351908561247d565b608083018190526020830182600381111561336857fe5b600381111561337357fe5b905250600090508160200151600381111561338a57fe5b146133a657612d1760096029836020015160038111156110fe57fe5b613424565b6133c7836040518060200160405280846040015181525061474e565b60608301819052602083018260038111156133de57fe5b60038111156133e957fe5b905250600090508160200151600381111561340057fe5b1461341c57612d176009602a836020015160038111156110fe57fe5b608081018390525b60065460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b15801561348957600080fd5b505af115801561349d573d6000803e3d6000fd5b505050506040513d60208110156134b357600080fd5b5051905080156134ca57612dc260036028836127fb565b6134d2612861565b600a54146134e657612dc2600a602c6122a7565b6134f6600e548360600151612865565b60a084018190526020840182600381111561350d57fe5b600381111561351857fe5b905250600090508260200151600381111561352f57fe5b1461354b57612dc26009602e846020015160038111156110fe57fe5b6001600160a01b0386166000908152600f602052604090205460608301516135739190612865565b60c084018190526020840182600381111561358a57fe5b600381111561359557fe5b90525060009050826020015160038111156135ac57fe5b146135c857612dc26009602d846020015160038111156110fe57fe5b81608001516135d56124d1565b10156135e757612dc2600e602f6122a7565b6135f58683608001516131c1565b8290601081111561360257fe5b9081601081111561360f57fe5b90525060008251601081111561362157fe5b14613673576040805162461bcd60e51b815260206004820152601a60248201527f72656465656d207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b60a0820151600e5560c08201516001600160a01b0387166000818152600f60209081526040918290209390935560608501518151908152905130936000805160206149b0833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160065460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b15801561309957600080fd5b60008083613799575060009050806124ca565b838302838582816137a657fe5b04146137ba575060029150600090506124ca565b6000925090506124ca565b600080826137d957506001905060006124ca565b60008385816137e457fe5b04915091509250929050565b60065460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384931691634ef4c3e191606480830192602092919082900301818787803b15801561384d57600080fd5b505af1158015613861573d6000803e3d6000fd5b505050506040513d602081101561387757600080fd5b5051905080156138965761388e6003601f836127fb565b9150506108ec565b61389e612861565b600a54146138b25761388e600a60226122a7565b6138ba614810565b6138c48585614563565b819060108111156138d157fe5b908160108111156138de57fe5b9052506000815160108111156138f057fe5b1461390b5780516139029060266122a7565b925050506108ec565b613913611e61565b604083018190526020830182600381111561392a57fe5b600381111561393557fe5b905250600090508160200151600381111561394c57fe5b146139685761390260096021836020015160038111156110fe57fe5b613984846040518060200160405280846040015181525061474e565b606083018190526020830182600381111561399b57fe5b60038111156139a657fe5b90525060009050816020015160038111156139bd57fe5b146139d95761390260096020836020015160038111156110fe57fe5b6139e9600e5482606001516128f0565b6080830181905260208301826003811115613a0057fe5b6003811115613a0b57fe5b9052506000905081602001516003811115613a2257fe5b14613a3e5761390260096024836020015160038111156110fe57fe5b6001600160a01b0385166000908152600f60205260409020546060820151613a6691906128f0565b60a0830181905260208301826003811115613a7d57fe5b6003811115613a8857fe5b9052506000905081602001516003811115613a9f57fe5b14613abb5761390260096023836020015160038111156110fe57fe5b613ac58585614697565b81906010811115613ad257fe5b90816010811115613adf57fe5b905250600081516010811115613af157fe5b14613b035780516139029060256122a7565b6080810151600e5560a08101516001600160a01b0386166000818152600f602090815260409182902093909355606080850151825193845293830188905282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0387169130916000805160206149b08339815191529181900360200190a36006546060820151604080516341c728b960e01b81523060048201526001600160a01b038981166024830152604482018990526064820193909352905191909216916341c728b991608480830192600092919082900301818387803b158015613c0e57600080fd5b505af1158015613c22573d6000803e3d6000fd5b5060009250613c2f915050565b95945050505050565b6000613c42614765565b600080613c5786600001518660000151613786565b90925090506000826003811115613c6a57fe5b14613c89575060408051602081019091526000815290925090506124ca565b600080613c9e6706f05b59d3b20000846128f0565b90925090506000826003811115613cb157fe5b14613cd3575060408051602081019091526000815290945092506124ca915050565b600080613ce883670de0b6b3a76400006137c5565b90925090506000826003811115613cfb57fe5b14613d0257fe5b604080516020810190915290815260009a909950975050505050505050565b6006546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b158015613d7e57600080fd5b505af1158015613d92573d6000803e3d6000fd5b505050506040513d6020811015613da857600080fd5b505190508015613dbf5761388e6003600e836127fb565b613dc7612861565b600a5414613dda5761388e600a806122a7565b82613de36124d1565b1015613df55761388e600e60096122a7565b613dfd61482a565b613e068561270c565b6040830181905260208301826003811115613e1d57fe5b6003811115613e2857fe5b9052506000905081602001516003811115613e3f57fe5b14613e5b5761390260096007836020015160038111156110fe57fe5b613e698160400151856128f0565b6060830181905260208301826003811115613e8057fe5b6003811115613e8b57fe5b9052506000905081602001516003811115613ea257fe5b14613ebe576139026009600c836020015160038111156110fe57fe5b613eca600c54856128f0565b6080830181905260208301826003811115613ee157fe5b6003811115613eec57fe5b9052506000905081602001516003811115613f0357fe5b14613f1f576139026009600b836020015160038111156110fe57fe5b613f2985856131c1565b81906010811115613f3657fe5b90816010811115613f4357fe5b905250600081516010811115613f5557fe5b14613fa7576040805162461bcd60e51b815260206004820152601a60248201527f626f72726f77207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b606080820180516001600160a01b038816600081815260116020908152604091829020938455600b54600190940193909355608080870151600c819055945182519384529383018a9052828201939093529381019290925291517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab80929181900390910190a160065460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b158015613c0e57600080fd5b60065460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384931691635fc7e71e9160a480830192602092919082900301818787803b1580156140f457600080fd5b505af1158015614108573d6000803e3d6000fd5b505050506040513d602081101561411e57600080fd5b50519050801561413557611fb560036012836127fb565b61413d612861565b600a541461415157611fb5600a60166122a7565b614159612861565b836001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561419257600080fd5b505afa1580156141a6573d6000803e3d6000fd5b505050506040513d60208110156141bc57600080fd5b5051146141cf57611fb5600a60116122a7565b856001600160a01b0316856001600160a01b031614156141f557611fb5600660176122a7565b8361420657611fb5600760156122a7565b60001984141561421c57611fb5600760146122a7565b6006546040805163c488847b60e01b81523060048201526001600160a01b038681166024830152604482018890528251600094859492169263c488847b926064808301939192829003018186803b15801561427657600080fd5b505afa15801561428a573d6000803e3d6000fd5b505050506040513d60408110156142a057600080fd5b508051602090910151909250905081156142cb576142c160046013846127fb565b9350505050610b6e565b846001600160a01b03166370a08231886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561432157600080fd5b505afa158015614335573d6000803e3d6000fd5b505050506040513d602081101561434b57600080fd5b5051811115614360576142c1600d601d6122a7565b600061436d898989612c71565b905080156143965761438b81601081111561438457fe5b60186122a7565b945050505050610b6e565b6040805163b2a02ff160e01b81526001600160a01b038b811660048301528a8116602483015260448201859052915160009289169163b2a02ff191606480830192602092919082900301818787803b1580156143f157600080fd5b505af1158015614405573d6000803e3d6000fd5b505050506040513d602081101561441b57600080fd5b505190508015614469576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808d168252808c1660208301528183018b9052891660608201526080810185905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600654604080516347ef3b3b60e01b81523060048201526001600160a01b038a811660248301528d811660448301528c81166064830152608482018c905260a48201879052915191909216916347ef3b3b9160c480830192600092919082900301818387803b15801561453457600080fd5b505af1158015614548573d6000803e3d6000fd5b5060009250614555915050565b9a9950505050505050505050565b60125460408051636eb1769f60e11b81526001600160a01b038581166004830152306024830152915160009392909216918491839163dd62ed3e91604480820192602092909190829003018186803b1580156145be57600080fd5b505afa1580156145d2573d6000803e3d6000fd5b505050506040513d60208110156145e857600080fd5b505110156145fa57600c9150506108ec565b82816001600160a01b03166370a08231866040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561465157600080fd5b505afa158015614665573d6000803e3d6000fd5b505050506040513d602081101561467b57600080fd5b5051101561468d57600d9150506108ec565b5060009392505050565b601254604080516323b872dd60e01b81526001600160a01b0385811660048301523060248301526044820185905291516000939290921691839183916323b872dd91606480820192869290919082900301818387803b1580156146f957600080fd5b505af115801561470d573d6000803e3d6000fd5b505050503d60008114614727576020811461473157600080fd5b600019915061473d565b60206000803e60005191505b508061327257600f925050506108ec565b600080600061475b614765565b6124948686612972565b6040518060200160405280600081525090565b6040805161014081019091528060008152602001600081526020016000815260200160008152602001600081526020016147b0614765565b8152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160c08101909152806000815260200160006147b0565b6040805160a08101909152806000815260200160008152602001600081526020016000815260200160008152509056fe737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7773506572206661696c6564726564756365207265736572766573207472616e73666572206f7574206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720737570706c7952617465206661696c6564626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720756e6465726c79696e67206661696c6564626f72726f7752617465506572426c6f636b3a20696e746572657374526174654d6f64656c2e626f72726f7752617465206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7752617465206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef737570706c7952617465506572426c6f636b3a2063616c63756c6174696e67206f6e654d696e757352657365727665466163746f72206661696c656465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65646f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a72315820b7c433149c60a02dd87599195d49df693dd32d50dfe1f5b802ec551c9ec2f08364736f6c63430005100032

Deployed Bytecode Sourcemap

90504:8522:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90504:8522:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22441:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;22441:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31530:237;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31530:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;92669:121;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92669:121:0;;:::i;:::-;;;;;;;;;;;;;;;;23714:33;;;:::i;37238:224::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37238:224:0;-1:-1:-1;;;;;37238:224:0;;:::i;24350:26::-;;;:::i;40083:261::-;;;:::i;30865:195::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30865:195:0;;;;;;;;;;;;;;;;;:::i;93078:161::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;93078:161:0;;;;;;;;:::i;23142:35::-;;;:::i;:::-;;;;-1:-1:-1;;;;;23142:35:0;;;;;;;;;;;;;;86774:477;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;86774:477:0;-1:-1:-1;;;;;86774:477:0;;:::i;22637:20::-;;;:::i;32798:319::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32798:319:0;-1:-1:-1;;;;;32798:319:0;;:::i;41920:88::-;;;:::i;24114:24::-;;;:::i;82855:571::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;82855:571:0;;:::i;23578:39::-;;;:::i;23837:30::-;;;:::i;90606:25::-;;;:::i;32430:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32430:112:0;-1:-1:-1;;;;;32430:112:0;;:::i;36755:192::-;;;:::i;79673:725::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;79673:725:0;-1:-1:-1;;;;;79673:725:0;;:::i;91947:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91947:133:0;;:::i;24244:25::-;;;:::i;22329:36::-;;;:::i;22537:20::-;;;:::i;37671:287::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37671:287:0;-1:-1:-1;;;;;37671:287:0;;:::i;91022:105::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91022:105:0;;:::i;42726:3646::-;;;:::i;30373:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30373:185:0;;;;;;;;:::i;23979:23::-;;;:::i;35111:1498::-;;;:::i;75116:2117::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;75116:2117:0;;;;;;;;;;;;;;;;;:::i;77783:647::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;77783:647:0;-1:-1:-1;;;;;77783:647:0;;:::i;39635:198::-;;;:::i;33462:703::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33462:703:0;-1:-1:-1;;;;;33462:703:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92348:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92348:113:0;;:::i;91478:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91478:113:0;;:::i;32097:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32097:143:0;;;;;;;;;;:::i;78708:742::-;;;:::i;98556:466::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;98556:466:0;-1:-1:-1;;;;;98556:466:0;;:::i;86133:633::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;86133:633:0;-1:-1:-1;;;;;86133:633:0;;:::i;23407:42::-;;;:::i;93721:200::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;93721:200:0;;;;;;;;;;;;;;;;;:::i;23268:37::-;;;:::i;23031:28::-;;;:::i;34593:342::-;;;:::i;80701:607::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;80701:607:0;;:::i;22441:18::-;;;;;;;;;;;;;;;-1:-1:-1;;22441:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31530:237::-;31629:10;31598:4;31650:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;31650:32:0;;;;;;;;;;;:41;;;31707:30;;;;;;;31598:4;;31629:10;31650:32;;31629:10;;31707:30;;;;;;;;;;;31755:4;31748:11;;;31530:237;;;;;:::o;92669:121::-;92726:4;92750:32;92770:11;92750:19;:32::i;:::-;92743:39;;92669:121;;;;:::o;23714:33::-;;;;:::o;37238:224::-;37316:4;21777:18;;21794:1;21777:18;;;;37316:4;37341:16;:14;:16::i;:::-;:40;37333:75;;;;;-1:-1:-1;;;37333:75:0;;;;;;;;;;;;-1:-1:-1;;;37333:75:0;;;;;;;;;;;;;;;37426:28;37446:7;37426:19;:28::i;:::-;37419:35;;21853:1;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;;37238:224;;;;:::o;24350:26::-;;;;:::o;40083:261::-;40134:4;40152:13;40167:11;40182:28;:26;:28::i;:::-;40151:59;;-1:-1:-1;40151:59:0;-1:-1:-1;40236:18:0;40229:3;:25;;;;;;;;;40221:91;;;;-1:-1:-1;;;40221:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40330:6;-1:-1:-1;;40083:261:0;;:::o;30865:195::-;30960:4;21777:18;;21794:1;21777:18;;;;30960:4;30984:44;30999:10;31011:3;31016;31021:6;30984:14;:44::i;:::-;:68;30977:75;;21853:1;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;;30865:195;;;;;;:::o;93078:161::-;93159:4;93183:48;93209:8;93219:11;93183:25;:48::i;:::-;93176:55;93078:161;-1:-1:-1;;;93078:161:0:o;23142:35::-;;;-1:-1:-1;;;;;23142:35:0;;:::o;86774:477::-;86901:5;;86866:4;;-1:-1:-1;;;;;86901:5:0;86887:10;:19;86883:136;;86930:77;86935:22;86959:47;86930:4;:77::i;:::-;86923:84;;;;86883:136;87147:17;:40;;-1:-1:-1;;;;;;87147:40:0;-1:-1:-1;;;;;87147:40:0;;;;;;;;;;;87198:45;;87225:17;87198:26;:45::i;22637:20::-;;;;:::o;32798:319::-;32860:4;32877:23;;:::i;:::-;32903:38;;;;;;;;32918:21;:19;:21::i;:::-;32903:38;;-1:-1:-1;;;;;33017:20:0;;32953:14;33017:20;;;:13;:20;;;;;;32877:64;;-1:-1:-1;32953:14:0;;;32985:53;;32877:64;;32985:17;:53::i;:::-;32952:86;;-1:-1:-1;32952:86:0;-1:-1:-1;33065:18:0;33057:4;:26;;;;;;;;;33049:35;;;;;;33102:7;32798:319;-1:-1:-1;;;;32798:319:0:o;41920:88::-;41962:4;41986:14;:12;:14::i;:::-;41979:21;;41920:88;:::o;24114:24::-;;;;:::o;82855:571::-;82930:4;21777:18;;21794:1;21777:18;;;;82930:4;82960:16;:14;:16::i;:::-;82947:29;-1:-1:-1;82991:29:0;;82987:277;;83182:70;83193:5;83187:12;;;;;;;;83201:50;83182:4;:70::i;:::-;83175:77;;;;;82987:277;83384:34;83405:12;83384:20;:34::i;:::-;83377:41;;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;23578:39;;;;:::o;23837:30::-;;;;:::o;90606:25::-;;;-1:-1:-1;;;;;90606:25:0;;:::o;32430:112::-;-1:-1:-1;;;;;32514:20:0;32487:7;32514:20;;;:13;:20;;;;;;;32430:112::o;36755:192::-;36817:4;21777:18;;21794:1;21777:18;;;;36817:4;36842:16;:14;:16::i;:::-;:40;36834:75;;;;;-1:-1:-1;;;36834:75:0;;;;;;;;;;;;-1:-1:-1;;;36834:75:0;;;;;;;;;;;;;;;36927:12;;36920:19;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;;36755:192;;:::o;79673:725::-;79817:5;;79748:4;;-1:-1:-1;;;;;79817:5:0;79803:10;:19;79799:123;;79846:64;79851:18;79871:38;79846:4;:64::i;79799:123::-;79970:10;;80074:28;;;-1:-1:-1;;;80074:28:0;;;;-1:-1:-1;;;;;79970:10:0;;;;80074:26;;;;;:28;;;;;;;;;;;;;;:26;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;80074:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;80074:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;80074:28:0;80066:69;;;;;-1:-1:-1;;;80066:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;80201:10;:26;;-1:-1:-1;;;;;;80201:26:0;-1:-1:-1;;;;;80201:26:0;;;;;;;;;80307:43;;;;;;;;;;;;;;;;;;;;;;;;;;;80375:14;80363:27;79673:725;-1:-1:-1;;;79673:725:0:o;91947:133::-;92010:4;92034:38;92059:12;92034:24;:38::i;24244:25::-;;;;:::o;22329:36::-;22361:4;22329:36;:::o;22537:20::-;;;;;;;;;;;;;;-1:-1:-1;;22537:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37671:287;37738:4;37756:13;37771:11;37786:36;37814:7;37786:27;:36::i;:::-;37755:67;;-1:-1:-1;37755:67:0;-1:-1:-1;37848:18:0;37841:3;:25;;;;;;;;;37833:93;;;;-1:-1:-1;;;37833:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91022:105;91071:4;91095:24;91108:10;91095:12;:24::i;42726:3646::-;42768:4;42785:35;;:::i;:::-;42935:17;;-1:-1:-1;;;;;42935:17:0;:31;42967:14;:12;:14::i;:::-;42983:12;;42997:13;;42935:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42935:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42935:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42935:76:0;;;;;;;;42908:23;;42891:120;;;42892:14;;;42891:120;22800:4;-1:-1:-1;43032:48:0;43024:89;;;;;-1:-1:-1;;;43024:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43128:14;;;;:19;43124:178;;43171:119;43182:31;43215:58;43275:4;:14;;;43171:10;:119::i;:::-;43164:126;;;;;43124:178;43389:16;:14;:16::i;:::-;43363:23;;;:42;;;43562:18;;43529:52;;43363:42;43529:7;:52::i;:::-;43510:15;;;43495:86;;;43496:4;43495:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;43615:18:0;;-1:-1:-1;43599:12:0;;:34;;;;;;;;;43592:42;;;;44233:68;44243:40;;;;;;;;44258:4;:23;;;44243:40;;;44285:4;:15;;;44233:9;:68::i;:::-;44204:25;;;44189:112;;;44190:4;44189:112;;;;;;;;;;;;;;;;;;;-1:-1:-1;44332:18:0;;-1:-1:-1;44316:12:0;;:34;;;;;;;;;44312:193;;44374:119;44385:16;44403:69;44479:4;:12;;;44474:18;;;;;;;;44374:10;:119::i;44312:193::-;44560:58;44578:4;:25;;;44605:12;;44560:17;:58::i;:::-;44532:24;;;44517:101;;;44518:4;44517:101;;;;;;;;;;;;;;;;;;;-1:-1:-1;44649:18:0;;-1:-1:-1;44633:12:0;;:34;;;;;;;;;44629:191;;44691:117;44702:16;44720:67;44794:4;:12;;;44789:18;;;;;;;44629:191;44871:47;44879:4;:24;;;44905:12;;44871:7;:47::i;:::-;44847:20;;;44832:86;;;44833:4;44832:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;44949:18:0;;-1:-1:-1;44933:12:0;;:34;;;;;;;;;44929:188;;44991:114;45002:16;45020:64;45091:4;:12;;;45086:18;;;;;;;44929:188;45169:105;45194:38;;;;;;;;45209:21;;45194:38;;;45234:4;:24;;;45260:13;;45169:24;:105::i;:::-;45144:21;;;45129:145;;;45130:4;45129:145;;;;;;;;;;;;;;;;;;;-1:-1:-1;45305:18:0;;-1:-1:-1;45289:12:0;;:34;;;;;;;;;45285:189;;45347:115;45358:16;45376:65;45448:4;:12;;;45443:18;;;;;;;45285:189;45524:77;45549:4;:25;;;45576:11;;45589;;45524:24;:77::i;:::-;45501:19;;;45486:115;;;45487:4;45486:115;;;;;;;;;;;;;;;;;;;-1:-1:-1;45632:18:0;;-1:-1:-1;45616:12:0;;:34;;;;;;;;;45612:187;;45674:113;45685:16;45703:63;45773:4;:12;;;45768:18;;;;;;;45612:187;46023:23;;;;;46002:18;:44;46071:19;;;;46057:11;:33;;;46116:20;;;;46101:12;:35;;;46163:21;;;;46147:13;:37;46264:24;;;;46249:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46349:14;46337:27;;;42726:3646;:::o;30373:185::-;30451:4;21777:18;;21794:1;21777:18;;;;30451:4;30475:51;30490:10;30502;30514:3;30519:6;30475:14;:51::i;:::-;:75;30468:82;;21853:1;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;;30373:185;;;;;:::o;23979:23::-;;;;:::o;35111:1498::-;35164:4;35415:25;35443:20;:18;:20::i;:::-;35513:17;;35415:48;;-1:-1:-1;35477:7:0;;;;-1:-1:-1;;;;;35513:17:0;:31;35545:14;:12;:14::i;:::-;35561:12;;35575:13;;35513:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35513:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35513:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35513:76:0;;;;;;;;;-1:-1:-1;35513:76:0;-1:-1:-1;35608:7:0;;35600:69;;;;-1:-1:-1;;;35600:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35698:12;35712:21;;:::i;:::-;35737:61;35747:37;;;;;;;;35762:20;35747:37;;;35786:11;;35737:9;:61::i;:::-;35697:101;;-1:-1:-1;35697:101:0;-1:-1:-1;35823:18:0;35817:2;:24;;;;;;;;;35809:86;;;;-1:-1:-1;;;35809:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35909:12;35923:21;;:::i;:::-;35948:40;35963:12;;35977:10;35948:14;:40::i;:::-;35908:80;;-1:-1:-1;35908:80:0;-1:-1:-1;36013:18:0;36007:2;:24;;;;;;;;;35999:86;;;;-1:-1:-1;;;35999:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36099:12;36113:32;;:::i;:::-;36149:76;36156:28;;;;;;;;11426:4;36156:28;;;36186:38;;;;;;;;36201:21;;36186:38;;;36149:6;:76::i;:::-;36098:127;;-1:-1:-1;36098:127:0;-1:-1:-1;36250:18:0;36244:2;:24;;;;;;;;;36236:97;;;;-1:-1:-1;;;36236:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36347:12;36361:21;;:::i;:::-;36386:79;36394:35;;;;;;;;36409:18;36394:35;;;36431:21;36454:10;36386:7;:79::i;:::-;36346:119;;-1:-1:-1;36346:119:0;-1:-1:-1;36490:18:0;36484:2;:24;;;;;;;;;36476:86;;;;-1:-1:-1;;;36476:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36582:19;;-1:-1:-1;;;;;;;;;;;35111:1498:0;:::o;75116:2117::-;75218:4;21777:18;;21794:1;21777:18;;;;75291:10;;:85;;;-1:-1:-1;;;75291:85:0;;75323:4;75291:85;;;;75330:10;75291:85;;;;-1:-1:-1;;;;;75291:85:0;;;;;;;;;;;;;;;;;;;;;;75218:4;;75291:10;;;;;:23;;:85;;;;;;;;;;;;;;;75218:4;75291:10;:85;;;5:2:-1;;;;30:1;27;20:12;5:2;75291:85:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;75291:85:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;75291:85:0;;-1:-1:-1;75391:12:0;;75387:149;;75427:97;75438:26;75466:48;75516:7;75427:10;:97::i;:::-;75420:104;;;;;75387:149;75609:10;-1:-1:-1;;;;;75597:22:0;:8;-1:-1:-1;;;;;75597:22:0;;75593:146;;;75643:84;75648:26;75676:50;75643:4;:84::i;75593:146::-;-1:-1:-1;;;;;76163:23:0;;75751:17;76163:23;;;:13;:23;;;;;;75751:17;;;;76155:45;;76188:11;76155:7;:45::i;:::-;76124:76;;-1:-1:-1;76124:76:0;-1:-1:-1;76226:18:0;76215:7;:29;;;;;;;;;76211:166;;76268:97;76279:16;76297:52;76356:7;76351:13;;;;;;;76268:97;76261:104;;;;;;;;76211:166;-1:-1:-1;;;;;76430:25:0;;;;;;:13;:25;;;;;;76422:47;;76457:11;76422:7;:47::i;:::-;76389:80;;-1:-1:-1;76389:80:0;-1:-1:-1;76495:18:0;76484:7;:29;;;;;;;;;76480:166;;76537:97;76548:16;76566:52;76625:7;76620:13;;;;;;;76480:166;-1:-1:-1;;;;;76849:23:0;;;;;;;:13;:23;;;;;;;;:43;;;76903:25;;;;;;;;;;:47;;;77005:43;;;;;;;76903:25;;-1:-1:-1;;;;;;;;;;;77005:43:0;;;;;;;;;;77101:10;;:84;;;-1:-1:-1;;;77101:84:0;;77132:4;77101:84;;;;77139:10;77101:84;;;;-1:-1:-1;;;;;77101:84:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:22;;:84;;;;;:10;;:84;;;;;;;:10;;:84;;;5:2:-1;;;;30:1;27;20:12;5:2;77101:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;77210:14:0;;-1:-1:-1;77205:20:0;;-1:-1:-1;;77205:20:0;;77198:27;;;;;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;77783:647;77928:5;;77860:4;;-1:-1:-1;;;;;77928:5:0;77914:10;:19;77910:126;;77957:67;77962:18;77982:41;77957:4;:67::i;77910:126::-;78135:12;;;-1:-1:-1;;;;;78218:30:0;;;-1:-1:-1;;;;;;78218:30:0;;;;;;;78333:49;;;78135:12;;;;78333:49;;;;;;;;;;;;;;;;;;;;;;;78407:14;78402:20;;39635:198;39695:4;21777:18;;21794:1;21777:18;;;;39695:4;39720:16;:14;:16::i;:::-;:40;39712:75;;;;;-1:-1:-1;;;39712:75:0;;;;;;;;;;;;-1:-1:-1;;;39712:75:0;;;;;;;;;;;;;;;39805:20;:18;:20::i;:::-;39798:27;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;33462:703;-1:-1:-1;;;;;33586:22:0;;33530:4;33586:22;;;:13;:22;;;;;;33530:4;;;;;;;;;33737:36;33600:7;33737:27;:36::i;:::-;33713:60;-1:-1:-1;33713:60:0;-1:-1:-1;33796:18:0;33788:4;:26;;;;;;;;;33784:99;;33844:16;33839:22;33831:40;-1:-1:-1;33863:1:0;;-1:-1:-1;33863:1:0;;-1:-1:-1;33863:1:0;;-1:-1:-1;33831:40:0;;-1:-1:-1;;;;33831:40:0;33784:99;33926:28;:26;:28::i;:::-;33895:59;-1:-1:-1;33895:59:0;-1:-1:-1;33977:18:0;33969:4;:26;;;;;;;;;33965:99;;34025:16;34020:22;;33965:99;-1:-1:-1;34089:14:0;;-1:-1:-1;34106:13:0;;-1:-1:-1;34121:13:0;-1:-1:-1;34121:13:0;-1:-1:-1;33462:703:0;;;;;;:::o;92348:113::-;92401:4;92425:28;92440:12;92425:14;:28::i;91478:113::-;91531:4;91555:28;91570:12;91555:14;:28::i;32097:143::-;-1:-1:-1;;;;;32198:25:0;;;32171:7;32198:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;32097:143::o;78708:742::-;78858:12;;78750:4;;-1:-1:-1;;;;;78858:12:0;78844:10;:26;;;:54;;-1:-1:-1;78874:10:0;:24;78844:54;78840:164;;;78922:70;78927:18;78947:44;78922:4;:70::i;:::-;78915:77;;;;78840:164;79088:5;;;79130:12;;;-1:-1:-1;;;;;79130:12:0;;;-1:-1:-1;;;;;;79203:20:0;;;;;;;;;79272:25;;;;;;79315;;;79088:5;;;79315:25;;;79334:5;;;;79315:25;;;;;;79130:12;;79315:25;;;;;;;;;79389:12;;79356:46;;;-1:-1:-1;;;;;79356:46:0;;;;;79389:12;;;79356:46;;;;;;;;;;;;;;;;79427:14;79415:27;;;;78708:742;:::o;98556:466::-;98688:5;;98619:4;;-1:-1:-1;;;;;98688:5:0;98674:10;:19;98670:123;;98717:64;98722:18;98742:38;98717:4;:64::i;98670:123::-;98858:10;:26;;-1:-1:-1;;;;;;98858:26:0;-1:-1:-1;;;;;98858:26:0;;;;;;;;;;;98895:40;;;-1:-1:-1;;;98895:40:0;;;;98910:10;;;;;98895:38;;:40;;;;;;;;;;;;;;;98910:10;98895:40;;;5:2:-1;;;;30:1;27;20:12;5:2;98895:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;98895:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;98999:14:0;;-1:-1:-1;98994:20:0;;86133:633;86220:4;86237:10;86250:16;:14;:16::i;:::-;86237:29;-1:-1:-1;86281:29:0;;86277:298;;86485:78;86496:5;86490:12;;;;;;;;86504:58;86485:4;:78::i;:::-;86478:85;;;;;86277:298;86710:48;86737:20;86710:26;:48::i;23407:42::-;;;-1:-1:-1;;;;;23407:42:0;;:::o;93721:200::-;93825:4;93849:64;93873:8;93883:11;93896:16;93849:23;:64::i;23268:37::-;;;-1:-1:-1;;;;;23268:37:0;;:::o;23031:28::-;;;-1:-1:-1;;;;;23031:28:0;;:::o;34593:342::-;34707:17;;34646:4;;;;;;-1:-1:-1;;;;;34707:17:0;:31;34739:14;:12;:14::i;:::-;34755:12;;34769:13;;34707:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34707:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34707:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34707:76:0;;;;;;;;;-1:-1:-1;34707:76:0;-1:-1:-1;34802:14:0;;34794:82;;;;-1:-1:-1;;;34794:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80701:607;80790:4;21777:18;;21794:1;21777:18;;;;80790:4;80820:16;:14;:16::i;:::-;80807:29;-1:-1:-1;80851:29:0;;80847:286;;81048:73;81059:5;81053:12;;;;;;;;81067:53;81048:4;:73::i;80847:286::-;81252:48;81275:24;81252:22;:48::i;63516:561::-;63594:4;21777:18;;21794:1;21777:18;;;;63594:4;63624:16;:14;:16::i;:::-;63611:29;-1:-1:-1;63655:29:0;;63651:255;;63827:67;63838:5;63832:12;;;;;;;;63846:47;63827:4;:67::i;63651:255::-;64016:53;64033:10;64045;64057:11;64016:16;:53::i;40608:1142::-;40669:9;40680:4;40701:11;;40716:1;40701:16;40697:1046;;;-1:-1:-1;;40894:27:0;;40874:18;;40866:56;;40697:1046;41104:14;41121;:12;:14::i;:::-;41104:31;;41150:33;41198:23;;:::i;:::-;41236:17;41312:54;41327:9;41338:12;;41352:13;;41312:14;:54::i;:::-;41270:96;-1:-1:-1;41270:96:0;-1:-1:-1;41396:18:0;41385:7;:29;;;;;;;;;41381:89;;41443:7;-1:-1:-1;41452:1:0;;-1:-1:-1;41435:19:0;;-1:-1:-1;;;41435:19:0;41381:89;41512:49;41519:28;41549:11;;41512:6;:49::i;:::-;41486:75;-1:-1:-1;41486:75:0;-1:-1:-1;41591:18:0;41580:7;:29;;;;;;;;;41576:89;;41638:7;-1:-1:-1;41647:1:0;;-1:-1:-1;41630:19:0;;-1:-1:-1;;;41630:19:0;41576:89;-1:-1:-1;41709:21:0;41689:18;;-1:-1:-1;41709:21:0;-1:-1:-1;41681:50:0;;-1:-1:-1;;41681:50:0;40697:1046;40608:1142;;:::o;27817:2295::-;27991:10;;:59;;;-1:-1:-1;;;27991:59:0;;28026:4;27991:59;;;;-1:-1:-1;;;;;27991:59:0;;;;;;;;;;;;;;;;;;;;;;27915:4;;;;27991:10;;:26;;:59;;;;;;;;;;;;;;27915:4;27991:10;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;27991:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27991:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27991:59:0;;-1:-1:-1;28065:12:0;;28061:142;;28101:90;28112:26;28140:41;28183:7;28101:10;:90::i;:::-;28094:97;;;;;28061:142;28269:3;-1:-1:-1;;;;;28262:10:0;:3;-1:-1:-1;;;;;28262:10:0;;28258:105;;;28296:55;28301:15;28318:32;28296:4;:55::i;28258:105::-;28440:22;-1:-1:-1;;;;;28481:14:0;;;;;;;28477:160;;;-1:-1:-1;;;28477:160:0;;;-1:-1:-1;;;;;;28593:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;28477:160;28715:17;28743;28771;28799;28855:34;28863:17;28882:6;28855:7;:34::i;:::-;28829:60;;-1:-1:-1;28829:60:0;-1:-1:-1;28915:18:0;28904:7;:29;;;;;;;;;28900:125;;28957:56;28962:16;28980:32;28957:4;:56::i;:::-;28950:63;;;;;;;;;;28900:125;-1:-1:-1;;;;;29071:18:0;;;;;;:13;:18;;;;;;29063:35;;29091:6;29063:7;:35::i;:::-;29037:61;;-1:-1:-1;29037:61:0;-1:-1:-1;29124:18:0;29113:7;:29;;;;;;;;;29109:124;;29166:55;29171:16;29189:31;29166:4;:55::i;29109:124::-;-1:-1:-1;;;;;29279:18:0;;;;;;:13;:18;;;;;;29271:35;;29299:6;29271:7;:35::i;:::-;29245:61;;-1:-1:-1;29245:61:0;-1:-1:-1;29332:18:0;29321:7;:29;;;;;;;;;29317:122;;29374:53;29379:16;29397:29;29374:4;:53::i;29317:122::-;-1:-1:-1;;;;;29572:18:0;;;;;;;:13;:18;;;;;;:33;;;29616:18;;;;;;:33;;;-1:-1:-1;;29722:29:0;;29718:109;;-1:-1:-1;;;;;29768:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;29718:109;29898:3;-1:-1:-1;;;;;29884:26:0;29893:3;-1:-1:-1;;;;;29884:26:0;-1:-1:-1;;;;;;;;;;;29903:6:0;29884:26;;;;;;;;;;;;;;;;;;30006:10;;:58;;;-1:-1:-1;;;30006:58:0;;30040:4;30006:58;;;;-1:-1:-1;;;;;30006:58:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:25;;:58;;;;;:10;;:58;;;;;;;:10;;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;30006:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;30089:14:0;;-1:-1:-1;30084:20:0;;-1:-1:-1;;30084:20:0;;30077:27;27817:2295;-1:-1:-1;;;;;;;;;;;27817:2295:0:o;64365:583::-;64467:4;21777:18;;21794:1;21777:18;;;;64467:4;64497:16;:14;:16::i;:::-;64484:29;-1:-1:-1;64528:29:0;;64524:255;;64700:67;64711:5;64705:12;;;;;;;;64719:47;64700:4;:67::i;:::-;64693:74;;;;;64524:255;64889:51;64906:10;64918:8;64928:11;64889:16;:51::i;:::-;64882:58;;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;6832:153;6893:4;6915:33;6928:3;6923:9;;;;;;;;6939:4;6934:10;;;;;;;;6915:33;;;;;;;;;;;;;6946:1;6915:33;;;;;;;;;;;;;6973:3;6968:9;;;;;;;87585:1352;87885:5;;87679:4;;;;-1:-1:-1;;;;;87885:5:0;87871:10;:19;87867:132;;87914:73;87919:18;87939:47;87914:4;:73::i;87867:132::-;88125:16;:14;:16::i;:::-;88103:18;;:38;88099:208;;88218:77;88223:22;88247:47;88218:4;:77::i;88099:208::-;88401:17;;;;;;;;;-1:-1:-1;;;;;88401:17:0;88378:40;;88521:20;-1:-1:-1;;;;;88521:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88521:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88521:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88521:42:0;88513:83;;;;;-1:-1:-1;;;88513:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;88673:17;:40;;-1:-1:-1;;;;;;88673:40:0;-1:-1:-1;;;;;88673:40:0;;;;;;;;;88819:70;;;;;;;;;;;;;;;;;;;;;;;;;;;88914:14;88909:20;;12929:313;13006:9;13017:4;13035:13;13050:18;;:::i;:::-;13072:20;13082:1;13085:6;13072:9;:20::i;:::-;13034:58;;-1:-1:-1;13034:58:0;-1:-1:-1;13114:18:0;13107:3;:25;;;;;;;;;13103:73;;-1:-1:-1;13157:3:0;-1:-1:-1;13162:1:0;;-1:-1:-1;13149:15:0;;13103:73;13196:18;13216:17;13225:7;13216:8;:17::i;:::-;13188:46;;;;;;12929:313;;;;;;:::o;94189:169::-;94291:10;;94320:30;;;-1:-1:-1;;;94320:30:0;;94344:4;94320:30;;;;;;94236:4;;-1:-1:-1;;;;;94291:10:0;;;;94320:15;;:30;;;;;;;;;;;;;;;94291:10;94320:30;;;5:2:-1;;;;30:1;27;20:12;5:2;94320:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;94320:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;94320:30:0;;-1:-1:-1;;94189:169:0;:::o;83703:2061::-;83934:5;;83770:4;;;;;;-1:-1:-1;;;;;83934:5:0;83920:10;:19;83916:124;;83963:65;83968:18;83988:39;83963:4;:65::i;:::-;83956:72;;;;;;83916:124;84166:16;:14;:16::i;:::-;84144:18;;:38;84140:200;;84259:69;84264:22;84288:39;84259:4;:69::i;84140:200::-;84446:12;84429:14;:12;:14::i;:::-;:29;84425:152;;;84482:83;84487:29;84518:46;84482:4;:83::i;84425:152::-;84826:13;;84811:12;:28;84807:129;;;84863:61;84868:15;84885:38;84863:4;:61::i;84807:129::-;-1:-1:-1;85088:13:0;;:28;;;;85224:33;;;85216:82;;;;-1:-1:-1;;;85216:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85372:13;:32;;;85491:5;;85477:34;;-1:-1:-1;;;;;85491:5:0;85498:12;85477:13;:34::i;:::-;85471:40;-1:-1:-1;85590:14:0;85583:3;:21;;;;;;;;;85575:69;;;;-1:-1:-1;;;85575:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85678:5;;85662:54;;;-1:-1:-1;;;;;85678:5:0;;;85662:54;;;;;;;;;;;;;;;;;;;;;;;;85741:14;85729:27;83703:2061;-1:-1:-1;;;;83703:2061:0:o;52777:537::-;52861:4;21777:18;;21794:1;21777:18;;;;52861:4;52891:16;:14;:16::i;:::-;52878:29;-1:-1:-1;52922:29:0;;52918:249;;53094:61;53105:5;53099:12;;;;;;;;53113:41;53094:4;:61::i;52918:249::-;53266:40;53278:10;53290:1;53293:12;53266:11;:40::i;38212:1268::-;-1:-1:-1;;;;;38561:23:0;;38289:9;38561:23;;;:14;:23;;;;;38790:24;;38289:9;;;;;;;;38786:92;;-1:-1:-1;38844:18:0;;-1:-1:-1;38844:18:0;;-1:-1:-1;38836:30:0;;-1:-1:-1;;;38836:30:0;38786:92;39105:46;39113:14;:24;;;39139:11;;39105:7;:46::i;:::-;39072:79;;-1:-1:-1;39072:79:0;-1:-1:-1;39177:18:0;39166:7;:29;;;;;;;;;39162:81;;-1:-1:-1;39220:7:0;;-1:-1:-1;39229:1:0;;-1:-1:-1;39212:19:0;;-1:-1:-1;;39212:19:0;39162:81;39275:58;39283:19;39304:14;:28;;;39275:7;:58::i;:::-;39255:78;;-1:-1:-1;39255:78:0;-1:-1:-1;39359:18:0;39348:7;:29;;;;;;;;;39344:81;;-1:-1:-1;39402:7:0;;-1:-1:-1;39411:1:0;;-1:-1:-1;39394:19:0;;-1:-1:-1;;39394:19:0;39344:81;-1:-1:-1;39445:18:0;;-1:-1:-1;39465:6:0;-1:-1:-1;;;38212:1268:0;;;;:::o;46730:536::-;46800:4;21777:18;;21794:1;21777:18;;;;46800:4;46830:16;:14;:16::i;:::-;46817:29;-1:-1:-1;46861:29:0;;46857:247;;47033:59;47044:5;47038:12;;;;;;;;47052:39;47033:4;:59::i;46857:247::-;47225:33;47235:10;47247;47225:9;:33::i;6993:187::-;7078:4;7100:43;7113:3;7108:9;;;;;;;;7124:4;7119:10;;;;;;;;7100:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;7168:3;7163:9;;;;;;;34324:93;34397:12;34324:93;:::o;1442:236::-;1498:9;1509:4;1535:1;1530;:6;1526:145;;-1:-1:-1;1561:18:0;;-1:-1:-1;1581:5:0;;;1553:34;;1526:145;-1:-1:-1;1628:27:0;;-1:-1:-1;1657:1:0;1620:39;;12568:353;12637:9;12648:10;;:::i;:::-;12672:14;12688:19;12711:27;12719:1;:10;;;12731:6;12711:7;:27::i;:::-;12671:67;;-1:-1:-1;12671:67:0;-1:-1:-1;12761:18:0;12753:4;:26;;;;;;;;;12749:92;;-1:-1:-1;12810:18:0;;;;;;;;;-1:-1:-1;12810:18:0;;12804:4;;-1:-1:-1;12810:18:0;-1:-1:-1;12796:33:0;;12749:92;12881:31;;;;;;;;;;;;-1:-1:-1;;12881:31:0;;-1:-1:-1;12568:353:0;-1:-1:-1;;;;12568:353:0:o;1763:258::-;1819:9;;1856:5;;;1878:6;;;1874:140;;1909:18;;-1:-1:-1;1929:1:0;-1:-1:-1;1901:30:0;;1874:140;-1:-1:-1;1972:26:0;;-1:-1:-1;2000:1:0;;-1:-1:-1;1964:38:0;;13250:328;13347:9;13358:4;13376:13;13391:18;;:::i;:::-;13413:20;13423:1;13426:6;13413:9;:20::i;:::-;13375:58;;-1:-1:-1;13375:58:0;-1:-1:-1;13455:18:0;13448:3;:25;;;;;;;;;13444:73;;-1:-1:-1;13498:3:0;-1:-1:-1;13503:1:0;;-1:-1:-1;13490:15:0;;13444:73;13536:34;13544:17;13553:7;13544:8;:17::i;:::-;13563:6;13536:7;:34::i;:::-;13529:41;;;;;;13250:328;;;;;;;:::o;13951:620::-;14031:9;14042:10;;:::i;:::-;14349:14;14365;14383:25;11426:4;14401:6;14383:7;:25::i;:::-;14348:60;;-1:-1:-1;14348:60:0;-1:-1:-1;14431:18:0;14423:4;:26;;;;;;;;;14419:92;;-1:-1:-1;14480:18:0;;;;;;;;;-1:-1:-1;14480:18:0;;14474:4;;-1:-1:-1;14480:18:0;-1:-1:-1;14466:33:0;;14419:92;14528:35;14535:9;14546:7;:16;;;14528:6;:35::i;12335:225::-;12402:9;12413:10;;:::i;:::-;12437:15;12454:11;12469:31;12477:1;:10;;;12489:1;:10;;;12469:7;:31::i;:::-;12528:23;;;;;;;;;;;;12436:64;;12528:23;;-1:-1:-1;12335:225:0;-1:-1:-1;;;;;12335:225:0:o;16226:284::-;16308:9;16319:10;;:::i;:::-;16343:13;16358;;:::i;:::-;16375:12;16382:1;16385;16375:6;:12::i;:::-;16342:45;;-1:-1:-1;16342:45:0;-1:-1:-1;16409:18:0;16402:3;:25;;;;;;;;;16398:74;;16452:3;;-1:-1:-1;16457:2:0;-1:-1:-1;16444:16:0;;16398:74;16489:13;16496:2;16500:1;16489:6;:13::i;59173:524::-;59247:4;21777:18;;21794:1;21777:18;;;;59247:4;59277:16;:14;:16::i;:::-;59264:29;-1:-1:-1;59308:29:0;;59304:249;;59480:61;59491:5;59485:12;;;;;;;;59499:41;59480:4;:61::i;59304:249::-;59652:37;59664:10;59676:12;59652:11;:37::i;51894:527::-;51968:4;21777:18;;21794:1;21777:18;;;;51968:4;51998:16;:14;:16::i;:::-;51985:29;-1:-1:-1;52029:29:0;;52025:249;;52201:61;52212:5;52206:12;;;;;;;52025:249;52373:40;52385:10;52397:12;52411:1;52373:11;:40::i;69843:969::-;69968:4;21777:18;;21794:1;21777:18;;;;69968:4;69998:16;:14;:16::i;:::-;69985:29;-1:-1:-1;70029:29:0;;70025:264;;70206:71;70217:5;70211:12;;;;;;;;70225:51;70206:4;:71::i;70025:264::-;70309:16;-1:-1:-1;;;;;70309:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;70309:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;70309:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;70309:33:0;;-1:-1:-1;70357:29:0;;70353:268;;70534:75;70545:5;70539:12;;;;;;;;70553:55;70534:4;:75::i;70353:268::-;70731:73;70752:10;70764:8;70774:11;70787:16;70731:20;:73::i;:::-;70724:80;;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;81576:1026;81726:5;;81657:4;;-1:-1:-1;;;;;81726:5:0;81712:10;:19;81708:127;;81755:68;81760:18;81780:42;81755:4;:68::i;81708:127::-;81942:16;:14;:16::i;:::-;81920:18;;:38;81916:203;;82035:72;82040:22;82064:42;82035:4;:72::i;81916:203::-;22952:4;82191:24;:51;82187:157;;;82266:66;82271:15;82288:43;82266:4;:66::i;82187:157::-;82388:21;;;82420:48;;;;82486:68;;;;;;;;;;;;;;;;;;;;;;;;;82579:14;82574:20;;65575:3786;65749:10;;:74;;;-1:-1:-1;;;65749:74:0;;65787:4;65749:74;;;;-1:-1:-1;;;;;65749:74:0;;;;;;;;;;;;;;;;;;;;;;65670:4;;;;65749:10;;:29;;:74;;;;;;;;;;;;;;65670:4;65749:10;:74;;;5:2:-1;;;;30:1;27;20:12;5:2;65749:74:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;65749:74:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;65749:74:0;;-1:-1:-1;65838:12:0;;65834:146;;65874:94;65885:26;65913:45;65960:7;65874:10;:94::i;:::-;65867:101;;;;;65834:146;66090:16;:14;:16::i;:::-;66068:18;;:38;66064:148;;66130:70;66135:22;66159:40;66130:4;:70::i;66064:148::-;66224:32;;:::i;:::-;-1:-1:-1;;;;;66370:24:0;;;;;;:14;:24;;;;;:38;;;66349:18;;;:59;66539:37;66385:8;66539:27;:37::i;:::-;66516:19;;;66501:75;;;66502:12;;;66501:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;66607:18:0;;-1:-1:-1;66591:4:0;:12;;;:34;;;;;;;;;66587:187;;66649:113;66660:16;66678:63;66748:4;:12;;;66743:18;;;;;;;66649:113;66642:120;;;;;;66587:187;-1:-1:-1;;66856:11:0;:23;66852:157;;;66915:19;;;;66896:16;;;:38;66852:157;;;66967:16;;;:30;;;66852:157;67077:40;67093:5;67100:4;:16;;;67077:15;:40::i;:::-;67066:4;;:51;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67144:14:0;67132:8;;:26;;;;;;;;;67128:131;;67187:8;;67182:65;;67197:49;67182:4;:65::i;67128:131::-;67548:46;67556:4;:19;;;67577:4;:16;;;67548:7;:46::i;:::-;67522:22;;;67507:87;;;67508:12;;;67507:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;67625:18:0;;-1:-1:-1;67609:4:0;:12;;;:34;;;;;;;;;67605:194;;67667:120;67678:16;67696:70;67773:4;:12;;;67768:18;;;;;;;67605:194;67850:39;67858:12;;67872:4;:16;;;67850:7;:39::i;:::-;67826:20;;;67811:78;;;67812:12;;;67811:78;;;;;;;;;;;;;;;;;;;-1:-1:-1;67920:18:0;;-1:-1:-1;67904:4:0;:12;;;:34;;;;;;;;;67900:185;;67962:111;67973:16;67991:61;68059:4;:12;;;68054:18;;;;;;;67900:185;68640:37;68653:5;68660:4;:16;;;68640:12;:37::i;:::-;68629:4;;:48;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68708:14:0;68696:8;;:26;;;;;;;;;68688:70;;;;;-1:-1:-1;;;68688:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;68878:22;;;;;;-1:-1:-1;;;;;68841:24:0;;;;;;;:14;:24;;;;;;;;;:59;;;68952:11;;68911:38;;;;:52;;;;68989:20;;;;68974:12;:35;;;69099:16;;;;69117:22;;69070:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69215:10;;69276:16;;;;;69294:18;;;;69215:98;;-1:-1:-1;;;69215:98:0;;69252:4;69215:98;;;;-1:-1:-1;;;;;69215:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;;;:28;;:98;;;;;:10;;:98;;;;;;;;:10;;:98;;;5:2:-1;;;;30:1;27;20:12;5:2;69215:98:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;69338:14:0;;-1:-1:-1;69333:20:0;;-1:-1:-1;;69333:20:0;;69326:27;65575:3786;-1:-1:-1;;;;;;65575:3786:0:o;2090:271::-;2161:9;2172:4;2190:14;2206:8;2218:13;2226:1;2229;2218:7;:13::i;:::-;2189:42;;-1:-1:-1;2189:42:0;-1:-1:-1;2256:18:0;2248:4;:26;;;;;;;;;2244:75;;-1:-1:-1;2299:4:0;-1:-1:-1;2305:1:0;;-1:-1:-1;2291:16:0;;2244:75;2338:15;2346:3;2351:1;2338:7;:15::i;11579:515::-;11640:9;11651:10;;:::i;:::-;11675:14;11691:20;11715:22;11723:3;11426:4;11715:7;:22::i;:::-;11674:63;;-1:-1:-1;11674:63:0;-1:-1:-1;11760:18:0;11752:4;:26;;;;;;;;;11748:92;;-1:-1:-1;11809:18:0;;;;;;;;;-1:-1:-1;11809:18:0;;11803:4;;-1:-1:-1;11809:18:0;-1:-1:-1;11795:33:0;;11748:92;11853:14;11869:13;11886:31;11894:15;11911:5;11886:7;:31::i;:::-;11852:65;;-1:-1:-1;11852:65:0;-1:-1:-1;11940:18:0;11932:4;:26;;;;;;;;;11928:92;;-1:-1:-1;11989:18:0;;;;;;;;;-1:-1:-1;11989:18:0;;11983:4;;-1:-1:-1;11989:18:0;-1:-1:-1;11975:33:0;;-1:-1:-1;;11975:33:0;11928:92;12060:25;;;;;;;;;;;;-1:-1:-1;;12060:25:0;;-1:-1:-1;11579:515:0;-1:-1:-1;;;;;;11579:515:0:o;16672:213::-;16854:12;11426:4;16854:23;;;16672:213::o;97494:1050::-;97646:10;;97692:26;;;-1:-1:-1;;;97692:26:0;;-1:-1:-1;;;;;97692:26:0;;;;;;;;;;;;;;;97568:5;;97646:10;;;;;97568:5;;97646:10;;97692:14;;:26;;;;;97568:5;;97692:26;;;;;;;;97568:5;97646:10;97692:26;;;5:2:-1;;;;30:1;27;20:12;5:2;97692:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;97692:26:0;;;;97827:16;97866:1;97861:150;;;;98034:2;98029:217;;;;98381:1;98378;98371:12;97861:150;-1:-1:-1;;97955:6:0;-1:-1:-1;97861:150:0;;98029:217;98131:2;98128:1;98125;98110:24;98172:1;98166:8;98156:18;;97820:582;;98430:6;98425:78;;98460:31;98453:38;;;;;;98425:78;-1:-1:-1;98522:14:0;;97494:1050;-1:-1:-1;;;;97494:1050:0:o;54177:4728::-;54284:4;54309:19;;;:42;;-1:-1:-1;54332:19:0;;54309:42;54301:107;;;;-1:-1:-1;;;54301:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54421:27;;:::i;:::-;54565:28;:26;:28::i;:::-;54536:25;;;54521:72;;;54522:12;;;54521:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;54624:18:0;;-1:-1:-1;54608:4:0;:12;;;:34;;;;;;;;;54604:168;;54666:94;54677:16;54695:44;54746:4;:12;;;54741:18;;;;;;;54604:168;54826:18;;54822:1290;;55102:17;;;:34;;;55207:42;;;;;;;;55222:25;;;;55207:42;;55189:77;;55122:14;55189:17;:77::i;:::-;55168:17;;;55153:113;;;55154:12;;;55153:113;;;;;;;;;;;;;;;;;;;-1:-1:-1;55301:18:0;;-1:-1:-1;55285:4:0;:12;;;:34;;;;;;;;;55281:185;;55347:103;55358:16;55376:53;55436:4;:12;;;55431:18;;;;;;;55281:185;54822:1290;;;55768:82;55791:14;55807:42;;;;;;;;55822:4;:25;;;55807:42;;;55768:22;:82::i;:::-;55747:17;;;55732:118;;;55733:12;;;55732:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;55885:18:0;;-1:-1:-1;55869:4:0;:12;;;:34;;;;;;;;;55865:185;;55931:103;55942:16;55960:53;56020:4;:12;;;56015:18;;;;;;;55865:185;56066:17;;;:34;;;54822:1290;56181:10;;56231:17;;;;56181:68;;;-1:-1:-1;;;56181:68:0;;56214:4;56181:68;;;;-1:-1:-1;;;;;56181:68:0;;;;;;;;;;;;;;;;56166:12;;56181:10;;;;;:24;;:68;;;;;;;;;;;;;;;56166:12;56181:10;:68;;;5:2:-1;;;;30:1;27;20:12;5:2;56181:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56181:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56181:68:0;;-1:-1:-1;56264:12:0;;56260:140;;56300:88;56311:26;56339:39;56380:7;56300:10;:88::i;56260:140::-;56510:16;:14;:16::i;:::-;56488:18;;:38;56484:142;;56550:64;56555:22;56579:34;56550:4;:64::i;56484:142::-;56921:39;56929:11;;56942:4;:17;;;56921:7;:39::i;:::-;56898:19;;;56883:77;;;56884:12;;;56883:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;56991:18:0;;-1:-1:-1;56975:4:0;:12;;;:34;;;;;;;;;56971:178;;57033:104;57044:16;57062:54;57123:4;:12;;;57118:18;;;;;;;56971:178;-1:-1:-1;;;;;57209:23:0;;;;;;:13;:23;;;;;;57234:17;;;;57201:51;;57209:23;57201:7;:51::i;:::-;57176:21;;;57161:91;;;57162:12;;;57161:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;57283:18:0;;-1:-1:-1;57267:4:0;:12;;;:34;;;;;;;;;57263:181;;57325:107;57336:16;57354:57;57418:4;:12;;;57413:18;;;;;;;57263:181;57542:4;:17;;;57525:14;:12;:14::i;:::-;:34;57521:155;;;57583:81;57588:29;57619:44;57583:4;:81::i;57521:155::-;58230:42;58244:8;58254:4;:17;;;58230:13;:42::i;:::-;58219:4;;:53;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58303:14:0;58291:8;;:26;;;;;;;;;58283:65;;;;;-1:-1:-1;;;58283:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;58441:19;;;;58427:11;:33;58497:21;;;;-1:-1:-1;;;;;58471:23:0;;;;;;:13;:23;;;;;;;;;:47;;;;58630:17;;;;58596:52;;;;;;;58623:4;;-1:-1:-1;;;;;;;;;;;58596:52:0;;;;;;;58681:17;;;;58700;;;;;58664:54;;;-1:-1:-1;;;;;58664:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58771:10;;58820:17;;;;58839;;;;58771:86;;;-1:-1:-1;;;58771:86:0;;58803:4;58771:86;;;;-1:-1:-1;;;;;58771:86:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:23;;:86;;;;;:10;;:86;;;;;;;:10;;:86;;;5:2:-1;;;;30:1;27;20:12;654:343:0;710:9;;742:6;738:69;;-1:-1:-1;773:18:0;;-1:-1:-1;773:18:0;765:30;;738:69;828:5;;;832:1;828;:5;:1;850:5;;;;;:10;846:144;;-1:-1:-1;885:26:0;;-1:-1:-1;913:1:0;;-1:-1:-1;877:38:0;;846:144;956:18;;-1:-1:-1;976:1:0;-1:-1:-1;948:30:0;;1092:215;1148:9;;1180:6;1176:77;;-1:-1:-1;1211:26:0;;-1:-1:-1;1239:1:0;1203:38;;1176:77;1273:18;1297:1;1293;:5;;;;;;1265:34;;;;1092:215;;;;;:::o;47908:3635::-;48050:10;;:57;;;-1:-1:-1;;;48050:57:0;;48081:4;48050:57;;;;-1:-1:-1;;;;;48050:57:0;;;;;;;;;;;;;;;47978:4;;;;48050:10;;:22;;:57;;;;;;;;;;;;;;47978:4;48050:10;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;48050:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48050:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48050:57:0;;-1:-1:-1;48122:12:0;;48118:138;;48158:86;48169:26;48197:37;48236:7;48158:10;:86::i;:::-;48151:93;;;;;48118:138;48366:16;:14;:16::i;:::-;48344:18;;:38;48340:140;;48406:62;48411:22;48435:32;48406:4;:62::i;48340:140::-;48492:25;;:::i;:::-;48586:35;48602:6;48610:10;48586:15;:35::i;:::-;48575:4;;:46;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48648:14:0;48636:8;;:26;;;;;;;;;48632:123;;48691:8;;48686:57;;48701:41;48686:4;:57::i;:::-;48679:64;;;;;;48632:123;48983:28;:26;:28::i;:::-;48954:25;;;48939:72;;;48940:12;;;48939:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;49042:18:0;;-1:-1:-1;49026:4:0;:12;;;:34;;;;;;;;;49022:166;;49084:92;49095:16;49113:42;49162:4;:12;;;49157:18;;;;;;;49022:166;49234:78;49257:10;49269:42;;;;;;;;49284:4;:25;;;49269:42;;;49234:22;:78::i;:::-;49215:15;;;49200:112;;;49201:12;;;49200:112;;;;;;;;;;;;;;;;;;;-1:-1:-1;49343:18:0;;-1:-1:-1;49327:4:0;:12;;;:34;;;;;;;;;49323:168;;49385:94;49396:16;49414:44;49465:4;:12;;;49460:18;;;;;;;49323:168;49794:37;49802:11;;49815:4;:15;;;49794:7;:37::i;:::-;49771:19;;;49756:75;;;49757:12;;;49756:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;49862:18:0;;-1:-1:-1;49846:4:0;:12;;;:34;;;;;;;;;49842:176;;49904:102;49915:16;49933:52;49992:4;:12;;;49987:18;;;;;;;49842:176;-1:-1:-1;;;;;50078:21:0;;;;;;:13;:21;;;;;;50101:15;;;;50070:47;;50078:21;50070:7;:47::i;:::-;50045:21;;;50030:87;;;50031:12;;;50030:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;50148:18:0;;-1:-1:-1;50132:4:0;:12;;;:34;;;;;;;;;50128:179;;50190:105;50201:16;50219:55;50281:4;:12;;;50276:18;;;;;;;50128:179;50861:32;50874:6;50882:10;50861:12;:32::i;:::-;50850:4;;:43;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50920:14:0;50908:8;;:26;;;;;;;;;50904:117;;50963:8;;50958:51;;50973:35;50958:4;:51::i;50904:117::-;51113:19;;;;51099:11;:33;51167:21;;;;-1:-1:-1;;;;;51143:21:0;;;;;;:13;:21;;;;;;;;;:45;;;;51289:15;;;;;51264:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51353:15;;;;51321:48;;;;;;;-1:-1:-1;;;;;51321:48:0;;;51338:4;;-1:-1:-1;;;;;;;;;;;51321:48:0;;;;;;;;51422:10;;51479:15;;;;51422:73;;;-1:-1:-1;;;51422:73:0;;51452:4;51422:73;;;;-1:-1:-1;;;;;51422:73:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:21;;:73;;;;;:10;;:73;;;;;;;:10;;:73;;;5:2:-1;;;;30:1;27;20:12;5:2;51422:73:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;51520:14:0;;-1:-1:-1;51515:20:0;;-1:-1:-1;;51515:20:0;;51508:27;47908:3635;-1:-1:-1;;;;;47908:3635:0:o;14924:1136::-;14991:9;15002:10;;:::i;:::-;15028:14;15044:24;15072:31;15080:1;:10;;;15092:1;:10;;;15072:7;:31::i;:::-;15027:76;;-1:-1:-1;15027:76:0;-1:-1:-1;15126:18:0;15118:4;:26;;;;;;;;;15114:92;;-1:-1:-1;15175:18:0;;;;;;;;;-1:-1:-1;15175:18:0;;15169:4;;-1:-1:-1;15175:18:0;-1:-1:-1;15161:33:0;;15114:92;15523:14;;15580:42;11466:10;15602:19;15580:7;:42::i;:::-;15522:100;;-1:-1:-1;15522:100:0;-1:-1:-1;15645:18:0;15637:4;:26;;;;;;;;;15633:92;;-1:-1:-1;15694:18:0;;;;;;;;;-1:-1:-1;15694:18:0;;15688:4;;-1:-1:-1;15694:18:0;-1:-1:-1;15680:33:0;;-1:-1:-1;;15680:33:0;15633:92;15738:14;15754:12;15770:51;15778:32;11426:4;15770:7;:51::i;:::-;15737:84;;-1:-1:-1;15737:84:0;-1:-1:-1;15967:18:0;15959:4;:26;;;;;;;;;15952:34;;;;16027:24;;;;;;;;;;;;-1:-1:-1;;16027:24:0;;-1:-1:-1;14924:1136:0;-1:-1:-1;;;;;;;;14924:1136:0:o;60144:3164::-;60302:10;;:63;;;-1:-1:-1;;;60302:63:0;;60335:4;60302:63;;;;-1:-1:-1;;;;;60302:63:0;;;;;;;;;;;;;;;60228:4;;;;60302:10;;:24;;:63;;;;;;;;;;;;;;60228:4;60302:10;:63;;;5:2:-1;;;;30:1;27;20:12;5:2;60302:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;60302:63:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;60302:63:0;;-1:-1:-1;60380:12:0;;60376:140;;60416:88;60427:26;60455:39;60496:7;60416:10;:88::i;60376:140::-;60626:16;:14;:16::i;:::-;60604:18;;:38;60600:142;;60666:64;60671:22;60695:34;60666:4;:64::i;60600:142::-;60851:12;60834:14;:12;:14::i;:::-;:29;60830:143;;;60887:74;60892:29;60923:37;60887:4;:74::i;60830:143::-;60985:27;;:::i;:::-;61300:37;61328:8;61300:27;:37::i;:::-;61277:19;;;61262:75;;;61263:12;;;61262:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;61368:18:0;;-1:-1:-1;61352:4:0;:12;;;:34;;;;;;;;;61348:181;;61410:107;61421:16;61439:57;61503:4;:12;;;61498:18;;;;;;;61348:181;61582:42;61590:4;:19;;;61611:12;61582:7;:42::i;:::-;61556:22;;;61541:83;;;61542:12;;;61541:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;61655:18:0;;-1:-1:-1;61639:4:0;:12;;;:34;;;;;;;;;61635:188;;61697:114;61708:16;61726:64;61797:4;:12;;;61792:18;;;;;;;61635:188;61874:35;61882:12;;61896;61874:7;:35::i;:::-;61850:20;;;61835:74;;;61836:12;;;61835:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;61940:18:0;;-1:-1:-1;61924:4:0;:12;;;:34;;;;;;;;;61920:179;;61982:105;61993:16;62011:55;62073:4;:12;;;62068:18;;;;;;;61920:179;62649:37;62663:8;62673:12;62649:13;:37::i;:::-;62638:4;;:48;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62717:14:0;62705:8;;:26;;;;;;;;;62697:65;;;;;-1:-1:-1;;;62697:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;62882:22;;;;;;-1:-1:-1;;;;;62845:24:0;;;;;;:14;:24;;;;;;;;;:59;;;62956:11;;62915:38;;;;:52;;;;62993:20;;;;;62978:12;:35;;;63100:22;;63069:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63198:10;;:62;;;-1:-1:-1;;;63198:62:0;;63230:4;63198:62;;;;-1:-1:-1;;;;;63198:62:0;;;;;;;;;;;;;;;:10;;;;;:23;;:62;;;;;:10;;:62;;;;;;;:10;;:62;;;5:2:-1;;;;30:1;27;20:12;71379:3176:0;71585:10;;:110;;;-1:-1:-1;;;71585:110:0;;71627:4;71585:110;;;;-1:-1:-1;;;;;71585:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71508:4;;;;71585:10;;:33;;:110;;;;;;;;;;;;;;71508:4;71585:10;:110;;;5:2:-1;;;;30:1;27;20:12;5:2;71585:110:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;71585:110:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;71585:110:0;;-1:-1:-1;71710:12:0;;71706:143;;71746:91;71757:26;71785:42;71829:7;71746:10;:91::i;71706:143::-;71959:16;:14;:16::i;:::-;71937:18;;:38;71933:145;;71999:67;72004:22;72028:37;71999:4;:67::i;71933:145::-;72224:16;:14;:16::i;:::-;72183;-1:-1:-1;;;;;72183:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;72183:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;72183:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;72183:37:0;:57;72179:175;;72264:78;72269:22;72293:48;72264:4;:78::i;72179:175::-;72427:10;-1:-1:-1;;;;;72415:22:0;:8;-1:-1:-1;;;;;72415:22:0;;72411:140;;;72461:78;72466:26;72494:44;72461:4;:78::i;72411:140::-;72606:16;72602:142;;72646:86;72651:36;72689:42;72646:4;:86::i;72602:142::-;-1:-1:-1;;72800:11:0;:23;72796:153;;;72847:90;72852:36;72890:46;72847:4;:90::i;72796:153::-;73085:10;;:95;;;-1:-1:-1;;;73085:95:0;;73134:4;73085:95;;;;-1:-1:-1;;;;;73085:95:0;;;;;;;;;;;;;;;73042:21;;;;73085:10;;;:40;;:95;;;;;;;;;;;;:10;:95;;;5:2:-1;;;;30:1;27;20:12;5:2;73085:95:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;73085:95:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;73085:95:0;;;;;;;;;-1:-1:-1;73085:95:0;-1:-1:-1;73195:21:0;;73191:189;;73240:128;73251:34;73287:62;73351:16;73240:10;:128::i;:::-;73233:135;;;;;;;73191:189;73481:16;-1:-1:-1;;;;;73481:26:0;;73508:8;73481:36;;;;;;;;;;;;;-1:-1:-1;;;;;73481:36:0;-1:-1:-1;;;;;73481:36:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;73481:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;73481:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;73481:36:0;73467:50;;73463:166;;;73541:76;73546:32;73580:36;73541:4;:76::i;73463:166::-;73682:21;73706:51;73723:10;73735:8;73745:11;73706:16;:51::i;:::-;73682:75;-1:-1:-1;73772:40:0;;73768:158;;73836:78;73847:16;73841:23;;;;;;;;73866:47;73836:4;:78::i;:::-;73829:85;;;;;;;;73768:158;74042:57;;;-1:-1:-1;;;74042:57:0;;-1:-1:-1;;;;;74042:57:0;;;;;;;;;;;;;;;;;;;;;;74024:15;;74042:22;;;;;:57;;;;;;;;;;;;;;74024:15;74042:22;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;74042:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;74042:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;74042:57:0;;-1:-1:-1;74118:34:0;;74110:67;;;;;-1:-1:-1;;;74110:67:0;;;;;;;;;;;;-1:-1:-1;;;74110:67:0;;;;;;;;;;;;;;;74242:90;;;-1:-1:-1;;;;;74242:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74385:10;;:122;;;-1:-1:-1;;;74385:122:0;;74426:4;74385:122;;;;-1:-1:-1;;;;;74385:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:32;;:122;;;;;:10;;:122;;;;;;;:10;;:122;;;5:2:-1;;;;30:1;27;20:12;5:2;74385:122:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;74532:14:0;;-1:-1:-1;74527:20:0;;-1:-1:-1;;74527:20:0;;74520:27;71379:3176;-1:-1:-1;;;;;;;;;;71379:3176:0:o;94593:429::-;94724:10;;94752:36;;;-1:-1:-1;;;94752:36:0;;-1:-1:-1;;;;;94752:36:0;;;;;;;94782:4;94752:36;;;;;;94668:5;;94724:10;;;;;94791:6;;94724:10;;94752:15;;:36;;;;;;;;;;;;;;;94724:10;94752:36;;;5:2:-1;;;;30:1;27;20:12;5:2;94752:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;94752:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;94752:36:0;:45;94748:119;;;94821:34;94814:41;;;;;94748:119;94907:6;94883:5;-1:-1:-1;;;;;94883:15:0;;94899:4;94883:21;;;;;;;;;;;;;-1:-1:-1;;;;;94883:21:0;-1:-1:-1;;;;;94883:21:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;94883:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;94883:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;94883:21:0;:30;94879:102;;;94937:32;94930:39;;;;;94879:102;-1:-1:-1;95000:14:0;;94593:429;-1:-1:-1;;;94593:429:0:o;95728:1063::-;95873:10;;95919:47;;;-1:-1:-1;;;95919:47:0;;-1:-1:-1;;;;;95919:47:0;;;;;;;95952:4;95919:47;;;;;;;;;;;;95795:5;;95873:10;;;;;95795:5;;95873:10;;95919:18;;:47;;;;;95795:5;;95919:47;;;;;;;;95795:5;95873:10;95919:47;;;5:2:-1;;;;30:1;27;20:12;5:2;95919:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;95919:47:0;;;;96075:16;96114:1;96109:150;;;;96282:2;96277:217;;;;96629:1;96626;96619:12;96109:150;-1:-1:-1;;96203:6:0;-1:-1:-1;96109:150:0;;96277:217;96379:2;96376:1;96373;96358:24;96420:1;96414:8;96404:18;;96068:582;;96678:6;96673:77;;96708:30;96701:37;;;;;;14579:337;14667:9;14678:4;14696:13;14711:19;;:::i;:::-;14734:31;14749:6;14757:7;14734:14;:31::i;90504:8522::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;90504:8522:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;90504:8522:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;90504:8522:0;;;;;;;;;;;;;;;;;;-1:-1:-1;90504:8522:0;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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