Source Code
Overview
BTT Balance
More Info
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
10843426 | 903 days ago | 0 BTT | ||||
10843426 | 903 days ago | 0 BTT | ||||
10843426 | 903 days ago | 0 BTT | ||||
10838805 | 903 days ago | 0 BTT | ||||
10838805 | 903 days ago | 0 BTT | ||||
10838805 | 903 days ago | 0 BTT | ||||
10838805 | 903 days ago | 0 BTT | ||||
10838805 | 903 days ago | 0 BTT | ||||
10833249 | 903 days ago | 0 BTT | ||||
10833249 | 903 days ago | 0 BTT | ||||
10833249 | 903 days ago | 0 BTT | ||||
10833249 | 903 days ago | 0 BTT | ||||
10833146 | 903 days ago | 0 BTT | ||||
10833146 | 903 days ago | 0 BTT | ||||
10831883 | 903 days ago | 0 BTT | ||||
10831883 | 903 days ago | 0 BTT | ||||
10831883 | 903 days ago | 0 BTT | ||||
10831883 | 903 days ago | 0 BTT | ||||
10831826 | 903 days ago | 0 BTT | ||||
10831826 | 903 days ago | 0 BTT | ||||
10831809 | 903 days ago | 0 BTT | ||||
10831809 | 903 days ago | 0 BTT | ||||
10454274 | 912 days ago | 0 BTT | ||||
10454274 | 912 days ago | 0 BTT | ||||
10454274 | 912 days ago | 0 BTT |
Loading...
Loading
Contract Name:
AErc20Delegate
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at testnet.bttcscan.com on 2022-05-16 */ // File: contracts/ComptrollerInterface.sol pragma solidity ^0.5.16; contract ComptrollerInterface { /// @notice Indicator that this is a Comptroller contract (for inspection) bool public constant isComptroller = true; /*** Assets You Are In ***/ function enterMarkets(address[] calldata aTokens) external returns (uint[] memory); function exitMarket(address aToken) external returns (uint); /*** Policy Hooks ***/ 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); } // File: contracts/InterestRateModel.sol pragma solidity ^0.5.16; /** * @title Aquarius's InterestRateModel Interface * @author Aquarius */ contract InterestRateModel { /// @notice Indicator that this is an InterestRateModel contract (for inspection) bool public constant isInterestRateModel = true; /** * @notice Calculates the current borrow interest rate per block * @param cash The total amount of cash the market has * @param borrows The total amount of borrows the market has outstanding * @param reserves The total amount of reserves the market has * @return The borrow rate per block (as a percentage, and scaled by 1e18) */ function getBorrowRate(uint cash, uint borrows, uint reserves) external view returns (uint); /** * @notice Calculates the current supply interest rate per block * @param cash The total amount of cash the market has * @param borrows The total amount of borrows the market has outstanding * @param reserves The total amount of reserves the market has * @param reserveFactorMantissa The current reserve factor the market has * @return The supply rate per block (as a percentage, and scaled by 1e18) */ function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) external view returns (uint); } // File: contracts/EIP20NonStandardInterface.sol pragma solidity ^0.5.16; /** * @title EIP20NonStandardInterface * @dev Version of ERC20 with no return values for `transfer` and `transferFrom` * See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ interface EIP20NonStandardInterface { /** * @notice Get the total number of tokens in circulation * @return The supply of tokens */ function totalSupply() external view returns (uint256); /** * @notice Gets the balance of the specified address * @param owner The address from which the balance will be retrieved * @return The balance */ function balanceOf(address owner) external view returns (uint256 balance); /// /// !!!!!!!!!!!!!! /// !!! NOTICE !!! `transfer` does not return a value, in violation of the ERC-20 specification /// !!!!!!!!!!!!!! /// /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param amount The number of tokens to transfer */ function transfer(address dst, uint256 amount) external; /// /// !!!!!!!!!!!!!! /// !!! NOTICE !!! `transferFrom` does not return a value, in violation of the ERC-20 specification /// !!!!!!!!!!!!!! /// /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param amount The number of tokens to transfer */ function transferFrom(address src, address dst, uint256 amount) external; /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved * @return Whether or not the approval succeeded */ function approve(address spender, uint256 amount) external returns (bool success); /** * @notice Get the current allowance from `owner` for `spender` * @param owner The address of the account which owns the tokens to be spent * @param spender The address of the account which may transfer tokens * @return The number of tokens allowed to be spent */ function allowance(address owner, address spender) external view returns (uint256 remaining); event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); } // File: contracts/ATokenInterfaces.sol pragma solidity ^0.5.16; contract ATokenStorage { /** * @dev Guard variable for re-entrancy checks */ bool internal _notEntered; /** * @notice EIP-20 token name for this token */ string public name; /** * @notice EIP-20 token symbol for this token */ string public symbol; /** * @notice EIP-20 token decimals for this token */ uint8 public decimals; /** * @notice Maximum borrow rate that can ever be applied (.0005% / block) */ uint internal constant borrowRateMaxMantissa = 0.0005e16; /** * @notice Maximum fraction of interest that can be set aside for reserves */ uint internal constant reserveFactorMaxMantissa = 1e18; /** * @notice Administrator for this contract */ address payable public admin; /** * @notice Pending administrator for this contract */ address payable public pendingAdmin; /** * @notice Contract which oversees inter-aToken operations */ ComptrollerInterface public comptroller; /** * @notice Model which tells what the current interest rate should be */ InterestRateModel public interestRateModel; /** * @notice Initial exchange rate used when minting the first ATokens (used when totalSupply = 0) */ uint internal initialExchangeRateMantissa; /** * @notice Fraction of interest currently set aside for reserves */ uint public reserveFactorMantissa; /** * @notice Block number that interest was last accrued at */ uint public accrualBlockNumber; /** * @notice Accumulator of the total earned interest rate since the opening of the market */ uint public borrowIndex; /** * @notice Total amount of outstanding borrows of the underlying in this market */ uint public totalBorrows; /** * @notice Total amount of reserves of the underlying held in this market */ uint public totalReserves; /** * @notice Total number of tokens in circulation */ uint public totalSupply; /** * @notice Official record of token balances for each account */ mapping (address => uint) internal accountTokens; /** * @notice Approved token transfer amounts on behalf of others */ mapping (address => mapping (address => uint)) internal transferAllowances; /** * @notice Container for borrow balance information * @member principal Total balance (with accrued interest), after applying the most recent balance-changing action * @member interestIndex Global borrowIndex as of the most recent balance-changing action */ struct BorrowSnapshot { uint principal; uint interestIndex; } /** * @notice Mapping of account addresses to outstanding borrow balances */ mapping(address => BorrowSnapshot) internal accountBorrows; /** * @notice Share of seized collateral that is added to reserves */ uint public constant protocolSeizeShareMantissa = 5e16; //2.8% } contract ATokenInterface is ATokenStorage { /** * @notice Indicator that this is a AToken contract (for inspection) */ bool public constant isAToken = true; /*** Market Events ***/ /** * @notice Event emitted when interest is accrued */ event AccrueInterest(uint cashPrior, uint interestAccumulated, uint borrowIndex, uint totalBorrows); /** * @notice Event emitted when tokens are minted */ event Mint(address minter, uint mintAmount, uint mintTokens); /** * @notice Event emitted when tokens are redeemed */ event Redeem(address redeemer, uint redeemAmount, uint redeemTokens); /** * @notice Event emitted when underlying is borrowed */ event Borrow(address borrower, uint borrowAmount, uint accountBorrows, uint totalBorrows); /** * @notice Event emitted when a borrow is repaid */ event RepayBorrow(address payer, address borrower, uint repayAmount, uint accountBorrows, uint totalBorrows); /** * @notice Event emitted when a borrow is liquidated */ event LiquidateBorrow(address liquidator, address borrower, uint repayAmount, address 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 comptroller is changed */ event NewComptroller(ComptrollerInterface oldComptroller, ComptrollerInterface newComptroller); /** * @notice Event emitted when interestRateModel is changed */ event NewMarketInterestRateModel(InterestRateModel oldInterestRateModel, InterestRateModel newInterestRateModel); /** * @notice Event emitted when the reserve factor is changed */ event NewReserveFactor(uint oldReserveFactorMantissa, uint newReserveFactorMantissa); /** * @notice Event emitted when the reserves are added */ event ReservesAdded(address benefactor, uint addAmount, uint newTotalReserves); /** * @notice Event emitted when the reserves are reduced */ event ReservesReduced(address admin, uint reduceAmount, uint newTotalReserves); /** * @notice EIP20 Transfer event */ event Transfer(address indexed from, address indexed to, uint amount); /** * @notice EIP20 Approval event */ event Approval(address indexed owner, address indexed spender, uint amount); /** * @notice Failure event */ event Failure(uint error, uint info, uint detail); /*** User Interface ***/ function transfer(address dst, uint amount) external returns (bool); function transferFrom(address src, address dst, uint amount) external returns (bool); function approve(address spender, uint amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint); function balanceOf(address owner) external view returns (uint); function balanceOfUnderlying(address owner) external returns (uint); function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint); function borrowRatePerBlock() external view returns (uint); function supplyRatePerBlock() external view returns (uint); function totalBorrowsCurrent() external returns (uint); function borrowBalanceCurrent(address account) external returns (uint); function borrowBalanceStored(address account) public view returns (uint); function exchangeRateCurrent() public returns (uint); function exchangeRateStored() public view returns (uint); function getCash() external view returns (uint); function accrueInterest() public returns (uint); function seize(address liquidator, address borrower, uint seizeTokens) external returns (uint); /*** Admin Functions ***/ function _setPendingAdmin(address payable newPendingAdmin) external returns (uint); function _acceptAdmin() external returns (uint); function _setComptroller(ComptrollerInterface newComptroller) public returns (uint); function _setReserveFactor(uint newReserveFactorMantissa) external returns (uint); function _reduceReserves(uint reduceAmount) external returns (uint); function _setInterestRateModel(InterestRateModel newInterestRateModel) public returns (uint); } contract AErc20Storage { /** * @notice Underlying asset for this AToken */ address public underlying; } contract AErc20Interface is AErc20Storage { /*** User Interface ***/ function mint(uint mintAmount) external returns (uint); function redeem(uint redeemTokens) external returns (uint); function redeemUnderlying(uint redeemAmount) external returns (uint); function borrow(uint borrowAmount) external returns (uint); function repayBorrow(uint repayAmount) external returns (uint); function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint); function liquidateBorrow(address borrower, uint repayAmount, ATokenInterface aTokenCollateral) external returns (uint); function sweepToken(EIP20NonStandardInterface token) external; /*** Admin Functions ***/ function _addReserves(uint addAmount) external returns (uint); } contract CDelegationStorage { /** * @notice Implementation address for this contract */ address public implementation; } contract CDelegatorInterface is CDelegationStorage { /** * @notice Emitted when implementation is changed */ event NewImplementation(address oldImplementation, address newImplementation); /** * @notice Called by the admin to update the implementation of the delegator * @param implementation_ The address of the new implementation for delegation * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation */ function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public; } contract ADelegateInterface is CDelegationStorage { /** * @notice Called by the delegator on a delegate to initialize it for duty * @dev Should revert if any issues arise which make it unfit for delegation * @param data The encoded bytes data for any initialization */ function _becomeImplementation(bytes memory data) public; /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() public; } // File: contracts/ErrorReporter.sol pragma solidity ^0.5.16; contract ComptrollerErrorReporter { enum Error { NO_ERROR, UNAUTHORIZED, COMPTROLLER_MISMATCH, INSUFFICIENT_SHORTFALL, INSUFFICIENT_LIQUIDITY, INVALID_CLOSE_FACTOR, INVALID_COLLATERAL_FACTOR, INVALID_LIQUIDATION_INCENTIVE, MARKET_NOT_ENTERED, // no longer possible MARKET_NOT_LISTED, MARKET_ALREADY_LISTED, MATH_ERROR, NONZERO_BORROW_BALANCE, PRICE_ERROR, REJECTION, SNAPSHOT_ERROR, TOO_MANY_ASSETS, TOO_MUCH_REPAY } enum FailureInfo { ACCEPT_ADMIN_PENDING_ADMIN_CHECK, ACCEPT_PENDING_IMPLEMENTATION_ADDRESS_CHECK, EXIT_MARKET_BALANCE_OWED, EXIT_MARKET_REJECTION, SET_CLOSE_FACTOR_OWNER_CHECK, SET_CLOSE_FACTOR_VALIDATION, SET_COLLATERAL_FACTOR_OWNER_CHECK, SET_COLLATERAL_FACTOR_NO_EXISTS, SET_COLLATERAL_FACTOR_VALIDATION, SET_COLLATERAL_FACTOR_WITHOUT_PRICE, SET_IMPLEMENTATION_OWNER_CHECK, SET_LIQUIDATION_INCENTIVE_OWNER_CHECK, SET_LIQUIDATION_INCENTIVE_VALIDATION, SET_MAX_ASSETS_OWNER_CHECK, SET_PENDING_ADMIN_OWNER_CHECK, SET_PENDING_IMPLEMENTATION_OWNER_CHECK, SET_PRICE_ORACLE_OWNER_CHECK, SUPPORT_MARKET_EXISTS, SUPPORT_MARKET_OWNER_CHECK, SET_PAUSE_GUARDIAN_OWNER_CHECK } /** * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary * contract-specific code that enables us to report opaque error codes from upgradeable contracts. **/ event Failure(uint error, uint info, uint detail); /** * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator */ function fail(Error err, FailureInfo info) internal returns (uint) { emit Failure(uint(err), uint(info), 0); return uint(err); } /** * @dev use this when reporting an opaque error from an upgradeable collaborator contract */ function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) { emit Failure(uint(err), uint(info), opaqueError); return uint(err); } } contract TokenErrorReporter { enum Error { NO_ERROR, UNAUTHORIZED, BAD_INPUT, COMPTROLLER_REJECTION, COMPTROLLER_CALCULATION_ERROR, INTEREST_RATE_MODEL_ERROR, INVALID_ACCOUNT_PAIR, INVALID_CLOSE_AMOUNT_REQUESTED, INVALID_COLLATERAL_FACTOR, MATH_ERROR, MARKET_NOT_FRESH, MARKET_NOT_LISTED, TOKEN_INSUFFICIENT_ALLOWANCE, TOKEN_INSUFFICIENT_BALANCE, TOKEN_INSUFFICIENT_CASH, TOKEN_TRANSFER_IN_FAILED, TOKEN_TRANSFER_OUT_FAILED } /* * Note: FailureInfo (but not Error) is kept in alphabetical order * This is because FailureInfo grows significantly faster, and * the order of Error has some meaning, while the order of FailureInfo * is entirely arbitrary. */ enum FailureInfo { ACCEPT_ADMIN_PENDING_ADMIN_CHECK, ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED, ACCRUE_INTEREST_BORROW_RATE_CALCULATION_FAILED, ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED, ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED, ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED, ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, BORROW_ACCRUE_INTEREST_FAILED, BORROW_CASH_NOT_AVAILABLE, BORROW_FRESHNESS_CHECK, BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, BORROW_MARKET_NOT_LISTED, BORROW_COMPTROLLER_REJECTION, LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED, LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED, LIQUIDATE_COLLATERAL_FRESHNESS_CHECK, LIQUIDATE_COMPTROLLER_REJECTION, LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED, LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX, LIQUIDATE_CLOSE_AMOUNT_IS_ZERO, LIQUIDATE_FRESHNESS_CHECK, LIQUIDATE_LIQUIDATOR_IS_BORROWER, LIQUIDATE_REPAY_BORROW_FRESH_FAILED, LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED, LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED, LIQUIDATE_SEIZE_COMPTROLLER_REJECTION, LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER, LIQUIDATE_SEIZE_TOO_MUCH, MINT_ACCRUE_INTEREST_FAILED, MINT_COMPTROLLER_REJECTION, MINT_EXCHANGE_CALCULATION_FAILED, MINT_EXCHANGE_RATE_READ_FAILED, MINT_FRESHNESS_CHECK, MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, MINT_TRANSFER_IN_FAILED, MINT_TRANSFER_IN_NOT_POSSIBLE, REDEEM_ACCRUE_INTEREST_FAILED, REDEEM_COMPTROLLER_REJECTION, REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED, REDEEM_EXCHANGE_RATE_READ_FAILED, REDEEM_FRESHNESS_CHECK, REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, REDEEM_TRANSFER_OUT_NOT_POSSIBLE, REDUCE_RESERVES_ACCRUE_INTEREST_FAILED, REDUCE_RESERVES_ADMIN_CHECK, REDUCE_RESERVES_CASH_NOT_AVAILABLE, REDUCE_RESERVES_FRESH_CHECK, REDUCE_RESERVES_VALIDATION, REPAY_BEHALF_ACCRUE_INTEREST_FAILED, REPAY_BORROW_ACCRUE_INTEREST_FAILED, REPAY_BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, REPAY_BORROW_COMPTROLLER_REJECTION, REPAY_BORROW_FRESHNESS_CHECK, REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, REPAY_BORROW_TRANSFER_IN_NOT_POSSIBLE, SET_COLLATERAL_FACTOR_OWNER_CHECK, SET_COLLATERAL_FACTOR_VALIDATION, SET_COMPTROLLER_OWNER_CHECK, SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED, SET_INTEREST_RATE_MODEL_FRESH_CHECK, SET_INTEREST_RATE_MODEL_OWNER_CHECK, SET_MAX_ASSETS_OWNER_CHECK, SET_ORACLE_MARKET_NOT_LISTED, SET_PENDING_ADMIN_OWNER_CHECK, SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED, SET_RESERVE_FACTOR_ADMIN_CHECK, SET_RESERVE_FACTOR_FRESH_CHECK, SET_RESERVE_FACTOR_BOUNDS_CHECK, TRANSFER_COMPTROLLER_REJECTION, TRANSFER_NOT_ALLOWED, TRANSFER_NOT_ENOUGH, TRANSFER_TOO_MUCH, ADD_RESERVES_ACCRUE_INTEREST_FAILED, ADD_RESERVES_FRESH_CHECK, ADD_RESERVES_TRANSFER_IN_NOT_POSSIBLE } /** * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary * contract-specific code that enables us to report opaque error codes from upgradeable contracts. **/ event Failure(uint error, uint info, uint detail); /** * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator */ function fail(Error err, FailureInfo info) internal returns (uint) { emit Failure(uint(err), uint(info), 0); return uint(err); } /** * @dev use this when reporting an opaque error from an upgradeable collaborator contract */ function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) { emit Failure(uint(err), uint(info), opaqueError); return uint(err); } } // File: contracts/CarefulMath.sol pragma solidity ^0.5.16; /** * @title Careful Math * @author Aquarius * @notice Derived from OpenZeppelin's SafeMath library * https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol */ contract CarefulMath { /** * @dev Possible error codes that we can return */ enum MathError { NO_ERROR, DIVISION_BY_ZERO, INTEGER_OVERFLOW, INTEGER_UNDERFLOW } /** * @dev Multiplies two numbers, returns an error on overflow. */ function mulUInt(uint a, uint b) internal pure returns (MathError, uint) { if (a == 0) { return (MathError.NO_ERROR, 0); } uint c = a * b; if (c / a != b) { return (MathError.INTEGER_OVERFLOW, 0); } else { return (MathError.NO_ERROR, c); } } /** * @dev Integer division of two numbers, truncating the quotient. */ function divUInt(uint a, uint b) internal pure returns (MathError, uint) { if (b == 0) { return (MathError.DIVISION_BY_ZERO, 0); } return (MathError.NO_ERROR, a / b); } /** * @dev Subtracts two numbers, returns an error on overflow (i.e. if subtrahend is greater than minuend). */ function subUInt(uint a, uint b) internal pure returns (MathError, uint) { if (b <= a) { return (MathError.NO_ERROR, a - b); } else { return (MathError.INTEGER_UNDERFLOW, 0); } } /** * @dev Adds two numbers, returns an error on overflow. */ function addUInt(uint a, uint b) internal pure returns (MathError, uint) { uint c = a + b; if (c >= a) { return (MathError.NO_ERROR, c); } else { return (MathError.INTEGER_OVERFLOW, 0); } } /** * @dev add a and b and then subtract c */ function addThenSubUInt(uint a, uint b, uint c) internal pure returns (MathError, uint) { (MathError err0, uint sum) = addUInt(a, b); if (err0 != MathError.NO_ERROR) { return (err0, 0); } return subUInt(sum, c); } } // File: contracts/ExponentialNoError.sol pragma solidity ^0.5.16; /** * @title Exponential module for storing fixed-precision decimals * @author Aquarius * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places. * Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is: * `Exp({mantissa: 5100000000000000000})`. */ contract ExponentialNoError { uint constant expScale = 1e18; uint constant doubleScale = 1e36; uint constant halfExpScale = expScale/2; uint constant mantissaOne = expScale; struct Exp { uint mantissa; } struct Double { uint mantissa; } /** * @dev Truncates the given exp to a whole number value. * For example, truncate(Exp{mantissa: 15 * expScale}) = 15 */ function truncate(Exp memory exp) pure internal returns (uint) { // Note: We are not using careful math here as we're performing a division that cannot fail return exp.mantissa / expScale; } /** * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer. */ function mul_ScalarTruncate(Exp memory a, uint scalar) pure internal returns (uint) { Exp memory product = mul_(a, scalar); return truncate(product); } /** * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer. */ function mul_ScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (uint) { Exp memory product = mul_(a, scalar); return add_(truncate(product), addend); } /** * @dev Checks if first Exp is less than second Exp. */ function lessThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa < right.mantissa; } /** * @dev Checks if left Exp <= right Exp. */ function lessThanOrEqualExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa <= right.mantissa; } /** * @dev Checks if left Exp > right Exp. */ function greaterThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa > right.mantissa; } /** * @dev returns true if Exp is exactly zero */ function isZeroExp(Exp memory value) pure internal returns (bool) { return value.mantissa == 0; } function safe224(uint n, string memory errorMessage) pure internal returns (uint224) { require(n < 2**224, errorMessage); return uint224(n); } function safe32(uint n, string memory errorMessage) pure internal returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function add_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: add_(a.mantissa, b.mantissa)}); } function add_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: add_(a.mantissa, b.mantissa)}); } function add_(uint a, uint b) pure internal returns (uint) { return add_(a, b, "addition overflow"); } function add_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { uint c = a + b; require(c >= a, errorMessage); return c; } function sub_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: sub_(a.mantissa, b.mantissa)}); } function sub_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: sub_(a.mantissa, b.mantissa)}); } function sub_(uint a, uint b) pure internal returns (uint) { return sub_(a, b, "subtraction underflow"); } function sub_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { require(b <= a, errorMessage); return a - b; } function mul_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: mul_(a.mantissa, b.mantissa) / expScale}); } function mul_(Exp memory a, uint b) pure internal returns (Exp memory) { return Exp({mantissa: mul_(a.mantissa, b)}); } function mul_(uint a, Exp memory b) pure internal returns (uint) { return mul_(a, b.mantissa) / expScale; } function mul_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: mul_(a.mantissa, b.mantissa) / doubleScale}); } function mul_(Double memory a, uint b) pure internal returns (Double memory) { return Double({mantissa: mul_(a.mantissa, b)}); } function mul_(uint a, Double memory b) pure internal returns (uint) { return mul_(a, b.mantissa) / doubleScale; } function mul_(uint a, uint b) pure internal returns (uint) { return mul_(a, b, "multiplication overflow"); } function mul_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { if (a == 0 || b == 0) { return 0; } uint c = a * b; require(c / a == b, errorMessage); return c; } function div_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: div_(mul_(a.mantissa, expScale), b.mantissa)}); } function div_(Exp memory a, uint b) pure internal returns (Exp memory) { return Exp({mantissa: div_(a.mantissa, b)}); } function div_(uint a, Exp memory b) pure internal returns (uint) { return div_(mul_(a, expScale), b.mantissa); } function div_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: div_(mul_(a.mantissa, doubleScale), b.mantissa)}); } function div_(Double memory a, uint b) pure internal returns (Double memory) { return Double({mantissa: div_(a.mantissa, b)}); } function div_(uint a, Double memory b) pure internal returns (uint) { return div_(mul_(a, doubleScale), b.mantissa); } function div_(uint a, uint b) pure internal returns (uint) { return div_(a, b, "divide by zero"); } function div_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { require(b > 0, errorMessage); return a / b; } function fraction(uint a, uint b) pure internal returns (Double memory) { return Double({mantissa: div_(mul_(a, doubleScale), b)}); } } // File: contracts/Exponential.sol pragma solidity ^0.5.16; /** * @title Exponential module for storing fixed-precision decimals * @author Aquarius * @dev Legacy contract for compatibility reasons with existing contracts that still use MathError * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places. * Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is: * `Exp({mantissa: 5100000000000000000})`. */ contract Exponential is CarefulMath, ExponentialNoError { /** * @dev Creates an exponential from numerator and denominator values. * Note: Returns an error if (`num` * 10e18) > MAX_INT, * or if `denom` is zero. */ function getExp(uint num, uint denom) pure internal returns (MathError, Exp memory) { (MathError err0, uint scaledNumerator) = mulUInt(num, expScale); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } (MathError err1, uint rational) = divUInt(scaledNumerator, denom); if (err1 != MathError.NO_ERROR) { return (err1, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: rational})); } /** * @dev Adds two exponentials, returning a new exponential. */ function addExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError error, uint result) = addUInt(a.mantissa, b.mantissa); return (error, Exp({mantissa: result})); } /** * @dev Subtracts two exponentials, returning a new exponential. */ function subExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError error, uint result) = subUInt(a.mantissa, b.mantissa); return (error, Exp({mantissa: result})); } /** * @dev Multiply an Exp by a scalar, returning a new Exp. */ function mulScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) { (MathError err0, uint scaledMantissa) = mulUInt(a.mantissa, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: scaledMantissa})); } /** * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer. */ function mulScalarTruncate(Exp memory a, uint scalar) pure internal returns (MathError, uint) { (MathError err, Exp memory product) = mulScalar(a, scalar); if (err != MathError.NO_ERROR) { return (err, 0); } return (MathError.NO_ERROR, truncate(product)); } /** * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer. */ function mulScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (MathError, uint) { (MathError err, Exp memory product) = mulScalar(a, scalar); if (err != MathError.NO_ERROR) { return (err, 0); } return addUInt(truncate(product), addend); } /** * @dev Divide an Exp by a scalar, returning a new Exp. */ function divScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) { (MathError err0, uint descaledMantissa) = divUInt(a.mantissa, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: descaledMantissa})); } /** * @dev Divide a scalar by an Exp, returning a new Exp. */ function divScalarByExp(uint scalar, Exp memory divisor) pure internal returns (MathError, Exp memory) { /* We are doing this as: getExp(mulUInt(expScale, scalar), divisor.mantissa) How it works: Exp = a / b; Scalar = s; `s / (a / b)` = `b * s / a` and since for an Exp `a = mantissa, b = expScale` */ (MathError err0, uint numerator) = mulUInt(expScale, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return getExp(numerator, divisor.mantissa); } /** * @dev Divide a scalar by an Exp, then truncate to return an unsigned integer. */ function divScalarByExpTruncate(uint scalar, Exp memory divisor) pure internal returns (MathError, uint) { (MathError err, Exp memory fraction) = divScalarByExp(scalar, divisor); if (err != MathError.NO_ERROR) { return (err, 0); } return (MathError.NO_ERROR, truncate(fraction)); } /** * @dev Multiplies two exponentials, returning a new exponential. */ function mulExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError err0, uint doubleScaledProduct) = mulUInt(a.mantissa, b.mantissa); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } // We add half the scale before dividing so that we get rounding instead of truncation. // See "Listing 6" and text above it at https://accu.org/index.php/journals/1717 // Without this change, a result like 6.6...e-19 will be truncated to 0 instead of being rounded to 1e-18. (MathError err1, uint doubleScaledProductWithHalfScale) = addUInt(halfExpScale, doubleScaledProduct); if (err1 != MathError.NO_ERROR) { return (err1, Exp({mantissa: 0})); } (MathError err2, uint product) = divUInt(doubleScaledProductWithHalfScale, expScale); // The only error `div` can return is MathError.DIVISION_BY_ZERO but we control `expScale` and it is not zero. assert(err2 == MathError.NO_ERROR); return (MathError.NO_ERROR, Exp({mantissa: product})); } /** * @dev Multiplies two exponentials given their mantissas, returning a new exponential. */ function mulExp(uint a, uint b) pure internal returns (MathError, Exp memory) { return mulExp(Exp({mantissa: a}), Exp({mantissa: b})); } /** * @dev Multiplies three exponentials, returning a new exponential. */ function mulExp3(Exp memory a, Exp memory b, Exp memory c) pure internal returns (MathError, Exp memory) { (MathError err, Exp memory ab) = mulExp(a, b); if (err != MathError.NO_ERROR) { return (err, ab); } return mulExp(ab, c); } /** * @dev Divides two exponentials, returning a new exponential. * (a/scale) / (b/scale) = (a/scale) * (scale/b) = a/b, * which we can scale as an Exp by calling getExp(a.mantissa, b.mantissa) */ function divExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { return getExp(a.mantissa, b.mantissa); } } // File: contracts/EIP20Interface.sol pragma solidity ^0.5.16; /** * @title ERC 20 Token Standard Interface * https://eips.ethereum.org/EIPS/eip-20 */ interface EIP20Interface { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); /** * @notice Get the total number of tokens in circulation * @return The supply of tokens */ function totalSupply() external view returns (uint256); /** * @notice Gets the balance of the specified address * @param owner The address from which the balance will be retrieved * @return The balance */ function balanceOf(address owner) external view returns (uint256 balance); /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transfer(address dst, uint256 amount) external returns (bool success); /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferFrom(address src, address dst, uint256 amount) external returns (bool success); /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved (-1 means infinite) * @return Whether or not the approval succeeded */ function approve(address spender, uint256 amount) external returns (bool success); /** * @notice Get the current allowance from `owner` for `spender` * @param owner The address of the account which owns the tokens to be spent * @param spender The address of the account which may transfer tokens * @return The number of tokens allowed to be spent (-1 means infinite) */ function allowance(address owner, address spender) external view returns (uint256 remaining); event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); } // File: contracts/AToken.sol pragma solidity ^0.5.16; /** * @title Aquarius's AToken Contract * @notice Abstract base for ATokens * @author Aquarius */ contract AToken is ATokenInterface, Exponential, TokenErrorReporter { /** * @notice Initialize the money market * @param comptroller_ The address of the Comptroller * @param interestRateModel_ The address of the interest rate model * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 * @param name_ EIP-20 name of this token * @param symbol_ EIP-20 symbol of this token * @param decimals_ EIP-20 decimal precision of this token */ function initialize(ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_) public { require(msg.sender == admin, "only admin may initialize the market"); require(accrualBlockNumber == 0 && borrowIndex == 0, "market may only be initialized once"); // Set initial exchange rate initialExchangeRateMantissa = initialExchangeRateMantissa_; require(initialExchangeRateMantissa > 0, "initial exchange rate must be greater than zero."); // Set the comptroller uint err = _setComptroller(comptroller_); require(err == uint(Error.NO_ERROR), "setting comptroller failed"); // Initialize block number and borrow index (block number mocks depend on comptroller being set) accrualBlockNumber = getBlockNumber(); borrowIndex = mantissaOne; // Set the interest rate model (depends on block number / borrow index) err = _setInterestRateModelFresh(interestRateModel_); require(err == uint(Error.NO_ERROR), "setting interest rate model failed"); name = name_; symbol = symbol_; decimals = decimals_; // The counter starts true to prevent changing it from zero to non-zero (i.e. smaller cost/refund) _notEntered = true; } /** * @notice Transfer `tokens` tokens from `src` to `dst` by `spender` * @dev Called by both `transfer` and `transferFrom` internally * @param spender The address of the account performing the transfer * @param src The address of the source account * @param dst The address of the destination account * @param tokens The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) { /* Fail if transfer not allowed */ uint allowed = comptroller.transferAllowed(address(this), src, dst, tokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.TRANSFER_COMPTROLLER_REJECTION, allowed); } /* Do not allow self-transfers */ if (src == dst) { return fail(Error.BAD_INPUT, FailureInfo.TRANSFER_NOT_ALLOWED); } /* Get the allowance, infinite for the account owner */ uint startingAllowance = 0; if (spender == src) { startingAllowance = uint(-1); } else { startingAllowance = transferAllowances[src][spender]; } /* Do the calculations, checking for {under,over}flow */ MathError mathErr; uint allowanceNew; uint sraTokensNew; uint dstTokensNew; (mathErr, allowanceNew) = subUInt(startingAllowance, tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ALLOWED); } (mathErr, sraTokensNew) = 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] = sraTokensNew; 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); // unused function // comptroller.transferVerify(address(this), src, dst, tokens); return uint(Error.NO_ERROR); } /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transfer(address dst, uint256 amount) external nonReentrant returns (bool) { return transferTokens(msg.sender, msg.sender, dst, amount) == uint(Error.NO_ERROR); } /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferFrom(address src, address dst, uint256 amount) external nonReentrant returns (bool) { return transferTokens(msg.sender, src, dst, amount) == uint(Error.NO_ERROR); } /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved (-1 means infinite) * @return Whether or not the approval succeeded */ function approve(address spender, uint256 amount) external returns (bool) { address src = msg.sender; transferAllowances[src][spender] = amount; emit Approval(src, spender, amount); return true; } /** * @notice Get the current allowance from `owner` for `spender` * @param owner The address of the account which owns the tokens to be spent * @param spender The address of the account which may transfer tokens * @return The number of tokens allowed to be spent (-1 means infinite) */ function allowance(address owner, address spender) external view returns (uint256) { return transferAllowances[owner][spender]; } /** * @notice Get the token balance of the `owner` * @param owner The address of the account to query * @return The number of tokens owned by `owner` */ function balanceOf(address owner) external view returns (uint256) { return accountTokens[owner]; } /** * @notice Get the underlying balance of the `owner` * @dev This also accrues interest in a transaction * @param owner The address of the account to query * @return The amount of underlying owned by `owner` */ function balanceOfUnderlying(address owner) external returns (uint) { Exp memory exchangeRate = Exp({mantissa: exchangeRateCurrent()}); (MathError mErr, uint balance) = mulScalarTruncate(exchangeRate, accountTokens[owner]); require(mErr == MathError.NO_ERROR, "balance could not be calculated"); return balance; } /** * @notice Get a snapshot of the account's balances, and the cached exchange rate * @dev This is used by comptroller to more efficiently perform liquidity checks. * @param account Address of the account to snapshot * @return (possible error, token balance, borrow balance, exchange rate mantissa) */ function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint) { uint 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) { return interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves); } /** * @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) { return interestRateModel.getSupplyRate(getCashPrior(), totalBorrows, totalReserves, reserveFactorMantissa); } /** * @notice Returns the current total borrows plus accrued interest * @return The total borrows with interest */ function totalBorrowsCurrent() external nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return totalBorrows; } /** * @notice Accrue interest to updated borrowIndex and then calculate account's borrow balance using the updated borrowIndex * @param account The address whose balance should be calculated after updating borrowIndex * @return The calculated balance */ function borrowBalanceCurrent(address account) external nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return borrowBalanceStored(account); } /** * @notice Return the borrow balance of account based on stored data * @param account The address whose balance should be calculated * @return The calculated balance */ function borrowBalanceStored(address account) public view returns (uint) { (MathError err, uint result) = borrowBalanceStoredInternal(account); require(err == MathError.NO_ERROR, "borrowBalanceStored: borrowBalanceStoredInternal failed"); return result; } /** * @notice Return the borrow balance of account based on stored data * @param account The address whose balance should be calculated * @return (error code, the calculated balance or 0 if error code is non-zero) */ function borrowBalanceStoredInternal(address account) internal view returns (MathError, uint) { /* Note: we do not assert that the market is up to date */ MathError mathErr; uint principalTimesIndex; uint result; /* Get borrowBalance and borrowIndex */ BorrowSnapshot storage borrowSnapshot = accountBorrows[account]; /* If borrowBalance = 0 then borrowIndex is likely also 0. * Rather than failing the calculation with a division by 0, we immediately return 0 in this case. */ if (borrowSnapshot.principal == 0) { return (MathError.NO_ERROR, 0); } /* Calculate new borrow balance using the interest index: * recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex */ (mathErr, principalTimesIndex) = mulUInt(borrowSnapshot.principal, borrowIndex); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } (mathErr, result) = divUInt(principalTimesIndex, borrowSnapshot.interestIndex); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } return (MathError.NO_ERROR, result); } /** * @notice Accrue interest then return the up-to-date exchange rate * @return Calculated exchange rate scaled by 1e18 */ function exchangeRateCurrent() public nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return exchangeRateStored(); } /** * @notice Calculates the exchange rate from the underlying to the 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) { uint _totalSupply = totalSupply; if (_totalSupply == 0) { /* * If there are no tokens minted: * exchangeRate = initialExchangeRate */ return (MathError.NO_ERROR, initialExchangeRateMantissa); } else { /* * Otherwise: * exchangeRate = (totalCash + totalBorrows - totalReserves) / totalSupply */ uint totalCash = getCashPrior(); uint cashPlusBorrowsMinusReserves; Exp memory exchangeRate; MathError mathErr; (mathErr, cashPlusBorrowsMinusReserves) = addThenSubUInt(totalCash, totalBorrows, totalReserves); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } (mathErr, exchangeRate) = getExp(cashPlusBorrowsMinusReserves, _totalSupply); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } return (MathError.NO_ERROR, exchangeRate.mantissa); } } /** * @notice Get cash balance of this aToken in the underlying asset * @return The quantity of underlying asset owned by this contract */ function getCash() external view returns (uint) { return getCashPrior(); } /** * @notice Applies accrued interest to total borrows and reserves * @dev This calculates interest accrued from the last checkpointed block * up to the current block and writes new checkpoint to storage. */ function accrueInterest() public returns (uint) { /* Remember the initial block number */ uint currentBlockNumber = getBlockNumber(); uint accrualBlockNumberPrior = accrualBlockNumber; /* Short-circuit accumulating 0 interest */ if (accrualBlockNumberPrior == currentBlockNumber) { return uint(Error.NO_ERROR); } /* Read the previous values out of storage */ uint cashPrior = getCashPrior(); uint borrowsPrior = totalBorrows; uint reservesPrior = totalReserves; uint borrowIndexPrior = borrowIndex; /* Calculate the current borrow interest rate */ uint borrowRateMantissa = interestRateModel.getBorrowRate(cashPrior, borrowsPrior, reservesPrior); require(borrowRateMantissa <= borrowRateMaxMantissa, "borrow rate is absurdly high"); /* Calculate the number of blocks elapsed since the last accrual */ (MathError mathErr, uint blockDelta) = subUInt(currentBlockNumber, accrualBlockNumberPrior); require(mathErr == MathError.NO_ERROR, "could not calculate block delta"); /* * Calculate the interest accumulated into borrows and reserves and the new index: * simpleInterestFactor = borrowRate * blockDelta * interestAccumulated = simpleInterestFactor * totalBorrows * totalBorrowsNew = interestAccumulated + totalBorrows * totalReservesNew = interestAccumulated * reserveFactor + totalReserves * borrowIndexNew = simpleInterestFactor * borrowIndex + borrowIndex */ Exp memory simpleInterestFactor; uint interestAccumulated; uint totalBorrowsNew; uint totalReservesNew; uint borrowIndexNew; (mathErr, simpleInterestFactor) = mulScalar(Exp({mantissa: borrowRateMantissa}), blockDelta); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, uint(mathErr)); } (mathErr, interestAccumulated) = mulScalarTruncate(simpleInterestFactor, borrowsPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED, uint(mathErr)); } (mathErr, totalBorrowsNew) = addUInt(interestAccumulated, borrowsPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED, uint(mathErr)); } (mathErr, totalReservesNew) = mulScalarTruncateAddUInt(Exp({mantissa: reserveFactorMantissa}), interestAccumulated, reservesPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED, uint(mathErr)); } (mathErr, borrowIndexNew) = mulScalarTruncateAddUInt(simpleInterestFactor, borrowIndexPrior, borrowIndexPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED, uint(mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write the previously calculated values into storage */ accrualBlockNumber = currentBlockNumber; borrowIndex = borrowIndexNew; totalBorrows = totalBorrowsNew; totalReserves = totalReservesNew; /* We emit an AccrueInterest event */ emit AccrueInterest(cashPrior, interestAccumulated, borrowIndexNew, totalBorrowsNew); return uint(Error.NO_ERROR); } /** * @notice Sender supplies assets into the market and receives 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, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount. */ function mintInternal(uint mintAmount) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.MINT_ACCRUE_INTEREST_FAILED), 0); } // mintFresh emits the actual Mint event if successful and logs on errors, so we don't need to return mintFresh(msg.sender, mintAmount); } struct MintLocalVars { Error err; MathError mathErr; uint exchangeRateMantissa; uint mintTokens; uint totalSupplyNew; uint accountTokensNew; uint actualMintAmount; } /** * @notice User supplies assets into the market and receives 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, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount. */ function mintFresh(address minter, uint mintAmount) internal returns (uint, uint) { /* Fail if mint not allowed */ uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.MINT_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.MINT_FRESHNESS_CHECK), 0); } MintLocalVars memory vars; (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return (failOpaque(Error.MATH_ERROR, FailureInfo.MINT_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)), 0); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call `doTransferIn` for the minter and the mintAmount. * Note: The aToken must handle variations between ERC-20 and ETH underlying. * `doTransferIn` reverts if anything goes wrong, since we can't be sure if * side-effects occurred. The function returns the amount actually transferred, * in case of a fee. On success, the aToken holds an additional `actualMintAmount` * of cash. */ vars.actualMintAmount = doTransferIn(minter, mintAmount); /* * We get the current exchange rate and calculate the number of aTokens to be minted: * mintTokens = actualMintAmount / exchangeRate */ (vars.mathErr, vars.mintTokens) = divScalarByExpTruncate(vars.actualMintAmount, Exp({mantissa: vars.exchangeRateMantissa})); require(vars.mathErr == MathError.NO_ERROR, "MINT_EXCHANGE_CALCULATION_FAILED"); /* * We calculate the new total supply of aTokens and minter token balance, checking for overflow: * totalSupplyNew = totalSupply + mintTokens * accountTokensNew = accountTokens[minter] + mintTokens */ (vars.mathErr, vars.totalSupplyNew) = addUInt(totalSupply, vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED"); (vars.mathErr, vars.accountTokensNew) = addUInt(accountTokens[minter], vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED"); /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[minter] = vars.accountTokensNew; /* We emit a Mint event, and a Transfer event */ emit Mint(minter, vars.actualMintAmount, vars.mintTokens); emit Transfer(address(this), minter, vars.mintTokens); /* We call the defense hook */ // unused function // comptroller.mintVerify(address(this), minter, vars.actualMintAmount, vars.mintTokens); return (uint(Error.NO_ERROR), vars.actualMintAmount); } /** * @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 receive from redeeming aTokens * @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 non-zero) * @param redeemAmountIn The number of underlying tokens to receive from redeeming aTokens (only one of redeemTokensIn or redeemAmountIn may be non-zero) * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemFresh(address payable redeemer, uint redeemTokensIn, uint redeemAmountIn) internal returns (uint) { require(redeemTokensIn == 0 || redeemAmountIn == 0, "one of redeemTokensIn or redeemAmountIn must be zero"); RedeemLocalVars memory vars; /* exchangeRate = invoke Exchange Rate Stored() */ (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)); } /* If redeemTokensIn > 0: */ if (redeemTokensIn > 0) { /* * We calculate the exchange rate and the amount of underlying to be redeemed: * redeemTokens = redeemTokensIn * redeemAmount = redeemTokensIn x exchangeRateCurrent */ vars.redeemTokens = redeemTokensIn; (vars.mathErr, vars.redeemAmount) = mulScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), redeemTokensIn); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, uint(vars.mathErr)); } } else { /* * We get the current exchange rate and calculate the amount to be redeemed: * redeemTokens = redeemAmountIn / exchangeRate * redeemAmount = redeemAmountIn */ (vars.mathErr, vars.redeemTokens) = divScalarByExpTruncate(redeemAmountIn, Exp({mantissa: vars.exchangeRateMantissa})); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED, uint(vars.mathErr)); } vars.redeemAmount = redeemAmountIn; } /* Fail if redeem not allowed */ uint allowed = comptroller.redeemAllowed(address(this), redeemer, vars.redeemTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REDEEM_COMPTROLLER_REJECTION, allowed); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDEEM_FRESHNESS_CHECK); } /* * We calculate the new total supply and redeemer balance, checking for underflow: * totalSupplyNew = totalSupply - redeemTokens * accountTokensNew = accountTokens[redeemer] - redeemTokens */ (vars.mathErr, vars.totalSupplyNew) = subUInt(totalSupply, vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountTokensNew) = subUInt(accountTokens[redeemer], vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } /* Fail gracefully if protocol has insufficient cash */ if (getCashPrior() < vars.redeemAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDEEM_TRANSFER_OUT_NOT_POSSIBLE); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We invoke doTransferOut for the redeemer and the redeemAmount. * Note: The aToken must handle variations between ERC-20 and ETH underlying. * On success, the aToken has redeemAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(redeemer, vars.redeemAmount); /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[redeemer] = vars.accountTokensNew; /* We emit a Transfer event, and a Redeem event */ emit Transfer(redeemer, address(this), vars.redeemTokens); emit Redeem(redeemer, vars.redeemAmount, vars.redeemTokens); /* We call the defense hook */ comptroller.redeemVerify(address(this), redeemer, vars.redeemAmount, vars.redeemTokens); return uint(Error.NO_ERROR); } /** * @notice Sender borrows assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrowInternal(uint borrowAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return fail(Error(error), FailureInfo.BORROW_ACCRUE_INTEREST_FAILED); } // borrowFresh emits borrow-specific logs on errors, so we don't need to return borrowFresh(msg.sender, borrowAmount); } struct BorrowLocalVars { MathError mathErr; uint accountBorrows; uint accountBorrowsNew; uint totalBorrowsNew; } /** * @notice Users borrow assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrowFresh(address payable borrower, uint borrowAmount) internal returns (uint) { /* Fail if borrow not allowed */ uint allowed = comptroller.borrowAllowed(address(this), borrower, borrowAmount); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.BORROW_COMPTROLLER_REJECTION, allowed); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.BORROW_FRESHNESS_CHECK); } /* Fail gracefully if protocol has insufficient underlying cash */ if (getCashPrior() < borrowAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.BORROW_CASH_NOT_AVAILABLE); } BorrowLocalVars memory vars; /* * We calculate the new borrower and total borrow balances, failing on overflow: * accountBorrowsNew = accountBorrows + borrowAmount * totalBorrowsNew = totalBorrows + borrowAmount */ (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountBorrowsNew) = addUInt(vars.accountBorrows, borrowAmount); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.totalBorrowsNew) = addUInt(totalBorrows, borrowAmount); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We invoke doTransferOut for the borrower and the borrowAmount. * Note: The aToken must handle variations between ERC-20 and ETH underlying. * On success, the aToken borrowAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(borrower, borrowAmount); /* We write the previously calculated values into storage */ accountBorrows[borrower].principal = vars.accountBorrowsNew; accountBorrows[borrower].interestIndex = borrowIndex; totalBorrows = vars.totalBorrowsNew; /* We emit a Borrow event */ emit Borrow(borrower, borrowAmount, vars.accountBorrowsNew, vars.totalBorrowsNew); /* We call the defense hook */ // unused function // comptroller.borrowVerify(address(this), borrower, borrowAmount); return uint(Error.NO_ERROR); } /** * @notice Sender repays their own borrow * @param repayAmount The amount to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowInternal(uint repayAmount) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.REPAY_BORROW_ACCRUE_INTEREST_FAILED), 0); } // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to return repayBorrowFresh(msg.sender, msg.sender, repayAmount); } /** * @notice Sender repays a borrow belonging to borrower * @param borrower the account with the debt being payed off * @param repayAmount The amount to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowBehalfInternal(address borrower, uint repayAmount) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.REPAY_BEHALF_ACCRUE_INTEREST_FAILED), 0); } // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to return repayBorrowFresh(msg.sender, borrower, repayAmount); } struct RepayBorrowLocalVars { Error err; MathError mathErr; uint repayAmount; uint borrowerIndex; uint accountBorrows; uint accountBorrowsNew; uint totalBorrowsNew; uint actualRepayAmount; } /** * @notice Borrows are repaid by another user (possibly the borrower). * @param payer the account paying off the borrow * @param borrower the account with the debt being payed off * @param repayAmount the amount of undelrying tokens being returned * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowFresh(address payer, address borrower, uint repayAmount) internal returns (uint, uint) { /* Fail if repayBorrow not allowed */ uint allowed = comptroller.repayBorrowAllowed(address(this), payer, borrower, repayAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REPAY_BORROW_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.REPAY_BORROW_FRESHNESS_CHECK), 0); } RepayBorrowLocalVars memory vars; /* We remember the original borrowerIndex for verification purposes */ vars.borrowerIndex = accountBorrows[borrower].interestIndex; /* We fetch the amount the borrower owes, with accumulated interest */ (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower); if (vars.mathErr != MathError.NO_ERROR) { return (failOpaque(Error.MATH_ERROR, FailureInfo.REPAY_BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)), 0); } /* If repayAmount == -1, repayAmount = accountBorrows */ if (repayAmount == uint(-1)) { vars.repayAmount = vars.accountBorrows; } else { vars.repayAmount = repayAmount; } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call doTransferIn for the payer and the repayAmount * Note: The aToken must handle variations between ERC-20 and ETH underlying. * On success, the aToken holds an additional repayAmount of cash. * doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. * it returns the amount actually transferred, in case of a fee. */ vars.actualRepayAmount = doTransferIn(payer, vars.repayAmount); /* * We calculate the new borrower and total borrow balances, failing on underflow: * accountBorrowsNew = accountBorrows - actualRepayAmount * totalBorrowsNew = totalBorrows - actualRepayAmount */ (vars.mathErr, vars.accountBorrowsNew) = subUInt(vars.accountBorrows, vars.actualRepayAmount); require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED"); (vars.mathErr, vars.totalBorrowsNew) = subUInt(totalBorrows, vars.actualRepayAmount); require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED"); /* We write the previously calculated values into storage */ accountBorrows[borrower].principal = vars.accountBorrowsNew; accountBorrows[borrower].interestIndex = borrowIndex; totalBorrows = vars.totalBorrowsNew; /* We emit a RepayBorrow event */ emit RepayBorrow(payer, borrower, vars.actualRepayAmount, vars.accountBorrowsNew, vars.totalBorrowsNew); /* We call the defense hook */ // unused function // comptroller.repayBorrowVerify(address(this), payer, borrower, vars.actualRepayAmount, vars.borrowerIndex); return (uint(Error.NO_ERROR), vars.actualRepayAmount); } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this 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, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowInternal(address borrower, uint repayAmount, ATokenInterface aTokenCollateral) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed return (fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED), 0); } error = 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), 0); } // 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, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowFresh(address liquidator, address borrower, uint repayAmount, ATokenInterface aTokenCollateral) internal returns (uint, uint) { /* Fail if liquidate not allowed */ uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(aTokenCollateral), liquidator, borrower, repayAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_FRESHNESS_CHECK), 0); } /* Verify aTokenCollateral market's block number equals current block number */ if (aTokenCollateral.accrualBlockNumber() != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_COLLATERAL_FRESHNESS_CHECK), 0); } /* Fail if borrower = liquidator */ if (borrower == liquidator) { return (fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_LIQUIDATOR_IS_BORROWER), 0); } /* Fail if repayAmount = 0 */ if (repayAmount == 0) { return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_ZERO), 0); } /* Fail if repayAmount = -1 */ if (repayAmount == uint(-1)) { return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX), 0); } /* Fail if repayBorrow fails */ (uint repayBorrowError, uint actualRepayAmount) = repayBorrowFresh(liquidator, borrower, repayAmount); if (repayBorrowError != uint(Error.NO_ERROR)) { return (fail(Error(repayBorrowError), FailureInfo.LIQUIDATE_REPAY_BORROW_FRESH_FAILED), 0); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We calculate the number of collateral tokens that will be seized */ (uint amountSeizeError, uint seizeTokens) = comptroller.liquidateCalculateSeizeTokens(address(this), address(aTokenCollateral), actualRepayAmount); require(amountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED"); /* Revert if borrower collateral token balance < seizeTokens */ require(aTokenCollateral.balanceOf(borrower) >= seizeTokens, "LIQUIDATE_SEIZE_TOO_MUCH"); // If this is also the collateral, run seizeInternal to avoid re-entrancy, otherwise make an external call uint seizeError; if (address(aTokenCollateral) == address(this)) { seizeError = seizeInternal(address(this), liquidator, borrower, seizeTokens); } else { seizeError = aTokenCollateral.seize(liquidator, borrower, seizeTokens); } /* Revert if seize tokens fails (since we cannot be sure of side effects) */ require(seizeError == uint(Error.NO_ERROR), "token seizure failed"); /* We emit a LiquidateBorrow event */ emit LiquidateBorrow(liquidator, borrower, actualRepayAmount, address(aTokenCollateral), seizeTokens); /* We call the defense hook */ // unused function // comptroller.liquidateBorrowVerify(address(this), address(aTokenCollateral), liquidator, borrower, actualRepayAmount, seizeTokens); return (uint(Error.NO_ERROR), actualRepayAmount); } /** * @notice Transfers collateral tokens (this market) to the liquidator. * @dev Will fail unless called by another 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) { return seizeInternal(msg.sender, liquidator, borrower, seizeTokens); } struct SeizeInternalLocalVars { MathError mathErr; uint borrowerTokensNew; uint liquidatorTokensNew; uint liquidatorSeizeTokens; uint protocolSeizeTokens; uint protocolSeizeAmount; uint exchangeRateMantissa; uint totalReservesNew; uint totalSupplyNew; } /** * @notice Transfers collateral tokens (this market) to the liquidator. * @dev Called only during an in-kind liquidation, or by liquidateBorrow during the liquidation of another AToken. * Its absolutely critical to use msg.sender as the seizer aToken and not a parameter. * @param seizerToken The contract seizing the collateral (i.e. borrowed aToken) * @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 seizeInternal(address seizerToken, address liquidator, address borrower, uint seizeTokens) internal returns (uint) { /* Fail if seize not allowed */ uint allowed = comptroller.seizeAllowed(address(this), seizerToken, liquidator, borrower, seizeTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_SEIZE_COMPTROLLER_REJECTION, allowed); } /* Fail if borrower = liquidator */ if (borrower == liquidator) { return fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER); } SeizeInternalLocalVars memory vars; /* * We calculate the new borrower and liquidator token balances, failing on underflow/overflow: * borrowerTokensNew = accountTokens[borrower] - seizeTokens * liquidatorTokensNew = accountTokens[liquidator] + seizeTokens */ (vars.mathErr, vars.borrowerTokensNew) = subUInt(accountTokens[borrower], seizeTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED, uint(vars.mathErr)); } vars.protocolSeizeTokens = mul_(seizeTokens, Exp({mantissa: protocolSeizeShareMantissa})); vars.liquidatorSeizeTokens = sub_(seizeTokens, vars.protocolSeizeTokens); (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); require(vars.mathErr == MathError.NO_ERROR, "exchange rate math error"); vars.protocolSeizeAmount = mul_ScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), vars.protocolSeizeTokens); vars.totalReservesNew = add_(totalReserves, vars.protocolSeizeAmount); vars.totalSupplyNew = sub_(totalSupply, vars.protocolSeizeTokens); (vars.mathErr, vars.liquidatorTokensNew) = addUInt(accountTokens[liquidator], vars.liquidatorSeizeTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED, uint(vars.mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write the previously calculated values into storage */ totalReserves = vars.totalReservesNew; totalSupply = vars.totalSupplyNew; accountTokens[borrower] = vars.borrowerTokensNew; accountTokens[liquidator] = vars.liquidatorTokensNew; /* Emit a Transfer event */ emit Transfer(borrower, liquidator, vars.liquidatorSeizeTokens); emit Transfer(borrower, address(this), vars.protocolSeizeTokens); emit ReservesAdded(address(this), vars.protocolSeizeAmount, vars.totalReservesNew); /* We call the defense hook */ // unused function // comptroller.seizeVerify(address(this), seizerToken, liquidator, borrower, seizeTokens); return uint(Error.NO_ERROR); } /*** Admin Functions ***/ /** * @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. * @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. * @param newPendingAdmin New pending admin. * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setPendingAdmin(address payable newPendingAdmin) external returns (uint) { // Check caller = admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_PENDING_ADMIN_OWNER_CHECK); } // Save current value, if any, for inclusion in log address oldPendingAdmin = pendingAdmin; // Store pendingAdmin with value newPendingAdmin pendingAdmin = newPendingAdmin; // Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin) emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin); return uint(Error.NO_ERROR); } /** * @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin * @dev Admin function for pending admin to accept role and update admin * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _acceptAdmin() external returns (uint) { // Check caller is pendingAdmin and pendingAdmin ≠ address(0) if (msg.sender != pendingAdmin || msg.sender == address(0)) { return fail(Error.UNAUTHORIZED, FailureInfo.ACCEPT_ADMIN_PENDING_ADMIN_CHECK); } // Save current values for inclusion in log address oldAdmin = admin; address oldPendingAdmin = pendingAdmin; // Store admin with value pendingAdmin admin = pendingAdmin; // Clear the pending value pendingAdmin = address(0); emit NewAdmin(oldAdmin, admin); emit NewPendingAdmin(oldPendingAdmin, pendingAdmin); return uint(Error.NO_ERROR); } /** * @notice Sets a new comptroller for the market * @dev Admin function to set a new comptroller * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setComptroller(ComptrollerInterface newComptroller) public returns (uint) { // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_COMPTROLLER_OWNER_CHECK); } ComptrollerInterface oldComptroller = comptroller; // Ensure invoke comptroller.isComptroller() returns true require(newComptroller.isComptroller(), "marker method returned false"); // Set market's comptroller to newComptroller comptroller = newComptroller; // Emit NewComptroller(oldComptroller, newComptroller) emit NewComptroller(oldComptroller, newComptroller); return uint(Error.NO_ERROR); } /** * @notice accrues interest and sets a new reserve factor for the protocol using _setReserveFactorFresh * @dev Admin function to accrue interest and set a new reserve factor * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setReserveFactor(uint newReserveFactorMantissa) external nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reserve factor change failed. return fail(Error(error), FailureInfo.SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED); } // _setReserveFactorFresh emits reserve-factor-specific logs on errors, so we don't need to. return _setReserveFactorFresh(newReserveFactorMantissa); } /** * @notice Sets a new reserve factor for the protocol (*requires fresh interest accrual) * @dev Admin function to set a new reserve factor * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setReserveFactorFresh(uint newReserveFactorMantissa) internal returns (uint) { // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_RESERVE_FACTOR_ADMIN_CHECK); } // Verify market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_RESERVE_FACTOR_FRESH_CHECK); } // Check newReserveFactor ≤ maxReserveFactor if (newReserveFactorMantissa > reserveFactorMaxMantissa) { return fail(Error.BAD_INPUT, FailureInfo.SET_RESERVE_FACTOR_BOUNDS_CHECK); } uint oldReserveFactorMantissa = reserveFactorMantissa; reserveFactorMantissa = newReserveFactorMantissa; emit NewReserveFactor(oldReserveFactorMantissa, newReserveFactorMantissa); return uint(Error.NO_ERROR); } /** * @notice Accrues interest and reduces reserves by transferring from msg.sender * @param addAmount Amount of addition to reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _addReservesInternal(uint addAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reduce reserves failed. return fail(Error(error), FailureInfo.ADD_RESERVES_ACCRUE_INTEREST_FAILED); } // _addReservesFresh emits reserve-addition-specific logs on errors, so we don't need to. (error, ) = _addReservesFresh(addAmount); return error; } /** * @notice Add reserves by transferring from caller * @dev Requires fresh interest accrual * @param addAmount Amount of addition to reserves * @return (uint, uint) An error code (0=success, otherwise a failure (see ErrorReporter.sol for details)) and the actual amount added, net token fees */ function _addReservesFresh(uint addAmount) internal returns (uint, uint) { // totalReserves + actualAddAmount uint totalReservesNew; uint actualAddAmount; // We fail gracefully unless market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.ADD_RESERVES_FRESH_CHECK), actualAddAmount); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call doTransferIn for the caller and the addAmount * Note: The aToken must handle variations between ERC-20 and ETH underlying. * On success, the aToken holds an additional addAmount of cash. * doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. * it returns the amount actually transferred, in case of a fee. */ actualAddAmount = doTransferIn(msg.sender, addAmount); totalReservesNew = totalReserves + actualAddAmount; /* Revert on overflow */ require(totalReservesNew >= totalReserves, "add reserves unexpected overflow"); // Store reserves[n+1] = reserves[n] + actualAddAmount totalReserves = totalReservesNew; /* Emit NewReserves(admin, actualAddAmount, reserves[n+1]) */ emit ReservesAdded(msg.sender, actualAddAmount, totalReservesNew); /* Return (NO_ERROR, actualAddAmount) */ return (uint(Error.NO_ERROR), actualAddAmount); } /** * @notice Accrues interest and reduces reserves by transferring to admin * @param reduceAmount Amount of reduction to reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _reduceReserves(uint reduceAmount) external nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reduce reserves failed. return fail(Error(error), FailureInfo.REDUCE_RESERVES_ACCRUE_INTEREST_FAILED); } // _reduceReservesFresh emits reserve-reduction-specific logs on errors, so we don't need to. return _reduceReservesFresh(reduceAmount); } /** * @notice Reduces reserves by transferring to admin * @dev Requires fresh interest accrual * @param reduceAmount Amount of reduction to reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _reduceReservesFresh(uint reduceAmount) internal returns (uint) { // totalReserves - reduceAmount uint totalReservesNew; // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.REDUCE_RESERVES_ADMIN_CHECK); } // We fail gracefully unless market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDUCE_RESERVES_FRESH_CHECK); } // Fail gracefully if protocol has insufficient underlying cash if (getCashPrior() < reduceAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDUCE_RESERVES_CASH_NOT_AVAILABLE); } // Check reduceAmount ≤ reserves[n] (totalReserves) if (reduceAmount > totalReserves) { return fail(Error.BAD_INPUT, FailureInfo.REDUCE_RESERVES_VALIDATION); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) totalReservesNew = totalReserves - reduceAmount; // We checked reduceAmount <= totalReserves above, so this should never revert. require(totalReservesNew <= totalReserves, "reduce reserves unexpected underflow"); // Store reserves[n+1] = reserves[n] - reduceAmount totalReserves = totalReservesNew; // doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. doTransferOut(admin, reduceAmount); emit ReservesReduced(admin, reduceAmount, totalReservesNew); return uint(Error.NO_ERROR); } /** * @notice accrues interest and updates the interest rate model using _setInterestRateModelFresh * @dev Admin function to accrue interest and update the interest rate model * @param newInterestRateModel the new interest rate model to use * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setInterestRateModel(InterestRateModel newInterestRateModel) public returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted change of interest rate model failed return fail(Error(error), FailureInfo.SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED); } // _setInterestRateModelFresh emits interest-rate-model-update-specific logs on errors, so we don't need to. return _setInterestRateModelFresh(newInterestRateModel); } /** * @notice updates the interest rate model (*requires fresh interest accrual) * @dev Admin function to update the interest rate model * @param newInterestRateModel the new interest rate model to use * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setInterestRateModelFresh(InterestRateModel newInterestRateModel) internal returns (uint) { // Used to store old model for use in the event that is emitted on success InterestRateModel oldInterestRateModel; // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_INTEREST_RATE_MODEL_OWNER_CHECK); } // We fail gracefully unless market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_INTEREST_RATE_MODEL_FRESH_CHECK); } // Track the market's current interest rate model oldInterestRateModel = interestRateModel; // Ensure invoke newInterestRateModel.isInterestRateModel() returns true require(newInterestRateModel.isInterestRateModel(), "marker method returned false"); // Set the interest rate model to newInterestRateModel interestRateModel = newInterestRateModel; // Emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel) emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel); return uint(Error.NO_ERROR); } /*** Safe Token ***/ /** * @notice Gets balance of this contract in terms of the underlying * @dev This excludes the value of the current message, if any * @return The quantity of underlying owned by this contract */ function getCashPrior() internal view returns (uint); /** * @dev Performs a transfer in, reverting upon failure. Returns the amount actually transferred to the protocol, in case of a fee. * This may revert due to insufficient balance or insufficient allowance. */ function doTransferIn(address from, uint amount) internal returns (uint); /** * @dev Performs a transfer out, ideally returning an explanatory error code upon failure tather than reverting. * If caller has not called checked protocol's balance, may revert due to insufficient cash held in the contract. * If caller has checked protocol's balance, and verified it is >= amount, this should not revert in normal conditions. */ function doTransferOut(address payable to, uint amount) internal; /*** Reentrancy Guard ***/ /** * @dev Prevents a contract from calling itself, directly or indirectly. */ modifier nonReentrant() { require(_notEntered, "re-entered"); _notEntered = false; _; _notEntered = true; // get a gas-refund post-Istanbul } } // File: contracts/AErc20.sol pragma solidity ^0.5.16; interface ArsLike { function delegate(address delegatee) external; } /** * @title Aquarius's AErc20 Contract * @notice ATokens which wrap an EIP-20 underlying * @author Aquarius */ contract AErc20 is AToken, AErc20Interface { /** * @notice Initialize the new money market * @param underlying_ The address of the underlying asset * @param comptroller_ The address of the Comptroller * @param interestRateModel_ The address of the interest rate model * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 * @param name_ ERC-20 name of this token * @param symbol_ ERC-20 symbol of this token * @param decimals_ ERC-20 decimal precision of this token */ function initialize(address underlying_, ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_) public { // AToken initialize does the bulk of the work super.initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); // Set underlying and sanity check it underlying = underlying_; EIP20Interface(underlying).totalSupply(); } /*** User Interface ***/ /** * @notice Sender supplies assets into the market and receives 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) { (uint err,) = mintInternal(mintAmount); return err; } /** * @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) { (uint err,) = repayBorrowInternal(repayAmount); return err; } /** * @notice Sender repays a borrow belonging to borrower * @param borrower the account with the debt being payed off * @param repayAmount The amount to repay * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint) { (uint err,) = repayBorrowBehalfInternal(borrower, repayAmount); return err; } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this aToken to be liquidated * @param repayAmount The amount of the underlying borrowed asset to repay * @param aTokenCollateral The market in which to seize collateral from the borrower * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function liquidateBorrow(address borrower, uint repayAmount, ATokenInterface aTokenCollateral) external returns (uint) { (uint err,) = liquidateBorrowInternal(borrower, repayAmount, aTokenCollateral); return err; } /** * @notice A public function to sweep accidental ERC-20 transfers to this contract. Tokens are sent to admin (timelock) * @param token The address of the ERC-20 token to sweep */ function sweepToken(EIP20NonStandardInterface token) external { require(address(token) != underlying, "AErc20::sweepToken: can not sweep underlying token"); uint256 balance = token.balanceOf(address(this)); token.transfer(admin, balance); } /** * @notice The sender adds to reserves. * @param addAmount The amount fo underlying token to add as reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _addReserves(uint addAmount) external returns (uint) { return _addReservesInternal(addAmount); } /*** Safe Token ***/ /** * @notice Gets balance of this contract in terms of the underlying * @dev This excludes the value of the current message, if any * @return The quantity of underlying tokens owned by this contract */ function getCashPrior() internal view returns (uint) { EIP20Interface token = EIP20Interface(underlying); return token.balanceOf(address(this)); } /** * @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom` and reverts in that case. * This will revert due to insufficient balance or insufficient allowance. * This function returns the actual amount received, * which may be less than `amount` if there is a fee attached to the transfer. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferIn(address from, uint amount) internal returns (uint) { EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying); uint balanceBefore = EIP20Interface(underlying).balanceOf(address(this)); token.transferFrom(from, address(this), amount); bool success; assembly { switch returndatasize() case 0 { // This is a non-standard ERC-20 success := not(0) // set success to true } case 32 { // This is a compliant ERC-20 returndatacopy(0, 0, 32) success := mload(0) // Set `success = returndata` of external call } default { // This is an excessively non-compliant ERC-20, revert. revert(0, 0) } } require(success, "TOKEN_TRANSFER_IN_FAILED"); // Calculate the amount that was *actually* transferred uint balanceAfter = EIP20Interface(underlying).balanceOf(address(this)); require(balanceAfter >= balanceBefore, "TOKEN_TRANSFER_IN_OVERFLOW"); return balanceAfter - balanceBefore; // underflow already checked above, just subtract } /** * @dev Similar to EIP20 transfer, except it handles a False success from `transfer` and returns an explanatory * error code rather than reverting. If caller has not called checked protocol's balance, this may revert due to * insufficient cash held in this contract. If caller has checked protocol's balance prior to this call, and verified * it is >= amount, this should not revert in normal conditions. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferOut(address payable to, uint amount) internal { EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying); token.transfer(to, amount); bool success; assembly { switch returndatasize() case 0 { // This is a non-standard ERC-20 success := not(0) // set success to true } case 32 { // This is a compliant ERC-20 returndatacopy(0, 0, 32) success := mload(0) // Set `success = returndata` of external call } default { // This is an excessively non-compliant ERC-20, revert. revert(0, 0) } } require(success, "TOKEN_TRANSFER_OUT_FAILED"); } /** * @notice Admin call to delegate the votes of the ARS-like underlying * @param arsLikeDelegatee The address to delegate votes to * @dev ATokens whose underlying are not ArsLike should revert here */ function _delegateArsLikeTo(address arsLikeDelegatee) external { require(msg.sender == admin, "only the admin may set the ars-like delegate"); ArsLike(underlying).delegate(arsLikeDelegatee); } } // File: contracts/AErc20Delegate.sol pragma solidity ^0.5.16; /** * @title Aquarius's AErc20Delegate Contract * @notice ATokens which wrap an EIP-20 underlying and are delegated to * @author Aquarius */ contract AErc20Delegate is AErc20, ADelegateInterface { /** * @notice Construct an empty delegate */ constructor() public {} /** * @notice Called by the delegator on a delegate to initialize it for duty * @param data The encoded bytes data for any initialization */ function _becomeImplementation(bytes memory data) public { // Shh -- currently unused data; // Shh -- we don't ever want this hook to be marked pure if (false) { implementation = address(0); } require(msg.sender == admin, "only the admin may call _becomeImplementation"); } /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() public { // Shh -- we don't ever want this hook to be marked pure if (false) { implementation = address(0); } require(msg.sender == admin, "only the admin may call _resignImplementation"); } }
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cashPrior","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestAccumulated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"AccrueInterest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"borrowAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"Borrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"error","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"info","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"detail","type":"uint256"}],"name":"Failure","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"liquidator","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"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 ComptrollerInterface","name":"oldComptroller","type":"address"},{"indexed":false,"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"NewComptroller","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract InterestRateModel","name":"oldInterestRateModel","type":"address"},{"indexed":false,"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"NewMarketInterestRateModel","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldReserveFactorMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"NewReserveFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"redeemer","type":"address"},{"indexed":false,"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"RepayBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"benefactor","type":"address"},{"indexed":false,"internalType":"uint256","name":"addAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"reduceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesReduced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"addAmount","type":"uint256"}],"name":"_addReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"_becomeImplementation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"arsLikeDelegatee","type":"address"}],"name":"_delegateArsLikeTo","outputs":[],"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":[],"name":"_resignImplementation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"_setComptroller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newPendingAdmin","type":"address"}],"name":"_setPendingAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"_setReserveFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"accrueInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"comptroller","outputs":[{"internalType":"contract ComptrollerInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exchangeRateCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"exchangeRateStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"underlying_","type":"address"},{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"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 ATokenInterface","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":true,"inputs":[],"name":"protocolSeizeShareMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":false,"inputs":[{"internalType":"contract EIP20NonStandardInterface","name":"token","type":"address"}],"name":"sweepToken","outputs":[],"payable":false,"stateMutability":"nonpayable","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"}]
Contract Creation Code
608060405234801561001057600080fd5b506155dd806100206000396000f3fe608060405234801561001057600080fd5b50600436106103425760003560e01c806373acee98116101b8578063b71d1a0c11610104578063e9c714f2116100a2578063f5e3c4621161007c578063f5e3c46214610ba9578063f851a44014610bdf578063f8f9da2814610be7578063fca7820b14610bef57610342565b8063e9c714f214610b73578063f2b3abbd14610b7b578063f3fdb15a14610ba157610342565b8063c37f68e2116100de578063c37f68e214610abf578063c5ebeaec14610b0b578063db006a7514610b28578063dd62ed3e14610b4557610342565b8063b71d1a0c14610a6b578063bd6d894d14610a91578063c2647e5714610a9957610342565b806399d8c1b411610171578063a9059cbb1161014b578063a9059cbb146109f9578063aa5af0fd14610a25578063ae9d70b014610a2d578063b2a02ff114610a3557610342565b806399d8c1b414610886578063a0712d68146109d4578063a6afed95146109f157610342565b806373acee9814610823578063852a12e31461082b5780638f840ddd1461084857806394c393fc1461085057806395d89b411461085857806395dd91931461086057610342565b8063313ce567116102925780635c60da1b116102305780636752e7021161020a5780636752e702146107e55780636c540baf146107ed5780636f307dc3146107f557806370a08231146107fd57610342565b80635c60da1b146107b85780635fe3b567146107c0578063601a0bf1146107c857610342565b80633e9410101161026c5780633e941010146106c95780634576b5db146106e657806347bd37181461070c57806356e677281461071457610342565b8063313ce5671461067d5780633af9e6691461069b5780633b1d21a2146106c157610342565b806318160ddd116102ff5780631be19560116102d95780631be19560146105d157806323b872dd146105f75780632608f8181461062d578063267822471461065957610342565b806318160ddd1461046b578063182df0f5146104735780631a31d4651461047b57610342565b806306fdde0314610347578063095ea7b3146103c45780630e75270214610404578063153ab50514610433578063173b99041461043d57806317bfdfbc14610445575b600080fd5b61034f610c0c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610389578181015183820152602001610371565b50505050905090810190601f1680156103b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103f0600480360360408110156103da57600080fd5b506001600160a01b038135169060200135610c99565b604080519115158252519081900360200190f35b6104216004803603602081101561041a57600080fd5b5035610d06565b60408051918252519081900360200190f35b61043b610d1c565b005b610421610d6c565b6104216004803603602081101561045b57600080fd5b50356001600160a01b0316610d72565b610421610e32565b610421610e38565b61043b600480360360e081101561049157600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b8111156104d357600080fd5b8201836020820111156104e557600080fd5b803590602001918460018302840111600160201b8311171561050657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561055857600080fd5b82018360208201111561056a57600080fd5b803590602001918460018302840111600160201b8311171561058b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610e9b9050565b61043b600480360360208110156105e757600080fd5b50356001600160a01b0316610f3a565b6103f06004803603606081101561060d57600080fd5b506001600160a01b03813581169160208101359091169060400135611076565b6104216004803603604081101561064357600080fd5b506001600160a01b0381351690602001356110e8565b6106616110fe565b604080516001600160a01b039092168252519081900360200190f35b61068561110d565b6040805160ff9092168252519081900360200190f35b610421600480360360208110156106b157600080fd5b50356001600160a01b0316611116565b6104216111cc565b610421600480360360208110156106df57600080fd5b50356111db565b610421600480360360208110156106fc57600080fd5b50356001600160a01b03166111e6565b61042161133b565b61043b6004803603602081101561072a57600080fd5b810190602081018135600160201b81111561074457600080fd5b82018360208201111561075657600080fd5b803590602001918460018302840111600160201b8311171561077757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611341945050505050565b610661611392565b6106616113a1565b610421600480360360208110156107de57600080fd5b50356113b0565b61042161144b565b610421611456565b61066161145c565b6104216004803603602081101561081357600080fd5b50356001600160a01b031661146b565b610421611486565b6104216004803603602081101561084157600080fd5b503561153c565b610421611547565b6103f061154d565b61034f611552565b6104216004803603602081101561087657600080fd5b50356001600160a01b03166115aa565b61043b600480360360c081101561089c57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156108d657600080fd5b8201836020820111156108e857600080fd5b803590602001918460018302840111600160201b8311171561090957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561095b57600080fd5b82018360208201111561096d57600080fd5b803590602001918460018302840111600160201b8311171561098e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506116079050565b610421600480360360208110156109ea57600080fd5b50356117ee565b6104216117fa565b6103f060048036036040811015610a0f57600080fd5b506001600160a01b038135169060200135611b52565b610421611bc3565b610421611bc9565b61042160048036036060811015610a4b57600080fd5b506001600160a01b03813581169160208101359091169060400135611c68565b61042160048036036020811015610a8157600080fd5b50356001600160a01b0316611cd9565b610421611d65565b61043b60048036036020811015610aaf57600080fd5b50356001600160a01b0316611e21565b610ae560048036036020811015610ad557600080fd5b50356001600160a01b0316611ed8565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61042160048036036020811015610b2157600080fd5b5035611f6d565b61042160048036036020811015610b3e57600080fd5b5035611f78565b61042160048036036040811015610b5b57600080fd5b506001600160a01b0381358116916020013516611f83565b610421611fae565b61042160048036036020811015610b9157600080fd5b50356001600160a01b03166120b1565b6106616120eb565b61042160048036036060811015610bbf57600080fd5b506001600160a01b038135811691602081013591604090910135166120fa565b610661612112565b610421612126565b61042160048036036020811015610c0557600080fd5b503561218a565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c915780601f10610c6657610100808354040283529160200191610c91565b820191906000526020600020905b815481529060010190602001808311610c7457829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b600080610d1283612208565b509150505b919050565b60035461010090046001600160a01b03163314610d6a5760405162461bcd60e51b815260040180806020018281038252602d815260200180615348602d913960400191505060405180910390fd5b565b60085481565b6000805460ff16610db7576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610dc96117fa565b14610e14576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610e1d826115aa565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610e456122b1565b90925090506000826003811115610e5857fe5b14610e945760405162461bcd60e51b81526004018080602001828103825260358152602001806154c76035913960400191505060405180910390fd5b9150505b90565b610ea9868686868686611607565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015610f0557600080fd5b505afa158015610f19573d6000803e3d6000fd5b505050506040513d6020811015610f2f57600080fd5b505050505050505050565b6011546001600160a01b0382811691161415610f875760405162461bcd60e51b81526004018080602001828103825260328152602001806153756032913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b158015610fd157600080fd5b505afa158015610fe5573d6000803e3d6000fd5b505050506040513d6020811015610ffb57600080fd5b50516003546040805163a9059cbb60e01b81526101009092046001600160a01b03908116600484015260248301849052905192935084169163a9059cbb9160448082019260009290919082900301818387803b15801561105a57600080fd5b505af115801561106e573d6000803e3d6000fd5b505050505050565b6000805460ff166110bb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556110d133868686612360565b1490506000805460ff191660011790559392505050565b6000806110f584846125ec565b50949350505050565b6004546001600160a01b031681565b60035460ff1681565b60006111206150dd565b6040518060200160405280611133611d65565b90526001600160a01b0384166000908152600e602052604081205491925090819061115f908490612697565b9092509050600082600381111561117257fe5b146111c4576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b949350505050565b60006111d66126eb565b905090565b6000610d008261276b565b60035460009061010090046001600160a01b031633146112135761120c6001603f6127ff565b9050610d17565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b15801561125857600080fd5b505afa15801561126c573d6000803e3d6000fd5b505050506040513d602081101561128257600080fd5b50516112d5576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b60035461010090046001600160a01b0316331461138f5760405162461bcd60e51b815260040180806020018281038252602d81526020018061557c602d913960400191505060405180910390fd5b50565b6012546001600160a01b031681565b6005546001600160a01b031681565b6000805460ff166113f5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114076117fa565b9050801561142d5761142581601081111561141e57fe5b60306127ff565b915050610e20565b61143683612865565b9150506000805460ff19166001179055919050565b66b1a2bc2ec5000081565b60095481565b6011546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166114cb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114dd6117fa565b14611528576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610d0082612998565b600c5481565b600181565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610c915780601f10610c6657610100808354040283529160200191610c91565b60008060006115b884612a19565b909250905060008260038111156115cb57fe5b146113345760405162461bcd60e51b81526004018080602001828103825260378152602001806153d26037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146116555760405162461bcd60e51b81526004018080602001828103825260248152602001806152836024913960400191505060405180910390fd5b6009541580156116655750600a54155b6116a05760405162461bcd60e51b81526004018080602001828103825260238152602001806152a76023913960400191505060405180910390fd5b6007849055836116e15760405162461bcd60e51b81526004018080602001828103825260308152602001806152ca6030913960400191505060405180910390fd5b60006116ec876111e6565b90508015611741576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b611749612acd565b600955670de0b6b3a7640000600a5561176186612ad1565b905080156117a05760405162461bcd60e51b81526004018080602001828103825260228152602001806153266022913960400191505060405180910390fd5b83516117b39060019060208701906150f0565b5082516117c79060029060208601906150f0565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080610d1283612c46565b600080611805612acd565b6009549091508082141561181e57600092505050610e98565b60006118286126eb565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561189657600080fd5b505afa1580156118aa573d6000803e3d6000fd5b505050506040513d60208110156118c057600080fd5b5051905065048c2739500081111561191f576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60008061192c8989612cc7565b9092509050600082600381111561193f57fe5b14611991576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b6119996150dd565b6000806000806119b760405180602001604052808a81525087612cea565b909750945060008760038111156119ca57fe5b146119fc576119e7600960068960038111156119e257fe5b612d52565b9e505050505050505050505050505050610e98565b611a06858c612697565b90975093506000876003811115611a1957fe5b14611a31576119e7600960018960038111156119e257fe5b611a3b848c612db8565b90975092506000876003811115611a4e57fe5b14611a66576119e7600960048960038111156119e257fe5b611a816040518060200160405280600854815250858c612dde565b90975091506000876003811115611a9457fe5b14611aac576119e7600960058960038111156119e257fe5b611ab7858a8b612dde565b90975090506000876003811115611aca57fe5b14611ae2576119e7600960038960038111156119e257fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611b97576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611bad33338686612360565b1490506000805460ff1916600117905592915050565b600a5481565b6006546000906001600160a01b031663b8168816611be56126eb565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611c3757600080fd5b505afa158015611c4b573d6000803e3d6000fd5b505050506040513d6020811015611c6157600080fd5b5051905090565b6000805460ff16611cad576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611cc333858585612e3a565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611cff5761120c600160456127ff565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611334565b6000805460ff16611daa576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611dbc6117fa565b14611e07576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611e0f610e38565b90506000805460ff1916600117905590565b60035461010090046001600160a01b03163314611e6f5760405162461bcd60e51b815260040180806020018281038252602c8152602001806152fa602c913960400191505060405180910390fd5b601154604080516317066a5760e21b81526001600160a01b03848116600483015291519190921691635c19a95c91602480830192600092919082900301818387803b158015611ebd57600080fd5b505af1158015611ed1573d6000803e3d6000fd5b5050505050565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611f0389612a19565b935090506000816003811115611f1557fe5b14611f335760095b975060009650869550859450611f669350505050565b611f3b6122b1565b925090506000816003811115611f4d57fe5b14611f59576009611f1d565b5060009650919450925090505b9193509193565b6000610d0082613214565b6000610d0082613293565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6004546000906001600160a01b031633141580611fc9575033155b15611fe157611fda600160006127ff565b9050610e98565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6000806120bc6117fa565b905080156120e2576120da8160108111156120d357fe5b60406127ff565b915050610d17565b61133483612ad1565b6006546001600160a01b031681565b60008061210885858561330d565b5095945050505050565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f240536121426126eb565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611c3757600080fd5b6000805460ff166121cf576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556121e16117fa565b905080156121ff576114258160108111156121f857fe5b60466127ff565b6114368361343f565b60008054819060ff1661224f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556122616117fa565b9050801561228c5761227f81601081111561227857fe5b60366127ff565b92506000915061229d9050565b6122973333866134e7565b92509250505b6000805460ff191660011790559092909150565b600d546000908190806122cc5750506007546000915061235c565b60006122d66126eb565b905060006122e26150dd565b60006122f384600b54600c54613835565b93509050600081600381111561230557fe5b1461231a5795506000945061235c9350505050565b6123248386613873565b92509050600081600381111561233657fe5b1461234b5795506000945061235c9350505050565b505160009550935061235c92505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b1580156123c557600080fd5b505af11580156123d9573d6000803e3d6000fd5b505050506040513d60208110156123ef57600080fd5b50519050801561240e576124066003604a83612d52565b9150506111c4565b836001600160a01b0316856001600160a01b03161415612434576124066002604b6127ff565b60006001600160a01b038781169087161415612453575060001961247b565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061248b8589612cc7565b9094509250600084600381111561249e57fe5b146124bc576124af6009604b6127ff565b96505050505050506111c4565b6001600160a01b038a166000908152600e60205260409020546124df9089612cc7565b909450915060008460038111156124f257fe5b14612503576124af6009604c6127ff565b6001600160a01b0389166000908152600e60205260409020546125269089612db8565b9094509050600084600381111561253957fe5b1461254a576124af6009604d6127ff565b6001600160a01b03808b166000908152600e6020526040808220859055918b1681522081905560001985146125a2576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206154438339815191528a6040518082815260200191505060405180910390a35060009a9950505050505050505050565b60008054819060ff16612633576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556126456117fa565b905080156126705761266381601081111561265c57fe5b60356127ff565b9250600091506126819050565b61267b3386866134e7565b92509250505b6000805460ff1916600117905590939092509050565b60008060006126a46150dd565b6126ae8686612cea565b909250905060008260038111156126c157fe5b146126d257509150600090506126e4565b60006126dd82613923565b9350935050505b9250929050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561273957600080fd5b505afa15801561274d573d6000803e3d6000fd5b505050506040513d602081101561276357600080fd5b505191505090565b6000805460ff166127b0576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556127c26117fa565b905080156127e0576114258160108111156127d957fe5b604e6127ff565b6127e983613932565b509150506000805460ff19166001179055919050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561282e57fe5b83605081111561283a57fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561133457fe5b600354600090819061010090046001600160a01b0316331461288d576120da600160316127ff565b612895612acd565b600954146128a9576120da600a60336127ff565b826128b26126eb565b10156128c4576120da600e60326127ff565b600c548311156128da576120da600260346127ff565b50600c54828103908111156129205760405162461bcd60e51b81526004018080602001828103825260248152602001806155586024913960400191505060405180910390fd5b600c8190556003546129409061010090046001600160a01b031684613a1a565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611334565b6000805460ff166129dd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556129ef6117fa565b90508015612a0d57611425816010811115612a0657fe5b60276127ff565b61143633600085613b11565b6001600160a01b038116600090815260106020526040812080548291829182918291612a50575060009450849350612ac892505050565b612a608160000154600a54613fd8565b90945092506000846003811115612a7357fe5b14612a88575091935060009250612ac8915050565b612a96838260010154614017565b90945091506000846003811115612aa957fe5b14612abe575091935060009250612ac8915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b03163314612af9576120da600160426127ff565b612b01612acd565b60095414612b15576120da600a60416127ff565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612b6657600080fd5b505afa158015612b7a573d6000803e3d6000fd5b505050506040513d6020811015612b9057600080fd5b5051612be3576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611334565b60008054819060ff16612c8d576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612c9f6117fa565b90508015612cbd5761227f816010811115612cb657fe5b601e6127ff565b6122973385614042565b600080838311612cde5750600090508183036126e4565b506003905060006126e4565b6000612cf46150dd565b600080612d05866000015186613fd8565b90925090506000826003811115612d1857fe5b14612d37575060408051602081019091526000815290925090506126e4565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612d8157fe5b846050811115612d8d57fe5b604080519283526020830191909152818101859052519081900360600190a18360108111156111c457fe5b600080838301848110612dd0576000925090506126e4565b5060029150600090506126e4565b6000806000612deb6150dd565b612df58787612cea565b90925090506000826003811115612e0857fe5b14612e195750915060009050612e32565b612e2b612e2582613923565b86612db8565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015612ea757600080fd5b505af1158015612ebb573d6000803e3d6000fd5b505050506040513d6020811015612ed157600080fd5b505190508015612ee8576124066003601b83612d52565b846001600160a01b0316846001600160a01b03161415612f0e576124066006601c6127ff565b612f1661516e565b6001600160a01b0385166000908152600e6020526040902054612f399085612cc7565b6020830181905282826003811115612f4d57fe5b6003811115612f5857fe5b9052506000905081516003811115612f6c57fe5b14612f9157612f886009601a836000015160038111156119e257fe5b925050506111c4565b612fb084604051806020016040528066b1a2bc2ec50000815250614412565b60808201819052612fc290859061443a565b6060820152612fcf6122b1565b60c0830181905282826003811115612fe357fe5b6003811115612fee57fe5b905250600090508151600381111561300257fe5b14613054576040805162461bcd60e51b815260206004820152601860248201527f65786368616e67652072617465206d617468206572726f720000000000000000604482015290519081900360640190fd5b61307460405180602001604052808360c001518152508260800151614474565b60a08201819052600c5461308791614493565b60e0820152600d54608082015161309e919061443a565b6101008201526001600160a01b0386166000908152600e602052604090205460608201516130cc9190612db8565b60408301819052828260038111156130e057fe5b60038111156130eb57fe5b90525060009050815160038111156130ff57fe5b1461311b57612f8860096019836000015160038111156119e257fe5b60e0810151600c55610100810151600d556020808201516001600160a01b038088166000818152600e855260408082209490945583860151928b16808252908490209290925560608501518351908152925191939092600080516020615443833981519152929081900390910190a36080810151604080519182525130916001600160a01b038816916000805160206154438339815191529181900360200190a360a081015160e082015160408051308152602081019390935282810191909152517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a16000979650505050505050565b6000805460ff16613259576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561326b6117fa565b905080156132895761142581601081111561328257fe5b60086127ff565b61143633846144c9565b6000805460ff166132d8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556132ea6117fa565b9050801561330157611425816010811115612a0657fe5b61143633846000613b11565b60008054819060ff16613354576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556133666117fa565b905080156133915761338481601081111561337d57fe5b600f6127ff565b9250600091506134289050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156133cc57600080fd5b505af11580156133e0573d6000803e3d6000fd5b505050506040513d60208110156133f657600080fd5b5051905080156134165761338481601081111561340f57fe5b60106127ff565b6134223387878761475d565b92509250505b6000805460ff191660011790559094909350915050565b60035460009061010090046001600160a01b031633146134655761120c600160476127ff565b61346d612acd565b600954146134815761120c600a60486127ff565b670de0b6b3a764000082111561349d5761120c600260496127ff565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611334565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561355057600080fd5b505af1158015613564573d6000803e3d6000fd5b505050506040513d602081101561357a57600080fd5b50519050801561359e576135916003603883612d52565b925060009150612e329050565b6135a6612acd565b600954146135ba57613591600a60396127ff565b6135c26151bb565b6001600160a01b03861660009081526010602052604090206001015460608201526135ec86612a19565b608083018190526020830182600381111561360357fe5b600381111561360e57fe5b905250600090508160200151600381111561362557fe5b1461364f5761364160096037836020015160038111156119e257fe5b935060009250612e32915050565b6000198514156136685760808101516040820152613670565b604081018590525b61367e878260400151614c4f565b60e08201819052608082015161369391612cc7565b60a08301819052602083018260038111156136aa57fe5b60038111156136b557fe5b90525060009050816020015160038111156136cc57fe5b146137085760405162461bcd60e51b815260040180806020018281038252603a815260200180615409603a913960400191505060405180910390fd5b613718600b548260e00151612cc7565b60c083018190526020830182600381111561372f57fe5b600381111561373a57fe5b905250600090508160200151600381111561375157fe5b1461378d5760405162461bcd60e51b81526004018080602001828103825260318152602001806154636031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6000806000806138458787612db8565b9092509050600082600381111561385857fe5b146138695750915060009050612e32565b612e2b8186612cc7565b600061387d6150dd565b60008061389286670de0b6b3a7640000613fd8565b909250905060008260038111156138a557fe5b146138c4575060408051602081019091526000815290925090506126e4565b6000806138d18388614017565b909250905060008260038111156138e457fe5b14613906575060408051602081019091526000815290945092506126e4915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b600080600080613940612acd565b6009541461395f57613954600a604f6127ff565b93509150612ac89050565b6139693386614c4f565b905080600c54019150600c548210156139c9576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6011546040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905291519190921691829163a9059cbb9160448082019260009290919082900301818387803b158015613a7257600080fd5b505af1158015613a86573d6000803e3d6000fd5b5050505060003d60008114613aa25760208114613aac57600080fd5b6000199150613ab8565b60206000803e60005191505b5080613b0b576040805162461bcd60e51b815260206004820152601960248201527f544f4b454e5f5452414e534645525f4f55545f4641494c454400000000000000604482015290519081900360640190fd5b50505050565b6000821580613b1e575081155b613b595760405162461bcd60e51b81526004018080602001828103825260348152602001806155246034913960400191505060405180910390fd5b613b61615201565b613b696122b1565b6040830181905260208301826003811115613b8057fe5b6003811115613b8b57fe5b9052506000905081602001516003811115613ba257fe5b14613bc657613bbe6009602b836020015160038111156119e257fe5b915050611334565b8315613c47576060810184905260408051602081018252908201518152613bed9085612697565b6080830181905260208301826003811115613c0457fe5b6003811115613c0f57fe5b9052506000905081602001516003811115613c2657fe5b14613c4257613bbe60096029836020015160038111156119e257fe5b613cc0565b613c638360405180602001604052808460400151815250614e99565b6060830181905260208301826003811115613c7a57fe5b6003811115613c8557fe5b9052506000905081602001516003811115613c9c57fe5b14613cb857613bbe6009602a836020015160038111156119e257fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613d2557600080fd5b505af1158015613d39573d6000803e3d6000fd5b505050506040513d6020811015613d4f57600080fd5b505190508015613d6f57613d666003602883612d52565b92505050611334565b613d77612acd565b60095414613d8b57613d66600a602c6127ff565b613d9b600d548360600151612cc7565b60a0840181905260208401826003811115613db257fe5b6003811115613dbd57fe5b9052506000905082602001516003811115613dd457fe5b14613df057613d666009602e846020015160038111156119e257fe5b6001600160a01b0386166000908152600e60205260409020546060830151613e189190612cc7565b60c0840181905260208401826003811115613e2f57fe5b6003811115613e3a57fe5b9052506000905082602001516003811115613e5157fe5b14613e6d57613d666009602d846020015160038111156119e257fe5b8160800151613e7a6126eb565b1015613e8c57613d66600e602f6127ff565b613e9a868360800151613a1a565b60a0820151600d5560c08201516001600160a01b0387166000818152600e6020908152604091829020939093556060850151815190815290513093600080516020615443833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613fad57600080fd5b505af1158015613fc1573d6000803e3d6000fd5b5060009250613fce915050565b9695505050505050565b60008083613feb575060009050806126e4565b83830283858281613ff857fe5b041461400c575060029150600090506126e4565b6000925090506126e4565b6000808261402b57506001905060006126e4565b600083858161403657fe5b04915091509250929050565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b1580156140a357600080fd5b505af11580156140b7573d6000803e3d6000fd5b505050506040513d60208110156140cd57600080fd5b5051905080156140f1576140e46003601f83612d52565b9250600091506126e49050565b6140f9612acd565b6009541461410d576140e4600a60226127ff565b614115615201565b61411d6122b1565b604083018190526020830182600381111561413457fe5b600381111561413f57fe5b905250600090508160200151600381111561415657fe5b146141805761417260096021836020015160038111156119e257fe5b9350600092506126e4915050565b61418a8686614c4f565b60c08201819052604080516020810182529083015181526141ab9190614e99565b60608301819052602083018260038111156141c257fe5b60038111156141cd57fe5b90525060009050816020015160038111156141e457fe5b14614236576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b614246600d548260600151612db8565b608083018190526020830182600381111561425d57fe5b600381111561426857fe5b905250600090508160200151600381111561427f57fe5b146142bb5760405162461bcd60e51b81526004018080602001828103825260288152602001806154fc6028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516142e39190612db8565b60a08301819052602083018260038111156142fa57fe5b600381111561430557fe5b905250600090508160200151600381111561431c57fe5b146143585760405162461bcd60e51b815260040180806020018281038252602b8152602001806153a7602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206154438339815191529181900360200190a360c001516000969095509350505050565b6000670de0b6b3a764000061442b848460000151614eb0565b8161443257fe5b049392505050565b60006113348383604051806040016040528060158152602001747375627472616374696f6e20756e646572666c6f7760581b815250614ef2565b600061447e6150dd565b6144888484614f89565b90506111c481613923565b60006113348383604051806040016040528060118152602001706164646974696f6e206f766572666c6f7760781b815250614fb3565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b15801561452657600080fd5b505af115801561453a573d6000803e3d6000fd5b505050506040513d602081101561455057600080fd5b50519050801561456f576145676003600e83612d52565b915050610d00565b614577612acd565b6009541461458a57614567600a806127ff565b826145936126eb565b10156145a557614567600e60096127ff565b6145ad61523f565b6145b685612a19565b60208301819052828260038111156145ca57fe5b60038111156145d557fe5b90525060009050815160038111156145e957fe5b1461460e5761460560096007836000015160038111156119e257fe5b92505050610d00565b61461c816020015185612db8565b604083018190528282600381111561463057fe5b600381111561463b57fe5b905250600090508151600381111561464f57fe5b1461466b576146056009600c836000015160038111156119e257fe5b614677600b5485612db8565b606083018190528282600381111561468b57fe5b600381111561469657fe5b90525060009050815160038111156146aa57fe5b146146c6576146056009600b836000015160038111156119e257fe5b6146d08585613a1a565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b1580156147ce57600080fd5b505af11580156147e2573d6000803e3d6000fd5b505050506040513d60208110156147f857600080fd5b50519050801561481c5761480f6003601283612d52565b925060009150614c469050565b614824612acd565b600954146148385761480f600a60166127ff565b614840612acd565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561487957600080fd5b505afa15801561488d573d6000803e3d6000fd5b505050506040513d60208110156148a357600080fd5b5051146148b65761480f600a60116127ff565b866001600160a01b0316866001600160a01b031614156148dc5761480f600660176127ff565b846148ed5761480f600760156127ff565b6000198514156149035761480f600760146127ff565b6000806149118989896134e7565b909250905081156149415761493282601081111561492b57fe5b60186127ff565b945060009350614c4692505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b15801561499b57600080fd5b505afa1580156149af573d6000803e3d6000fd5b505050506040513d60408110156149c557600080fd5b50805160209091015190925090508115614a105760405162461bcd60e51b81526004018080602001828103825260338152602001806154946033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015614a6757600080fd5b505afa158015614a7b573d6000803e3d6000fd5b505050506040513d6020811015614a9157600080fd5b50511015614ae6576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b038916301415614b0c57614b05308d8d85612e3a565b9050614b96565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b158015614b6757600080fd5b505af1158015614b7b573d6000803e3d6000fd5b505050506040513d6020811015614b9157600080fd5b505190505b8015614be0576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a16000975092955050505050505b94509492505050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b158015614c9e57600080fd5b505afa158015614cb2573d6000803e3d6000fd5b505050506040513d6020811015614cc857600080fd5b5051604080516323b872dd60e01b81526001600160a01b038881166004830152306024830152604482018890529151929350908416916323b872dd9160648082019260009290919082900301818387803b158015614d2557600080fd5b505af1158015614d39573d6000803e3d6000fd5b5050505060003d60008114614d555760208114614d5f57600080fd5b6000199150614d6b565b60206000803e60005191505b5080614dbe576040805162461bcd60e51b815260206004820152601860248201527f544f4b454e5f5452414e534645525f494e5f4641494c45440000000000000000604482015290519081900360640190fd5b601154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015614e0957600080fd5b505afa158015614e1d573d6000803e3d6000fd5b505050506040513d6020811015614e3357600080fd5b5051905082811015614e8c576040805162461bcd60e51b815260206004820152601a60248201527f544f4b454e5f5452414e534645525f494e5f4f564552464c4f57000000000000604482015290519081900360640190fd5b9190910395945050505050565b6000806000614ea66150dd565b6126ae8686615008565b600061133483836040518060400160405280601781526020017f6d756c7469706c69636174696f6e206f766572666c6f77000000000000000000815250615067565b60008184841115614f815760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614f46578181015183820152602001614f2e565b50505050905090810190601f168015614f735780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b614f916150dd565b6040518060200160405280614faa856000015185614eb0565b90529392505050565b600083830182858210156110f55760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614f46578181015183820152602001614f2e565b60006150126150dd565b600080615027670de0b6b3a764000087613fd8565b9092509050600082600381111561503a57fe5b14615059575060408051602081019091526000815290925090506126e4565b6126dd818660000151613873565b6000831580615074575082155b1561508157506000611334565b8383028385828161508e57fe5b041483906110f55760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614f46578181015183820152602001614f2e565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061513157805160ff191683800117855561515e565b8280016001018555821561515e579182015b8281111561515e578251825591602001919060010190615143565b5061516a929150615268565b5090565b604080516101208101909152806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610e9891905b8082111561516a576000815560010161526e56fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e6f6e6c79207468652061646d696e206d61792073657420746865206172732d6c696b652064656c656761746573657474696e6720696e7465726573742072617465206d6f64656c206661696c65646f6e6c79207468652061646d696e206d61792063616c6c205f72657369676e496d706c656d656e746174696f6e4145726332303a3a7377656570546f6b656e3a2063616e206e6f7420737765657020756e6465726c79696e6720746f6b656e4d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f776f6e6c79207468652061646d696e206d61792063616c6c205f6265636f6d65496d706c656d656e746174696f6ea265627a7a723158204eac7fcbd59c4e0e798144416c62f759993be66c76f19a63acc041b7b3bdbef664736f6c63430005110032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103425760003560e01c806373acee98116101b8578063b71d1a0c11610104578063e9c714f2116100a2578063f5e3c4621161007c578063f5e3c46214610ba9578063f851a44014610bdf578063f8f9da2814610be7578063fca7820b14610bef57610342565b8063e9c714f214610b73578063f2b3abbd14610b7b578063f3fdb15a14610ba157610342565b8063c37f68e2116100de578063c37f68e214610abf578063c5ebeaec14610b0b578063db006a7514610b28578063dd62ed3e14610b4557610342565b8063b71d1a0c14610a6b578063bd6d894d14610a91578063c2647e5714610a9957610342565b806399d8c1b411610171578063a9059cbb1161014b578063a9059cbb146109f9578063aa5af0fd14610a25578063ae9d70b014610a2d578063b2a02ff114610a3557610342565b806399d8c1b414610886578063a0712d68146109d4578063a6afed95146109f157610342565b806373acee9814610823578063852a12e31461082b5780638f840ddd1461084857806394c393fc1461085057806395d89b411461085857806395dd91931461086057610342565b8063313ce567116102925780635c60da1b116102305780636752e7021161020a5780636752e702146107e55780636c540baf146107ed5780636f307dc3146107f557806370a08231146107fd57610342565b80635c60da1b146107b85780635fe3b567146107c0578063601a0bf1146107c857610342565b80633e9410101161026c5780633e941010146106c95780634576b5db146106e657806347bd37181461070c57806356e677281461071457610342565b8063313ce5671461067d5780633af9e6691461069b5780633b1d21a2146106c157610342565b806318160ddd116102ff5780631be19560116102d95780631be19560146105d157806323b872dd146105f75780632608f8181461062d578063267822471461065957610342565b806318160ddd1461046b578063182df0f5146104735780631a31d4651461047b57610342565b806306fdde0314610347578063095ea7b3146103c45780630e75270214610404578063153ab50514610433578063173b99041461043d57806317bfdfbc14610445575b600080fd5b61034f610c0c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610389578181015183820152602001610371565b50505050905090810190601f1680156103b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103f0600480360360408110156103da57600080fd5b506001600160a01b038135169060200135610c99565b604080519115158252519081900360200190f35b6104216004803603602081101561041a57600080fd5b5035610d06565b60408051918252519081900360200190f35b61043b610d1c565b005b610421610d6c565b6104216004803603602081101561045b57600080fd5b50356001600160a01b0316610d72565b610421610e32565b610421610e38565b61043b600480360360e081101561049157600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b8111156104d357600080fd5b8201836020820111156104e557600080fd5b803590602001918460018302840111600160201b8311171561050657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561055857600080fd5b82018360208201111561056a57600080fd5b803590602001918460018302840111600160201b8311171561058b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610e9b9050565b61043b600480360360208110156105e757600080fd5b50356001600160a01b0316610f3a565b6103f06004803603606081101561060d57600080fd5b506001600160a01b03813581169160208101359091169060400135611076565b6104216004803603604081101561064357600080fd5b506001600160a01b0381351690602001356110e8565b6106616110fe565b604080516001600160a01b039092168252519081900360200190f35b61068561110d565b6040805160ff9092168252519081900360200190f35b610421600480360360208110156106b157600080fd5b50356001600160a01b0316611116565b6104216111cc565b610421600480360360208110156106df57600080fd5b50356111db565b610421600480360360208110156106fc57600080fd5b50356001600160a01b03166111e6565b61042161133b565b61043b6004803603602081101561072a57600080fd5b810190602081018135600160201b81111561074457600080fd5b82018360208201111561075657600080fd5b803590602001918460018302840111600160201b8311171561077757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611341945050505050565b610661611392565b6106616113a1565b610421600480360360208110156107de57600080fd5b50356113b0565b61042161144b565b610421611456565b61066161145c565b6104216004803603602081101561081357600080fd5b50356001600160a01b031661146b565b610421611486565b6104216004803603602081101561084157600080fd5b503561153c565b610421611547565b6103f061154d565b61034f611552565b6104216004803603602081101561087657600080fd5b50356001600160a01b03166115aa565b61043b600480360360c081101561089c57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156108d657600080fd5b8201836020820111156108e857600080fd5b803590602001918460018302840111600160201b8311171561090957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561095b57600080fd5b82018360208201111561096d57600080fd5b803590602001918460018302840111600160201b8311171561098e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506116079050565b610421600480360360208110156109ea57600080fd5b50356117ee565b6104216117fa565b6103f060048036036040811015610a0f57600080fd5b506001600160a01b038135169060200135611b52565b610421611bc3565b610421611bc9565b61042160048036036060811015610a4b57600080fd5b506001600160a01b03813581169160208101359091169060400135611c68565b61042160048036036020811015610a8157600080fd5b50356001600160a01b0316611cd9565b610421611d65565b61043b60048036036020811015610aaf57600080fd5b50356001600160a01b0316611e21565b610ae560048036036020811015610ad557600080fd5b50356001600160a01b0316611ed8565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61042160048036036020811015610b2157600080fd5b5035611f6d565b61042160048036036020811015610b3e57600080fd5b5035611f78565b61042160048036036040811015610b5b57600080fd5b506001600160a01b0381358116916020013516611f83565b610421611fae565b61042160048036036020811015610b9157600080fd5b50356001600160a01b03166120b1565b6106616120eb565b61042160048036036060811015610bbf57600080fd5b506001600160a01b038135811691602081013591604090910135166120fa565b610661612112565b610421612126565b61042160048036036020811015610c0557600080fd5b503561218a565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c915780601f10610c6657610100808354040283529160200191610c91565b820191906000526020600020905b815481529060010190602001808311610c7457829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b600080610d1283612208565b509150505b919050565b60035461010090046001600160a01b03163314610d6a5760405162461bcd60e51b815260040180806020018281038252602d815260200180615348602d913960400191505060405180910390fd5b565b60085481565b6000805460ff16610db7576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610dc96117fa565b14610e14576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610e1d826115aa565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610e456122b1565b90925090506000826003811115610e5857fe5b14610e945760405162461bcd60e51b81526004018080602001828103825260358152602001806154c76035913960400191505060405180910390fd5b9150505b90565b610ea9868686868686611607565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015610f0557600080fd5b505afa158015610f19573d6000803e3d6000fd5b505050506040513d6020811015610f2f57600080fd5b505050505050505050565b6011546001600160a01b0382811691161415610f875760405162461bcd60e51b81526004018080602001828103825260328152602001806153756032913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b158015610fd157600080fd5b505afa158015610fe5573d6000803e3d6000fd5b505050506040513d6020811015610ffb57600080fd5b50516003546040805163a9059cbb60e01b81526101009092046001600160a01b03908116600484015260248301849052905192935084169163a9059cbb9160448082019260009290919082900301818387803b15801561105a57600080fd5b505af115801561106e573d6000803e3d6000fd5b505050505050565b6000805460ff166110bb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556110d133868686612360565b1490506000805460ff191660011790559392505050565b6000806110f584846125ec565b50949350505050565b6004546001600160a01b031681565b60035460ff1681565b60006111206150dd565b6040518060200160405280611133611d65565b90526001600160a01b0384166000908152600e602052604081205491925090819061115f908490612697565b9092509050600082600381111561117257fe5b146111c4576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b949350505050565b60006111d66126eb565b905090565b6000610d008261276b565b60035460009061010090046001600160a01b031633146112135761120c6001603f6127ff565b9050610d17565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b15801561125857600080fd5b505afa15801561126c573d6000803e3d6000fd5b505050506040513d602081101561128257600080fd5b50516112d5576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b60035461010090046001600160a01b0316331461138f5760405162461bcd60e51b815260040180806020018281038252602d81526020018061557c602d913960400191505060405180910390fd5b50565b6012546001600160a01b031681565b6005546001600160a01b031681565b6000805460ff166113f5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114076117fa565b9050801561142d5761142581601081111561141e57fe5b60306127ff565b915050610e20565b61143683612865565b9150506000805460ff19166001179055919050565b66b1a2bc2ec5000081565b60095481565b6011546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166114cb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114dd6117fa565b14611528576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610d0082612998565b600c5481565b600181565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610c915780601f10610c6657610100808354040283529160200191610c91565b60008060006115b884612a19565b909250905060008260038111156115cb57fe5b146113345760405162461bcd60e51b81526004018080602001828103825260378152602001806153d26037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146116555760405162461bcd60e51b81526004018080602001828103825260248152602001806152836024913960400191505060405180910390fd5b6009541580156116655750600a54155b6116a05760405162461bcd60e51b81526004018080602001828103825260238152602001806152a76023913960400191505060405180910390fd5b6007849055836116e15760405162461bcd60e51b81526004018080602001828103825260308152602001806152ca6030913960400191505060405180910390fd5b60006116ec876111e6565b90508015611741576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b611749612acd565b600955670de0b6b3a7640000600a5561176186612ad1565b905080156117a05760405162461bcd60e51b81526004018080602001828103825260228152602001806153266022913960400191505060405180910390fd5b83516117b39060019060208701906150f0565b5082516117c79060029060208601906150f0565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080610d1283612c46565b600080611805612acd565b6009549091508082141561181e57600092505050610e98565b60006118286126eb565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561189657600080fd5b505afa1580156118aa573d6000803e3d6000fd5b505050506040513d60208110156118c057600080fd5b5051905065048c2739500081111561191f576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60008061192c8989612cc7565b9092509050600082600381111561193f57fe5b14611991576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b6119996150dd565b6000806000806119b760405180602001604052808a81525087612cea565b909750945060008760038111156119ca57fe5b146119fc576119e7600960068960038111156119e257fe5b612d52565b9e505050505050505050505050505050610e98565b611a06858c612697565b90975093506000876003811115611a1957fe5b14611a31576119e7600960018960038111156119e257fe5b611a3b848c612db8565b90975092506000876003811115611a4e57fe5b14611a66576119e7600960048960038111156119e257fe5b611a816040518060200160405280600854815250858c612dde565b90975091506000876003811115611a9457fe5b14611aac576119e7600960058960038111156119e257fe5b611ab7858a8b612dde565b90975090506000876003811115611aca57fe5b14611ae2576119e7600960038960038111156119e257fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611b97576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611bad33338686612360565b1490506000805460ff1916600117905592915050565b600a5481565b6006546000906001600160a01b031663b8168816611be56126eb565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611c3757600080fd5b505afa158015611c4b573d6000803e3d6000fd5b505050506040513d6020811015611c6157600080fd5b5051905090565b6000805460ff16611cad576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611cc333858585612e3a565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611cff5761120c600160456127ff565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611334565b6000805460ff16611daa576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611dbc6117fa565b14611e07576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611e0f610e38565b90506000805460ff1916600117905590565b60035461010090046001600160a01b03163314611e6f5760405162461bcd60e51b815260040180806020018281038252602c8152602001806152fa602c913960400191505060405180910390fd5b601154604080516317066a5760e21b81526001600160a01b03848116600483015291519190921691635c19a95c91602480830192600092919082900301818387803b158015611ebd57600080fd5b505af1158015611ed1573d6000803e3d6000fd5b5050505050565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611f0389612a19565b935090506000816003811115611f1557fe5b14611f335760095b975060009650869550859450611f669350505050565b611f3b6122b1565b925090506000816003811115611f4d57fe5b14611f59576009611f1d565b5060009650919450925090505b9193509193565b6000610d0082613214565b6000610d0082613293565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6004546000906001600160a01b031633141580611fc9575033155b15611fe157611fda600160006127ff565b9050610e98565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6000806120bc6117fa565b905080156120e2576120da8160108111156120d357fe5b60406127ff565b915050610d17565b61133483612ad1565b6006546001600160a01b031681565b60008061210885858561330d565b5095945050505050565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f240536121426126eb565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611c3757600080fd5b6000805460ff166121cf576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556121e16117fa565b905080156121ff576114258160108111156121f857fe5b60466127ff565b6114368361343f565b60008054819060ff1661224f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556122616117fa565b9050801561228c5761227f81601081111561227857fe5b60366127ff565b92506000915061229d9050565b6122973333866134e7565b92509250505b6000805460ff191660011790559092909150565b600d546000908190806122cc5750506007546000915061235c565b60006122d66126eb565b905060006122e26150dd565b60006122f384600b54600c54613835565b93509050600081600381111561230557fe5b1461231a5795506000945061235c9350505050565b6123248386613873565b92509050600081600381111561233657fe5b1461234b5795506000945061235c9350505050565b505160009550935061235c92505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b1580156123c557600080fd5b505af11580156123d9573d6000803e3d6000fd5b505050506040513d60208110156123ef57600080fd5b50519050801561240e576124066003604a83612d52565b9150506111c4565b836001600160a01b0316856001600160a01b03161415612434576124066002604b6127ff565b60006001600160a01b038781169087161415612453575060001961247b565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061248b8589612cc7565b9094509250600084600381111561249e57fe5b146124bc576124af6009604b6127ff565b96505050505050506111c4565b6001600160a01b038a166000908152600e60205260409020546124df9089612cc7565b909450915060008460038111156124f257fe5b14612503576124af6009604c6127ff565b6001600160a01b0389166000908152600e60205260409020546125269089612db8565b9094509050600084600381111561253957fe5b1461254a576124af6009604d6127ff565b6001600160a01b03808b166000908152600e6020526040808220859055918b1681522081905560001985146125a2576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206154438339815191528a6040518082815260200191505060405180910390a35060009a9950505050505050505050565b60008054819060ff16612633576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556126456117fa565b905080156126705761266381601081111561265c57fe5b60356127ff565b9250600091506126819050565b61267b3386866134e7565b92509250505b6000805460ff1916600117905590939092509050565b60008060006126a46150dd565b6126ae8686612cea565b909250905060008260038111156126c157fe5b146126d257509150600090506126e4565b60006126dd82613923565b9350935050505b9250929050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561273957600080fd5b505afa15801561274d573d6000803e3d6000fd5b505050506040513d602081101561276357600080fd5b505191505090565b6000805460ff166127b0576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556127c26117fa565b905080156127e0576114258160108111156127d957fe5b604e6127ff565b6127e983613932565b509150506000805460ff19166001179055919050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561282e57fe5b83605081111561283a57fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561133457fe5b600354600090819061010090046001600160a01b0316331461288d576120da600160316127ff565b612895612acd565b600954146128a9576120da600a60336127ff565b826128b26126eb565b10156128c4576120da600e60326127ff565b600c548311156128da576120da600260346127ff565b50600c54828103908111156129205760405162461bcd60e51b81526004018080602001828103825260248152602001806155586024913960400191505060405180910390fd5b600c8190556003546129409061010090046001600160a01b031684613a1a565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611334565b6000805460ff166129dd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556129ef6117fa565b90508015612a0d57611425816010811115612a0657fe5b60276127ff565b61143633600085613b11565b6001600160a01b038116600090815260106020526040812080548291829182918291612a50575060009450849350612ac892505050565b612a608160000154600a54613fd8565b90945092506000846003811115612a7357fe5b14612a88575091935060009250612ac8915050565b612a96838260010154614017565b90945091506000846003811115612aa957fe5b14612abe575091935060009250612ac8915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b03163314612af9576120da600160426127ff565b612b01612acd565b60095414612b15576120da600a60416127ff565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612b6657600080fd5b505afa158015612b7a573d6000803e3d6000fd5b505050506040513d6020811015612b9057600080fd5b5051612be3576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611334565b60008054819060ff16612c8d576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612c9f6117fa565b90508015612cbd5761227f816010811115612cb657fe5b601e6127ff565b6122973385614042565b600080838311612cde5750600090508183036126e4565b506003905060006126e4565b6000612cf46150dd565b600080612d05866000015186613fd8565b90925090506000826003811115612d1857fe5b14612d37575060408051602081019091526000815290925090506126e4565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612d8157fe5b846050811115612d8d57fe5b604080519283526020830191909152818101859052519081900360600190a18360108111156111c457fe5b600080838301848110612dd0576000925090506126e4565b5060029150600090506126e4565b6000806000612deb6150dd565b612df58787612cea565b90925090506000826003811115612e0857fe5b14612e195750915060009050612e32565b612e2b612e2582613923565b86612db8565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015612ea757600080fd5b505af1158015612ebb573d6000803e3d6000fd5b505050506040513d6020811015612ed157600080fd5b505190508015612ee8576124066003601b83612d52565b846001600160a01b0316846001600160a01b03161415612f0e576124066006601c6127ff565b612f1661516e565b6001600160a01b0385166000908152600e6020526040902054612f399085612cc7565b6020830181905282826003811115612f4d57fe5b6003811115612f5857fe5b9052506000905081516003811115612f6c57fe5b14612f9157612f886009601a836000015160038111156119e257fe5b925050506111c4565b612fb084604051806020016040528066b1a2bc2ec50000815250614412565b60808201819052612fc290859061443a565b6060820152612fcf6122b1565b60c0830181905282826003811115612fe357fe5b6003811115612fee57fe5b905250600090508151600381111561300257fe5b14613054576040805162461bcd60e51b815260206004820152601860248201527f65786368616e67652072617465206d617468206572726f720000000000000000604482015290519081900360640190fd5b61307460405180602001604052808360c001518152508260800151614474565b60a08201819052600c5461308791614493565b60e0820152600d54608082015161309e919061443a565b6101008201526001600160a01b0386166000908152600e602052604090205460608201516130cc9190612db8565b60408301819052828260038111156130e057fe5b60038111156130eb57fe5b90525060009050815160038111156130ff57fe5b1461311b57612f8860096019836000015160038111156119e257fe5b60e0810151600c55610100810151600d556020808201516001600160a01b038088166000818152600e855260408082209490945583860151928b16808252908490209290925560608501518351908152925191939092600080516020615443833981519152929081900390910190a36080810151604080519182525130916001600160a01b038816916000805160206154438339815191529181900360200190a360a081015160e082015160408051308152602081019390935282810191909152517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a16000979650505050505050565b6000805460ff16613259576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561326b6117fa565b905080156132895761142581601081111561328257fe5b60086127ff565b61143633846144c9565b6000805460ff166132d8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556132ea6117fa565b9050801561330157611425816010811115612a0657fe5b61143633846000613b11565b60008054819060ff16613354576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556133666117fa565b905080156133915761338481601081111561337d57fe5b600f6127ff565b9250600091506134289050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156133cc57600080fd5b505af11580156133e0573d6000803e3d6000fd5b505050506040513d60208110156133f657600080fd5b5051905080156134165761338481601081111561340f57fe5b60106127ff565b6134223387878761475d565b92509250505b6000805460ff191660011790559094909350915050565b60035460009061010090046001600160a01b031633146134655761120c600160476127ff565b61346d612acd565b600954146134815761120c600a60486127ff565b670de0b6b3a764000082111561349d5761120c600260496127ff565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611334565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561355057600080fd5b505af1158015613564573d6000803e3d6000fd5b505050506040513d602081101561357a57600080fd5b50519050801561359e576135916003603883612d52565b925060009150612e329050565b6135a6612acd565b600954146135ba57613591600a60396127ff565b6135c26151bb565b6001600160a01b03861660009081526010602052604090206001015460608201526135ec86612a19565b608083018190526020830182600381111561360357fe5b600381111561360e57fe5b905250600090508160200151600381111561362557fe5b1461364f5761364160096037836020015160038111156119e257fe5b935060009250612e32915050565b6000198514156136685760808101516040820152613670565b604081018590525b61367e878260400151614c4f565b60e08201819052608082015161369391612cc7565b60a08301819052602083018260038111156136aa57fe5b60038111156136b557fe5b90525060009050816020015160038111156136cc57fe5b146137085760405162461bcd60e51b815260040180806020018281038252603a815260200180615409603a913960400191505060405180910390fd5b613718600b548260e00151612cc7565b60c083018190526020830182600381111561372f57fe5b600381111561373a57fe5b905250600090508160200151600381111561375157fe5b1461378d5760405162461bcd60e51b81526004018080602001828103825260318152602001806154636031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6000806000806138458787612db8565b9092509050600082600381111561385857fe5b146138695750915060009050612e32565b612e2b8186612cc7565b600061387d6150dd565b60008061389286670de0b6b3a7640000613fd8565b909250905060008260038111156138a557fe5b146138c4575060408051602081019091526000815290925090506126e4565b6000806138d18388614017565b909250905060008260038111156138e457fe5b14613906575060408051602081019091526000815290945092506126e4915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b600080600080613940612acd565b6009541461395f57613954600a604f6127ff565b93509150612ac89050565b6139693386614c4f565b905080600c54019150600c548210156139c9576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6011546040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905291519190921691829163a9059cbb9160448082019260009290919082900301818387803b158015613a7257600080fd5b505af1158015613a86573d6000803e3d6000fd5b5050505060003d60008114613aa25760208114613aac57600080fd5b6000199150613ab8565b60206000803e60005191505b5080613b0b576040805162461bcd60e51b815260206004820152601960248201527f544f4b454e5f5452414e534645525f4f55545f4641494c454400000000000000604482015290519081900360640190fd5b50505050565b6000821580613b1e575081155b613b595760405162461bcd60e51b81526004018080602001828103825260348152602001806155246034913960400191505060405180910390fd5b613b61615201565b613b696122b1565b6040830181905260208301826003811115613b8057fe5b6003811115613b8b57fe5b9052506000905081602001516003811115613ba257fe5b14613bc657613bbe6009602b836020015160038111156119e257fe5b915050611334565b8315613c47576060810184905260408051602081018252908201518152613bed9085612697565b6080830181905260208301826003811115613c0457fe5b6003811115613c0f57fe5b9052506000905081602001516003811115613c2657fe5b14613c4257613bbe60096029836020015160038111156119e257fe5b613cc0565b613c638360405180602001604052808460400151815250614e99565b6060830181905260208301826003811115613c7a57fe5b6003811115613c8557fe5b9052506000905081602001516003811115613c9c57fe5b14613cb857613bbe6009602a836020015160038111156119e257fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613d2557600080fd5b505af1158015613d39573d6000803e3d6000fd5b505050506040513d6020811015613d4f57600080fd5b505190508015613d6f57613d666003602883612d52565b92505050611334565b613d77612acd565b60095414613d8b57613d66600a602c6127ff565b613d9b600d548360600151612cc7565b60a0840181905260208401826003811115613db257fe5b6003811115613dbd57fe5b9052506000905082602001516003811115613dd457fe5b14613df057613d666009602e846020015160038111156119e257fe5b6001600160a01b0386166000908152600e60205260409020546060830151613e189190612cc7565b60c0840181905260208401826003811115613e2f57fe5b6003811115613e3a57fe5b9052506000905082602001516003811115613e5157fe5b14613e6d57613d666009602d846020015160038111156119e257fe5b8160800151613e7a6126eb565b1015613e8c57613d66600e602f6127ff565b613e9a868360800151613a1a565b60a0820151600d5560c08201516001600160a01b0387166000818152600e6020908152604091829020939093556060850151815190815290513093600080516020615443833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613fad57600080fd5b505af1158015613fc1573d6000803e3d6000fd5b5060009250613fce915050565b9695505050505050565b60008083613feb575060009050806126e4565b83830283858281613ff857fe5b041461400c575060029150600090506126e4565b6000925090506126e4565b6000808261402b57506001905060006126e4565b600083858161403657fe5b04915091509250929050565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b1580156140a357600080fd5b505af11580156140b7573d6000803e3d6000fd5b505050506040513d60208110156140cd57600080fd5b5051905080156140f1576140e46003601f83612d52565b9250600091506126e49050565b6140f9612acd565b6009541461410d576140e4600a60226127ff565b614115615201565b61411d6122b1565b604083018190526020830182600381111561413457fe5b600381111561413f57fe5b905250600090508160200151600381111561415657fe5b146141805761417260096021836020015160038111156119e257fe5b9350600092506126e4915050565b61418a8686614c4f565b60c08201819052604080516020810182529083015181526141ab9190614e99565b60608301819052602083018260038111156141c257fe5b60038111156141cd57fe5b90525060009050816020015160038111156141e457fe5b14614236576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b614246600d548260600151612db8565b608083018190526020830182600381111561425d57fe5b600381111561426857fe5b905250600090508160200151600381111561427f57fe5b146142bb5760405162461bcd60e51b81526004018080602001828103825260288152602001806154fc6028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516142e39190612db8565b60a08301819052602083018260038111156142fa57fe5b600381111561430557fe5b905250600090508160200151600381111561431c57fe5b146143585760405162461bcd60e51b815260040180806020018281038252602b8152602001806153a7602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206154438339815191529181900360200190a360c001516000969095509350505050565b6000670de0b6b3a764000061442b848460000151614eb0565b8161443257fe5b049392505050565b60006113348383604051806040016040528060158152602001747375627472616374696f6e20756e646572666c6f7760581b815250614ef2565b600061447e6150dd565b6144888484614f89565b90506111c481613923565b60006113348383604051806040016040528060118152602001706164646974696f6e206f766572666c6f7760781b815250614fb3565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b15801561452657600080fd5b505af115801561453a573d6000803e3d6000fd5b505050506040513d602081101561455057600080fd5b50519050801561456f576145676003600e83612d52565b915050610d00565b614577612acd565b6009541461458a57614567600a806127ff565b826145936126eb565b10156145a557614567600e60096127ff565b6145ad61523f565b6145b685612a19565b60208301819052828260038111156145ca57fe5b60038111156145d557fe5b90525060009050815160038111156145e957fe5b1461460e5761460560096007836000015160038111156119e257fe5b92505050610d00565b61461c816020015185612db8565b604083018190528282600381111561463057fe5b600381111561463b57fe5b905250600090508151600381111561464f57fe5b1461466b576146056009600c836000015160038111156119e257fe5b614677600b5485612db8565b606083018190528282600381111561468b57fe5b600381111561469657fe5b90525060009050815160038111156146aa57fe5b146146c6576146056009600b836000015160038111156119e257fe5b6146d08585613a1a565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b1580156147ce57600080fd5b505af11580156147e2573d6000803e3d6000fd5b505050506040513d60208110156147f857600080fd5b50519050801561481c5761480f6003601283612d52565b925060009150614c469050565b614824612acd565b600954146148385761480f600a60166127ff565b614840612acd565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561487957600080fd5b505afa15801561488d573d6000803e3d6000fd5b505050506040513d60208110156148a357600080fd5b5051146148b65761480f600a60116127ff565b866001600160a01b0316866001600160a01b031614156148dc5761480f600660176127ff565b846148ed5761480f600760156127ff565b6000198514156149035761480f600760146127ff565b6000806149118989896134e7565b909250905081156149415761493282601081111561492b57fe5b60186127ff565b945060009350614c4692505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b15801561499b57600080fd5b505afa1580156149af573d6000803e3d6000fd5b505050506040513d60408110156149c557600080fd5b50805160209091015190925090508115614a105760405162461bcd60e51b81526004018080602001828103825260338152602001806154946033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015614a6757600080fd5b505afa158015614a7b573d6000803e3d6000fd5b505050506040513d6020811015614a9157600080fd5b50511015614ae6576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b038916301415614b0c57614b05308d8d85612e3a565b9050614b96565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b158015614b6757600080fd5b505af1158015614b7b573d6000803e3d6000fd5b505050506040513d6020811015614b9157600080fd5b505190505b8015614be0576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a16000975092955050505050505b94509492505050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b158015614c9e57600080fd5b505afa158015614cb2573d6000803e3d6000fd5b505050506040513d6020811015614cc857600080fd5b5051604080516323b872dd60e01b81526001600160a01b038881166004830152306024830152604482018890529151929350908416916323b872dd9160648082019260009290919082900301818387803b158015614d2557600080fd5b505af1158015614d39573d6000803e3d6000fd5b5050505060003d60008114614d555760208114614d5f57600080fd5b6000199150614d6b565b60206000803e60005191505b5080614dbe576040805162461bcd60e51b815260206004820152601860248201527f544f4b454e5f5452414e534645525f494e5f4641494c45440000000000000000604482015290519081900360640190fd5b601154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015614e0957600080fd5b505afa158015614e1d573d6000803e3d6000fd5b505050506040513d6020811015614e3357600080fd5b5051905082811015614e8c576040805162461bcd60e51b815260206004820152601a60248201527f544f4b454e5f5452414e534645525f494e5f4f564552464c4f57000000000000604482015290519081900360640190fd5b9190910395945050505050565b6000806000614ea66150dd565b6126ae8686615008565b600061133483836040518060400160405280601781526020017f6d756c7469706c69636174696f6e206f766572666c6f77000000000000000000815250615067565b60008184841115614f815760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614f46578181015183820152602001614f2e565b50505050905090810190601f168015614f735780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b614f916150dd565b6040518060200160405280614faa856000015185614eb0565b90529392505050565b600083830182858210156110f55760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614f46578181015183820152602001614f2e565b60006150126150dd565b600080615027670de0b6b3a764000087613fd8565b9092509050600082600381111561503a57fe5b14615059575060408051602081019091526000815290925090506126e4565b6126dd818660000151613873565b6000831580615074575082155b1561508157506000611334565b8383028385828161508e57fe5b041483906110f55760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614f46578181015183820152602001614f2e565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061513157805160ff191683800117855561515e565b8280016001018555821561515e579182015b8281111561515e578251825591602001919060010190615143565b5061516a929150615268565b5090565b604080516101208101909152806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610e9891905b8082111561516a576000815560010161526e56fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e6f6e6c79207468652061646d696e206d61792073657420746865206172732d6c696b652064656c656761746573657474696e6720696e7465726573742072617465206d6f64656c206661696c65646f6e6c79207468652061646d696e206d61792063616c6c205f72657369676e496d706c656d656e746174696f6e4145726332303a3a7377656570546f6b656e3a2063616e206e6f7420737765657020756e6465726c79696e6720746f6b656e4d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f776f6e6c79207468652061646d696e206d61792063616c6c205f6265636f6d65496d706c656d656e746174696f6ea265627a7a723158204eac7fcbd59c4e0e798144416c62f759993be66c76f19a63acc041b7b3bdbef664736f6c63430005110032
Deployed Bytecode Sourcemap
122020:1059:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;122020:1059:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7237: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;7237:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50547:237;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50547:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;115161:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;115161:149:0;;:::i;:::-;;;;;;;;;;;;;;;;122797:279;;;:::i;:::-;;8540:33;;;:::i;54796:224::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54796:224:0;-1:-1:-1;;;;;54796:224:0;;:::i;9185:23::-;;;:::i;57641:261::-;;;:::i;112412:684::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;112412:684:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;112412:684:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;112412:684:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;112412:684:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;112412:684:0;;;;;;;;-1:-1:-1;112412:684:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;112412:684:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;112412:684:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;112412:684:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;112412:684:0;;-1:-1:-1;;;112412:684:0;;;;;-1:-1:-1;112412:684:0;;-1:-1:-1;112412:684:0:i;116719:263::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;116719:263:0;-1:-1:-1;;;;;116719:263:0;;:::i;49882:195::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;49882:195:0;;;;;;;;;;;;;;;;;:::i;115598:189::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;115598:189:0;;;;;;;;:::i;7964:35::-;;;:::i;:::-;;;;-1:-1:-1;;;;;7964:35:0;;;;;;;;;;;;;;7433:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51815:354;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51815:354:0;-1:-1:-1;;;;;51815:354:0;;:::i;59522:88::-;;;:::i;117216:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;117216:119:0;;:::i;98996:735::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;98996:735:0;-1:-1:-1;;;;;98996:735:0;;:::i;8949:24::-;;;:::i;122338:349::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;122338:349:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;122338:349:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;122338:349:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;122338:349:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;122338:349:0;;-1:-1:-1;122338:349:0;;-1:-1:-1;;;;;122338:349:0:i;15971:29::-;;;:::i;8090:39::-;;;:::i;104954:571::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;104954:571:0;;:::i;10158:54::-;;;:::i;8663:30::-;;;:::i;15018:25::-;;;:::i;51447:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51447:112:0;-1:-1:-1;;;;;51447:112:0;;:::i;54313:192::-;;;:::i;114439:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;114439:133:0;;:::i;9079:25::-;;;:::i;10370:36::-;;;:::i;7333:20::-;;;:::i;55229:287::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55229:287:0;-1:-1:-1;;;;;55229:287:0;;:::i;44890:1529::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;44890:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;44890:1529:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44890:1529:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44890:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44890:1529:0;;;;;;;;-1:-1:-1;44890:1529:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;44890:1529:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44890:1529:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44890:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44890:1529:0;;-1:-1:-1;;;44890:1529:0;;;;;-1:-1:-1;44890:1529:0;;-1:-1:-1;44890:1529:0:i;113486:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;113486:133:0;;:::i;59858:3852::-;;;:::i;49390:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;49390:185:0;;;;;;;;:::i;8814:23::-;;;:::i;53983:184::-;;;:::i;92342:194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;92342:194:0;;;;;;;;;;;;;;;;;:::i;97104:647::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;97104:647:0;-1:-1:-1;;;;;97104:647:0;;:::i;57193:198::-;;;:::i;121577:215::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;121577:215:0;-1:-1:-1;;;;;121577:215:0;;:::i;52515:703::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52515:703:0;-1:-1:-1;;;;;52515:703:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114840:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;114840:113:0;;:::i;113970:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;113970:113:0;;:::i;51114:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;51114:143:0;;;;;;;;;;:::i;98029:742::-;;;:::i;107918:633::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;107918:633:0;-1:-1:-1;;;;;107918:633:0;;:::i;8231:42::-;;;:::i;116269:237::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;116269:237:0;;;;;;;;;;;;;;;;;:::i;7853:28::-;;;:::i;53646:161::-;;;:::i;100034:607::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;100034:607:0;;:::i;7237:18::-;;;;;;;;;;;;;;;-1:-1:-1;;7237:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50547:237::-;50646:10;50615:4;50667:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;50667:32:0;;;;;;;;;;;:41;;;50724:30;;;;;;;50615:4;;50646:10;50667:32;;50646:10;;50724:30;;;;;;;;;;;50772:4;50765:11;;;50547:237;;;;;:::o;115161:149::-;115218:4;115236:8;115249:32;115269:11;115249:19;:32::i;:::-;-1:-1:-1;115235:46:0;-1:-1:-1;;115161:149:0;;;;:::o;122797:279::-;123013:5;;;;;-1:-1:-1;;;;;123013:5:0;122999:10;:19;122991:77;;;;-1:-1:-1;;;122991:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122797:279::o;8540:33::-;;;;:::o;54796:224::-;54874:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;54899:16;:14;:16::i;:::-;:40;54891:75;;;;;-1:-1:-1;;;54891:75:0;;;;;;;;;;;;-1:-1:-1;;;54891:75:0;;;;;;;;;;;;;;;54984:28;55004:7;54984:19;:28::i;:::-;54977:35;;111514:1;111526:11;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;54796:224;;-1:-1:-1;54796:224:0:o;9185:23::-;;;;:::o;57641:261::-;57692:4;57710:13;57725:11;57740:28;:26;:28::i;:::-;57709:59;;-1:-1:-1;57709:59:0;-1:-1:-1;57794:18:0;57787:3;:25;;;;;;;;;57779:91;;;;-1:-1:-1;;;57779:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57888:6;-1:-1:-1;;57641:261:0;;:::o;112412:684::-;112846:107;112863:12;112877:18;112897:28;112927:5;112934:7;112943:9;112846:16;:107::i;:::-;113013:10;:24;;-1:-1:-1;;;;;;113013:24:0;-1:-1:-1;;;;;113013:24:0;;;;;;;;;;;113048:40;;;-1:-1:-1;;;113048:40:0;;;;113063:10;;;;;113048:38;;:40;;;;;;;;;;;;;;;113063:10;113048:40;;;5:2:-1;;;;30:1;27;20:12;5:2;113048:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;113048:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;;;;112412:684:0:o;116719:263::-;116815:10;;-1:-1:-1;;;;;116797:28:0;;;116815:10;;116797:28;;116789:91;;;;-1:-1:-1;;;116789:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116906:30;;;-1:-1:-1;;;116906:30:0;;116930:4;116906:30;;;;;;116888:15;;-1:-1:-1;;;;;116906:15:0;;;;;:30;;;;;;;;;;;;;;;:15;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;116906:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;116906:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;116906:30:0;116959:5;;116944:30;;;-1:-1:-1;;;116944:30:0;;116959:5;;;;-1:-1:-1;;;;;116959:5:0;;;116944:30;;;;;;;;;;;;116906;;-1:-1:-1;116944:14:0;;;;;:30;;;;;-1:-1:-1;;116944:30:0;;;;;;;;-1:-1:-1;116944:14:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;116944:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;116944:30:0;;;;116719:263;;:::o;49882:195::-;49977:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;50001:44;50016:10;50028:3;50033;50038:6;50001:14;:44::i;:::-;:68;49994:75;;111526:11;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;49882:195;;-1:-1:-1;;;49882:195:0:o;115598:189::-;115679:4;115697:8;115710:48;115736:8;115746:11;115710:25;:48::i;:::-;-1:-1:-1;115696:62:0;115598:189;-1:-1:-1;;;;115598:189:0:o;7964:35::-;;;-1:-1:-1;;;;;7964:35:0;;:::o;7433:21::-;;;;;;:::o;51815:354::-;51877:4;51894:23;;:::i;:::-;51920:38;;;;;;;;51935:21;:19;:21::i;:::-;51920:38;;-1:-1:-1;;;;;52034:20:0;;51970:14;52034:20;;;:13;:20;;;;;;51894:64;;-1:-1:-1;51970:14:0;;;52002:53;;51894:64;;52002:17;:53::i;:::-;51969:86;;-1:-1:-1;51969:86:0;-1:-1:-1;52082:18:0;52074:4;:26;;;;;;;;;52066:70;;;;;-1:-1:-1;;;52066:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;52154:7;51815:354;-1:-1:-1;;;;51815:354:0:o;59522:88::-;59564:4;59588:14;:12;:14::i;:::-;59581:21;;59522:88;:::o;117216:119::-;117272:4;117296:31;117317:9;117296:20;:31::i;98996:735::-;99143:5;;99074:4;;99143:5;;;-1:-1:-1;;;;;99143:5:0;99129:10;:19;99125:124;;99172:65;99177:18;99197:39;99172:4;:65::i;:::-;99165:72;;;;99125:124;99299:11;;99396:30;;;-1:-1:-1;;;99396:30:0;;;;-1:-1:-1;;;;;99299:11:0;;;;99396:28;;;;;:30;;;;;;;;;;;;;;:28;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;99396:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;99396:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;99396:30:0;99388:71;;;;;-1:-1:-1;;;99388:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;99527:11;:28;;-1:-1:-1;;;;;;99527:28:0;-1:-1:-1;;;;;99527:28:0;;;;;;;;;99637:46;;;;;;;;;;;;;;;;;;;;;;;;;;;99708:14;99703:20;99696:27;98996:735;-1:-1:-1;;;98996:735:0:o;8949:24::-;;;;:::o;122338:349::-;122624:5;;;;;-1:-1:-1;;;;;122624:5:0;122610:10;:19;122602:77;;;;-1:-1:-1;;;122602:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122338:349;:::o;15971:29::-;;;-1:-1:-1;;;;;15971:29:0;;:::o;8090:39::-;;;-1:-1:-1;;;;;8090:39:0;;:::o;104954:571::-;105029:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;105059:16;:14;:16::i;:::-;105046:29;-1:-1:-1;105090:29:0;;105086:277;;105281:70;105292:5;105286:12;;;;;;;;105300:50;105281:4;:70::i;:::-;105274:77;;;;;105086:277;105483:34;105504:12;105483:20;:34::i;:::-;105476:41;;;111526:11;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;104954:571;;-1:-1:-1;104954:571:0:o;10158:54::-;10208:4;10158:54;:::o;8663:30::-;;;;:::o;15018:25::-;;;-1:-1:-1;;;;;15018:25:0;;:::o;51447:112::-;-1:-1:-1;;;;;51531:20:0;51504:7;51531:20;;;:13;:20;;;;;;;51447:112::o;54313:192::-;54375:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;54400:16;:14;:16::i;:::-;:40;54392:75;;;;;-1:-1:-1;;;54392:75:0;;;;;;;;;;;;-1:-1:-1;;;54392:75:0;;;;;;;;;;;;;;;-1:-1:-1;54485:12:0;;111526:11;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;54313:192;:::o;114439:133::-;114502:4;114526:38;114551:12;114526:24;:38::i;9079:25::-;;;;:::o;10370:36::-;10402:4;10370:36;:::o;7333:20::-;;;;;;;;;;;;;;-1:-1:-1;;7333:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55229:287;55296:4;55314:13;55329:11;55344:36;55372:7;55344:27;:36::i;:::-;55313:67;;-1:-1:-1;55313:67:0;-1:-1:-1;55406:18:0;55399:3;:25;;;;;;;;;55391:93;;;;-1:-1:-1;;;55391:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44890:1529;45244:5;;;;;-1:-1:-1;;;;;45244:5:0;45230:10;:19;45222:68;;;;-1:-1:-1;;;45222:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45309:18;;:23;:43;;;;-1:-1:-1;45336:11:0;;:16;45309:43;45301:91;;;;-1:-1:-1;;;45301:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45443:27;:58;;;45520:31;45512:92;;;;-1:-1:-1;;;45512:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45649:8;45660:29;45676:12;45660:15;:29::i;:::-;45649:40;-1:-1:-1;45708:27:0;;45700:66;;;;;-1:-1:-1;;;45700:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;45906:16;:14;:16::i;:::-;45885:18;:37;27977:4;45933:11;:25;46058:46;46085:18;46058:26;:46::i;:::-;46052:52;-1:-1:-1;46123:27:0;;46115:74;;;;-1:-1:-1;;;46115:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46202:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;46225:16:0;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;;46252:8:0;:20;;;;;;-1:-1:-1;;46252:20:0;;;;;;:8;46393:18;;;;;46252:20;46393:18;;;-1:-1:-1;;;;;44890:1529:0:o;113486:133::-;113535:4;113553:8;113566:24;113579:10;113566:12;:24::i;59858:3852::-;59900:4;59966:23;59992:16;:14;:16::i;:::-;60050:18;;59966:42;;-1:-1:-1;60138:45:0;;;60134:105;;;60212:14;60200:27;;;;;;60134:105;60306:14;60323;:12;:14::i;:::-;60368:12;;60412:13;;60460:11;;60568:17;;:71;;;-1:-1:-1;;;60568:71:0;;;;;;;;;;;;;;;;;;;;;;60306:31;;-1:-1:-1;60368:12:0;;60412:13;;60460:11;;60348:17;;-1:-1:-1;;;;;60568:17:0;;;;:31;;:71;;;;;;;;;;;;;;:17;:71;;;5:2:-1;;;;30:1;27;20:12;5:2;60568:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;60568:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;60568:71:0;;-1:-1:-1;7608:9:0;60658:43;;;60650:84;;;;;-1:-1:-1;;;60650:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;60825:17;60844:15;60863:52;60871:18;60891:23;60863:7;:52::i;:::-;60824:91;;-1:-1:-1;60824:91:0;-1:-1:-1;60945:18:0;60934:7;:29;;;;;;;;;60926:73;;;;;-1:-1:-1;;;60926:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;61491:31;;:::i;:::-;61533:24;61568:20;61599:21;61631:19;61697:58;61707:35;;;;;;;;61722:18;61707:35;;;61744:10;61697:9;:58::i;:::-;61663:92;;-1:-1:-1;61663:92:0;-1:-1:-1;61781:18:0;61770:7;:29;;;;;;;;;61766:183;;61823:114;61834:16;61852:69;61928:7;61923:13;;;;;;;;61823:10;:114::i;:::-;61816:121;;;;;;;;;;;;;;;;;;61766:183;61994:53;62012:20;62034:12;61994:17;:53::i;:::-;61961:86;;-1:-1:-1;61961:86:0;-1:-1:-1;62073:18:0;62062:7;:29;;;;;;;;;62058:181;;62115:112;62126:16;62144:67;62218:7;62213:13;;;;;;;62058:181;62280:42;62288:19;62309:12;62280:7;:42::i;:::-;62251:71;;-1:-1:-1;62251:71:0;-1:-1:-1;62348:18:0;62337:7;:29;;;;;;;;;62333:178;;62390:109;62401:16;62419:64;62490:7;62485:13;;;;;;;62333:178;62553:100;62578:38;;;;;;;;62593:21;;62578:38;;;62618:19;62639:13;62553:24;:100::i;:::-;62523:130;;-1:-1:-1;62523:130:0;-1:-1:-1;62679:18:0;62668:7;:29;;;;;;;;;62664:179;;62721:110;62732:16;62750:65;62822:7;62817:13;;;;;;;62664:179;62883:82;62908:20;62930:16;62948;62883:24;:82::i;:::-;62855:110;;-1:-1:-1;62855:110:0;-1:-1:-1;62991:18:0;62980:7;:29;;;;;;;;;62976:177;;63033:108;63044:16;63062:63;63132:7;63127:13;;;;;;;62976:177;63356:18;:39;;;63406:11;:28;;;63445:12;:30;;;63486:13;:32;;;63583:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63687:14;63675:27;;;;;;;;;;;;;;;;59858:3852;:::o;49390:185::-;49468:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;49492:51;49507:10;49519;49531:3;49536:6;49492:14;:51::i;:::-;:75;49485:82;;111526:11;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;49390:185;;-1:-1:-1;;49390:185:0:o;8814:23::-;;;;:::o;53983:184::-;54060:17;;54036:4;;-1:-1:-1;;;;;54060:17:0;:31;54092:14;:12;:14::i;:::-;54108:12;;54122:13;;54137:21;;54060:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54060:99:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54060:99:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54060:99:0;;-1:-1:-1;53983:184:0;:::o;92342:194::-;92444:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;92468:60;92482:10;92494;92506:8;92516:11;92468:13;:60::i;:::-;92461:67;;111526:11;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;92342:194;;-1:-1:-1;;;92342:194:0:o;97104:647::-;97249:5;;97181:4;;97249:5;;;-1:-1:-1;;;;;97249:5:0;97235:10;:19;97231:126;;97278:67;97283:18;97303:41;97278:4;:67::i;97231:126::-;97456:12;;;-1:-1:-1;;;;;97539:30:0;;;-1:-1:-1;;;;;;97539:30:0;;;;;;;97654:49;;;97456:12;;;;97654:49;;;;;;;;;;;;;;;;;;;;;;;97728:14;97723:20;;57193:198;57253:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;57278:16;:14;:16::i;:::-;:40;57270:75;;;;;-1:-1:-1;;;57270:75:0;;;;;;;;;;;;-1:-1:-1;;;57270:75:0;;;;;;;;;;;;;;;57363:20;:18;:20::i;:::-;57356:27;;111526:11;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;57193:198;:::o;121577:215::-;121673:5;;;;;-1:-1:-1;;;;;121673:5:0;121659:10;:19;121651:76;;;;-1:-1:-1;;;121651:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121746:10;;121738:46;;;-1:-1:-1;;;121738:46:0;;-1:-1:-1;;;;;121738:46:0;;;;;;;;;121746:10;;;;;121738:28;;:46;;;;;121746:10;;121738:46;;;;;;;121746:10;;121738:46;;;5:2:-1;;;;30:1;27;20:12;5:2;121738:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;121738:46:0;;;;121577:215;:::o;52515:703::-;-1:-1:-1;;;;;52639:22:0;;52583:4;52639:22;;;:13;:22;;;;;;52583:4;;;;;;;;;52790:36;52653:7;52790:27;:36::i;:::-;52766:60;-1:-1:-1;52766:60:0;-1:-1:-1;52849:18:0;52841:4;:26;;;;;;;;;52837:99;;52897:16;52892:22;52884:40;-1:-1:-1;52916:1:0;;-1:-1:-1;52916:1:0;;-1:-1:-1;52916:1:0;;-1:-1:-1;52884:40:0;;-1:-1:-1;;;;52884:40:0;52837:99;52979:28;:26;:28::i;:::-;52948:59;-1:-1:-1;52948:59:0;-1:-1:-1;53030:18:0;53022:4;:26;;;;;;;;;53018:99;;53078:16;53073:22;;53018:99;-1:-1:-1;53142:14:0;;-1:-1:-1;53159:13:0;;-1:-1:-1;53174:13:0;-1:-1:-1;53174:13:0;-1:-1:-1;52515:703:0;;;;;;:::o;114840:113::-;114893:4;114917:28;114932:12;114917:14;:28::i;113970:113::-;114023:4;114047:28;114062:12;114047:14;:28::i;51114:143::-;-1:-1:-1;;;;;51215:25:0;;;51188:7;51215:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;51114:143::o;98029:742::-;98179:12;;98071:4;;-1:-1:-1;;;;;98179:12:0;98165:10;:26;;;:54;;-1:-1:-1;98195:10:0;:24;98165:54;98161:164;;;98243:70;98248:18;98268:44;98243:4;:70::i;:::-;98236:77;;;;98161:164;98409:5;;;98451:12;;;-1:-1:-1;;;;;98451:12:0;;;98409:5;98524:20;;;-1:-1:-1;;;;;;98524:20:0;;;;;;;-1:-1:-1;;;;;;98593:25:0;;;;;;98636;;;98409:5;;;;;;98636:25;;;98655:5;;;;;98636:25;;;;;;98409:5;;98451:12;;98636:25;;;;;;;;;98710:12;;98677:46;;;-1:-1:-1;;;;;98677:46:0;;;;;98710:12;;;98677:46;;;;;;;;;;;;;;;;98748:14;98736:27;;;;98029:742;:::o;107918:633::-;108005:4;108022:10;108035:16;:14;:16::i;:::-;108022:29;-1:-1:-1;108066:29:0;;108062:298;;108270:78;108281:5;108275:12;;;;;;;;108289:58;108270:4;:78::i;:::-;108263:85;;;;;108062:298;108495:48;108522:20;108495:26;:48::i;8231:42::-;;;-1:-1:-1;;;;;8231:42:0;;:::o;116269:237::-;116382:4;116400:8;116413:64;116437:8;116447:11;116460:16;116413:23;:64::i;:::-;-1:-1:-1;116399:78:0;116269:237;-1:-1:-1;;;;;116269:237:0:o;7853:28::-;;;;;;-1:-1:-1;;;;;7853:28:0;;:::o;53646:161::-;53723:17;;53699:4;;-1:-1:-1;;;;;53723:17:0;:31;53755:14;:12;:14::i;:::-;53771:12;;53785:13;;53723:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;100034:607:0;100123:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;100153:16;:14;:16::i;:::-;100140:29;-1:-1:-1;100184:29:0;;100180:286;;100381:73;100392:5;100386:12;;;;;;;;100400:53;100381:4;:73::i;100180:286::-;100585:48;100608:24;100585:22;:48::i;80391:572::-;80469:4;111447:11;;80469:4;;111447:11;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;80505:16;:14;:16::i;:::-;80492:29;-1:-1:-1;80536:29:0;;80532:260;;80709:67;80720:5;80714:12;;;;;;;;80728:47;80709:4;:67::i;:::-;80701:79;-1:-1:-1;80778:1:0;;-1:-1:-1;80701:79:0;;-1:-1:-1;80701:79:0;80532:260;80902:53;80919:10;80931;80943:11;80902:16;:53::i;:::-;80895:60;;;;;111514:1;111526:11;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;80391:572;;;;-1:-1:-1;80391:572:0:o;58166:1186::-;58275:11;;58227:9;;;;58301:17;58297:1048;;-1:-1:-1;;58495:27:0;;58475:18;;-1:-1:-1;58467:56:0;;58297:1048;58705:14;58722;:12;:14::i;:::-;58705:31;;58751:33;58799:23;;:::i;:::-;58837:17;58913:54;58928:9;58939:12;;58953:13;;58913:14;:54::i;:::-;58871:96;-1:-1:-1;58871:96:0;-1:-1:-1;58997:18:0;58986:7;:29;;;;;;;;;58982:89;;59044:7;-1:-1:-1;59053:1:0;;-1:-1:-1;59036:19:0;;-1:-1:-1;;;;59036:19:0;58982:89;59113:50;59120:28;59150:12;59113:6;:50::i;:::-;59087:76;-1:-1:-1;59087:76:0;-1:-1:-1;59193:18:0;59182:7;:29;;;;;;;;;59178:89;;59240:7;-1:-1:-1;59249:1:0;;-1:-1:-1;59232:19:0;;-1:-1:-1;;;;59232:19:0;59178:89;-1:-1:-1;59311:21:0;59291:18;;-1:-1:-1;59311:21:0;-1:-1:-1;59283:50:0;;-1:-1:-1;;;59283:50:0;58166:1186;;;:::o;46882:2247::-;47056:11;;:60;;;-1:-1:-1;;;47056:60:0;;47092:4;47056:60;;;;-1:-1:-1;;;;;47056:60:0;;;;;;;;;;;;;;;;;;;;;;46980:4;;;;47056:11;;:27;;:60;;;;;;;;;;;;;;46980:4;47056:11;:60;;;5:2:-1;;;;30:1;27;20:12;5:2;47056:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47056:60:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47056:60:0;;-1:-1:-1;47131:12:0;;47127:144;;47167:92;47178:27;47207:42;47251:7;47167:10;:92::i;:::-;47160:99;;;;;47127:144;47337:3;-1:-1:-1;;;;;47330:10:0;:3;-1:-1:-1;;;;;47330:10:0;;47326:105;;;47364:55;47369:15;47386:32;47364:4;:55::i;47326:105::-;47508:22;-1:-1:-1;;;;;47549:14:0;;;;;;;47545:160;;;-1:-1:-1;;;47545:160:0;;;-1:-1:-1;;;;;;47661:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;47545:160;47783:17;47811;47839;47867;47923:34;47931:17;47950:6;47923:7;:34::i;:::-;47897:60;;-1:-1:-1;47897:60:0;-1:-1:-1;47983:18:0;47972:7;:29;;;;;;;;;47968:125;;48025:56;48030:16;48048:32;48025:4;:56::i;:::-;48018:63;;;;;;;;;;47968:125;-1:-1:-1;;;;;48139:18:0;;;;;;:13;:18;;;;;;48131:35;;48159:6;48131:7;:35::i;:::-;48105:61;;-1:-1:-1;48105:61:0;-1:-1:-1;48192:18:0;48181:7;:29;;;;;;;;;48177:124;;48234:55;48239:16;48257:31;48234:4;:55::i;48177:124::-;-1:-1:-1;;;;;48347:18:0;;;;;;:13;:18;;;;;;48339:35;;48367:6;48339:7;:35::i;:::-;48313:61;;-1:-1:-1;48313:61:0;-1:-1:-1;48400:18:0;48389:7;:29;;;;;;;;;48385:122;;48442:53;48447:16;48465:29;48442:4;:53::i;48385:122::-;-1:-1:-1;;;;;48640:18:0;;;;;;;:13;:18;;;;;;:33;;;48684:18;;;;;;:33;;;-1:-1:-1;;48790:29:0;;48786:109;;-1:-1:-1;;;;;48836:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;48786:109;48966:3;-1:-1:-1;;;;;48952:26:0;48961:3;-1:-1:-1;;;;;48952:26:0;-1:-1:-1;;;;;;;;;;;48971:6:0;48952:26;;;;;;;;;;;;;;;;;;-1:-1:-1;49106:14:0;;46882:2247;-1:-1:-1;;;;;;;;;;46882:2247:0:o;81296:594::-;81398:4;111447:11;;81398:4;;111447:11;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;81434:16;:14;:16::i;:::-;81421:29;-1:-1:-1;81465:29:0;;81461:260;;81638:67;81649:5;81643:12;;;;;;;;81657:47;81638:4;:67::i;:::-;81630:79;-1:-1:-1;81707:1:0;;-1:-1:-1;81630:79:0;;-1:-1:-1;81630:79:0;81461:260;81831:51;81848:10;81860:8;81870:11;81831:16;:51::i;:::-;81824:58;;;;;111514:1;111526:11;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;81296:594;;;;-1:-1:-1;81296:594:0;-1:-1:-1;81296:594:0:o;36805:313::-;36882:9;36893:4;36911:13;36926:18;;:::i;:::-;36948:20;36958:1;36961:6;36948:9;:20::i;:::-;36910:58;;-1:-1:-1;36910:58:0;-1:-1:-1;36990:18:0;36983:3;:25;;;;;;;;;36979:73;;-1:-1:-1;37033:3:0;-1:-1:-1;37038:1:0;;-1:-1:-1;37025:15:0;;36979:73;37072:18;37092:17;37101:7;37092:8;:17::i;:::-;37064:46;;;;;;36805:313;;;;;;:::o;117603:169::-;117705:10;;117734:30;;;-1:-1:-1;;;117734:30:0;;117758:4;117734:30;;;;;;117650:4;;-1:-1:-1;;;;;117705:10:0;;;;117734:15;;:30;;;;;;;;;;;;;;;117705:10;117734:30;;;5:2:-1;;;;30:1;27;20:12;5:2;117734:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;117734:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;117734:30:0;;-1:-1:-1;;117603:169:0;:::o;102138:590::-;102215:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;102245:16;:14;:16::i;:::-;102232:29;-1:-1:-1;102276:29:0;;102272:274;;102467:67;102478:5;102472:12;;;;;;;;102486:47;102467:4;:67::i;102272:274::-;102669:28;102687:9;102669:17;:28::i;:::-;-1:-1:-1;102657:40:0;-1:-1:-1;;111526:11:0;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;102138:590;;-1:-1:-1;102138:590:0:o;24724:153::-;24785:4;24807:33;24820:3;24815:9;;;;;;;;24831:4;24826:10;;;;;;;;24807:33;;;;;;;;;;;;;24838:1;24807:33;;;;;;;;;;;;;24865:3;24860:9;;;;;;;105802:1747;106013:5;;105869:4;;;;106013:5;;;-1:-1:-1;;;;;106013:5:0;105999:10;:19;105995:124;;106042:65;106047:18;106067:39;106042:4;:65::i;105995:124::-;106245:16;:14;:16::i;:::-;106223:18;;:38;106219:147;;106285:69;106290:22;106314:39;106285:4;:69::i;106219:147::-;106472:12;106455:14;:12;:14::i;:::-;:29;106451:152;;;106508:83;106513:29;106544:46;106508:4;:83::i;106451:152::-;106697:13;;106682:12;:28;106678:129;;;106734:61;106739:15;106756:38;106734:4;:61::i;106678:129::-;-1:-1:-1;106959:13:0;;:28;;;;107095:33;;;107087:82;;;;-1:-1:-1;;;107087:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107243:13;:32;;;107409:5;;107395:34;;107409:5;;;-1:-1:-1;;;;;107409:5:0;107416:12;107395:13;:34::i;:::-;107463:5;;107447:54;;;107463:5;;;;-1:-1:-1;;;;;107463:5:0;107447:54;;;;;;;;;;;;;;;;;;;;;;;;;107526:14;107521:20;;69830:537;69914:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;69944:16;:14;:16::i;:::-;69931:29;-1:-1:-1;69975:29:0;;69971:249;;70147:61;70158:5;70152:12;;;;;;;;70166:41;70147:4;:61::i;69971:249::-;70319:40;70331:10;70343:1;70346:12;70319:11;:40::i;55770:1268::-;-1:-1:-1;;;;;56119:23:0;;55847:9;56119:23;;;:14;:23;;;;;56348:24;;55847:9;;;;;;;;56344:92;;-1:-1:-1;56402:18:0;;-1:-1:-1;56402:18:0;;-1:-1:-1;56394:30:0;;-1:-1:-1;;;56394:30:0;56344:92;56663:46;56671:14;:24;;;56697:11;;56663:7;:46::i;:::-;56630:79;;-1:-1:-1;56630:79:0;-1:-1:-1;56735:18:0;56724:7;:29;;;;;;;;;56720:81;;-1:-1:-1;56778:7:0;;-1:-1:-1;56787:1:0;;-1:-1:-1;56770:19:0;;-1:-1:-1;;56770:19:0;56720:81;56833:58;56841:19;56862:14;:28;;;56833:7;:58::i;:::-;56813:78;;-1:-1:-1;56813:78:0;-1:-1:-1;56917:18:0;56906:7;:29;;;;;;;;;56902:81;;-1:-1:-1;56960:7:0;;-1:-1:-1;56969:1:0;;-1:-1:-1;56952:19:0;;-1:-1:-1;;56952:19:0;56902:81;-1:-1:-1;57003:18:0;;-1:-1:-1;57023:6:0;-1:-1:-1;;;55770:1268:0;;;;:::o;53377:93::-;53450:12;53377:93;:::o;108881:1299::-;109181:5;;108975:4;;;;109181:5;;;-1:-1:-1;;;;;109181:5:0;109167:10;:19;109163:132;;109210:73;109215:18;109235:47;109210:4;:73::i;109163:132::-;109421:16;:14;:16::i;:::-;109399:18;;:38;109395:155;;109461:77;109466:22;109490:47;109461:4;:77::i;109395:155::-;109644:17;;;;;;;;;-1:-1:-1;;;;;109644:17:0;109621:40;;109764:20;-1:-1:-1;;;;;109764:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;109764:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;109764:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;109764:42:0;109756:83;;;;;-1:-1:-1;;;109756:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;109916:17;:40;;-1:-1:-1;;;;;;109916:40:0;-1:-1:-1;;;;;109916:40:0;;;;;;;;;110062:70;;;;;;;;;;;;;;;;;;;;;;;;;;;110157:14;110152:20;;64108:547;64178:4;111447:11;;64178:4;;111447:11;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;64214:16;:14;:16::i;:::-;64201:29;-1:-1:-1;64245:29:0;;64241:252;;64418:59;64429:5;64423:12;;;;;;;;64437:39;64418:4;:59::i;64241:252::-;64614:33;64624:10;64636;64614:9;:33::i;26586:236::-;26642:9;26653:4;26679:1;26674;:6;26670:145;;-1:-1:-1;26705:18:0;;-1:-1:-1;26725:5:0;;;26697:34;;26670:145;-1:-1:-1;26772:27:0;;-1:-1:-1;26801:1:0;26764:39;;36339:353;36408:9;36419:10;;:::i;:::-;36443:14;36459:19;36482:27;36490:1;:10;;;36502:6;36482:7;:27::i;:::-;36442:67;;-1:-1:-1;36442:67:0;-1:-1:-1;36532:18:0;36524:4;:26;;;;;;;;;36520:92;;-1:-1:-1;36581:18:0;;;;;;;;;-1:-1:-1;36581:18:0;;36575:4;;-1:-1:-1;36581:18:0;-1:-1:-1;36567:33:0;;36520:92;36652:31;;;;;;;;;;;;-1:-1:-1;;36652:31:0;;-1:-1:-1;36339:353:0;-1:-1:-1;;;;36339:353:0:o;25000:187::-;25085:4;25107:43;25120:3;25115:9;;;;;;;;25131:4;25126:10;;;;;;;;25107:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;25175:3;25170:9;;;;;;;26907:258;26963:9;;27000:5;;;27022:6;;;27018:140;;27053:18;;-1:-1:-1;27073:1:0;-1:-1:-1;27045:30:0;;27018:140;-1:-1:-1;27116:26:0;;-1:-1:-1;27144:1:0;;-1:-1:-1;27108:38:0;;37263:328;37360:9;37371:4;37389:13;37404:18;;:::i;:::-;37426:20;37436:1;37439:6;37426:9;:20::i;:::-;37388:58;;-1:-1:-1;37388:58:0;-1:-1:-1;37468:18:0;37461:3;:25;;;;;;;;;37457:73;;-1:-1:-1;37511:3:0;-1:-1:-1;37516:1:0;;-1:-1:-1;37503:15:0;;37457:73;37549:34;37557:17;37566:7;37557:8;:17::i;:::-;37576:6;37549:7;:34::i;:::-;37542:41;;;;;;37263:328;;;;;;;:::o;93558:3097::-;93749:11;;:87;;;-1:-1:-1;;;93749:87:0;;93782:4;93749:87;;;;-1:-1:-1;;;;;93749:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93676:4;;;;93749:11;;:24;;:87;;;;;;;;;;;;;;93676:4;93749:11;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;93749:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93749:87:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;93749:87:0;;-1:-1:-1;93851:12:0;;93847:151;;93887:99;93898:27;93927:49;93978:7;93887:10;:99::i;93847:151::-;94071:10;-1:-1:-1;;;;;94059:22:0;:8;-1:-1:-1;;;;;94059:22:0;;94055:146;;;94105:84;94110:26;94138:50;94105:4;:84::i;94055:146::-;94213:34;;:::i;:::-;-1:-1:-1;;;;;94584:23:0;;;;;;:13;:23;;;;;;94576:45;;94609:11;94576:7;:45::i;:::-;94550:22;;;94535:86;;;94536:4;94535:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;94652:18:0;;-1:-1:-1;94636:12:0;;:34;;;;;;;;;94632:176;;94694:102;94705:16;94723:52;94782:4;:12;;;94777:18;;;;;;;94694:102;94687:109;;;;;;94632:176;94847:62;94852:11;94865:43;;;;;;;;10208:4;94865:43;;;94847:4;:62::i;:::-;94820:24;;;:89;;;94949:43;;94954:11;;94949:4;:43::i;:::-;94920:26;;;:72;95049:28;:26;:28::i;:::-;95020:25;;;95005:72;;;95006:4;95005:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;95112:18:0;;-1:-1:-1;95096:12:0;;:34;;;;;;;;;95088:71;;;;;-1:-1:-1;;;95088:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;95199:88;95218:42;;;;;;;;95233:4;:25;;;95218:42;;;95262:4;:24;;;95199:18;:88::i;:::-;95172:24;;;:115;;;95329:13;;95324:45;;:4;:45::i;:::-;95300:21;;;:69;95407:11;;95420:24;;;;95402:43;;95407:11;95402:4;:43::i;:::-;95380:19;;;:65;-1:-1:-1;;;;;95509:25:0;;;;;;:13;:25;;;;;;95536:26;;;;95501:62;;95509:25;95501:7;:62::i;:::-;95473:24;;;95458:105;;;95459:4;95458:105;;;;;;;;;;;;;;;;;;;-1:-1:-1;95594:18:0;;-1:-1:-1;95578:12:0;;:34;;;;;;;;;95574:176;;95636:102;95647:16;95665:52;95724:4;:12;;;95719:18;;;;;;;95574:176;95969:21;;;;95953:13;:37;96015:19;;;;96001:11;:33;96071:22;;;;;-1:-1:-1;;;;;96045:23:0;;;-1:-1:-1;96045:23:0;;;:13;:23;;;;;;:48;;;;96132:24;;;;96104:25;;;;;;;;;;:52;;;;96242:26;;;;96211:58;;;;;;;96104:25;;96045:23;;-1:-1:-1;;;;;;;;;;;96211:58:0;;;;;;;;;;96319:24;;;;96285:59;;;;;;;96312:4;;-1:-1:-1;;;;;96285:59:0;;;-1:-1:-1;;;;;;;;;;;96285:59:0;;;;;;;;96389:24;;;;96415:21;;;;96360:77;;;96382:4;96360:77;;;;;;;;;;;;;;;;;;;;;;;;;;96632:14;96620:27;93558:3097;-1:-1:-1;;;;;;;93558:3097:0:o;76122:524::-;76196:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;76226:16;:14;:16::i;:::-;76213:29;-1:-1:-1;76257:29:0;;76253:249;;76429:61;76440:5;76434:12;;;;;;;;76448:41;76429:4;:61::i;76253:249::-;76601:37;76613:10;76625:12;76601:11;:37::i;68923:527::-;68997:4;111447:11;;;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;69027:16;:14;:16::i;:::-;69014:29;-1:-1:-1;69058:29:0;;69054:249;;69230:61;69241:5;69235:12;;;;;;;69054:249;69402:40;69414:10;69426:12;69440:1;69402:11;:40::i;86562:994::-;86696:4;111447:11;;86696:4;;111447:11;;111439:34;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;-1:-1:-1;;;111439:34:0;;;;;;;;;;;;;;;111498:5;111484:19;;-1:-1:-1;;111484:19:0;;;86732:16;:14;:16::i;:::-;86719:29;-1:-1:-1;86763:29:0;;86759:269;;86941:71;86952:5;86946:12;;;;;;;;86960:51;86941:4;:71::i;:::-;86933:83;-1:-1:-1;87014:1:0;;-1:-1:-1;86933:83:0;;-1:-1:-1;86933:83:0;86759:269;87048:16;-1:-1:-1;;;;;87048:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87048:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87048:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87048:33:0;;-1:-1:-1;87096:29:0;;87092:273;;87274:75;87285:5;87279:12;;;;;;;;87293:55;87274:4;:75::i;87092:273::-;87475:73;87496:10;87508:8;87518:11;87531:16;87475:20;:73::i;:::-;87468:80;;;;;111514:1;111526:11;:18;;-1:-1:-1;;111526:18:0;111540:4;111526:18;;;86562:994;;;;-1:-1:-1;86562:994:0;-1:-1:-1;;86562:994:0:o;100909:973::-;101059:5;;100990:4;;101059:5;;;-1:-1:-1;;;;;101059:5:0;101045:10;:19;101041:127;;101088:68;101093:18;101113:42;101088:4;:68::i;101041:127::-;101275:16;:14;:16::i;:::-;101253:18;;:38;101249:150;;101315:72;101320:22;101344:42;101315:4;:72::i;101249:150::-;7774:4;101471:24;:51;101467:157;;;101546:66;101551:15;101568:43;101546:4;:66::i;101467:157::-;101668:21;;;101700:48;;;;101766:68;;;;;;;;;;;;;;;;;;;;;;;;;101859:14;101854:20;;82595:3440;82775:11;;:75;;;-1:-1:-1;;;82775:75:0;;82814:4;82775:75;;;;-1:-1:-1;;;;;82775:75:0;;;;;;;;;;;;;;;;;;;;;;82690:4;;;;;;82775:11;;;:30;;:75;;;;;;;;;;;;;;;82690:4;82775:11;:75;;;5:2:-1;;;;30:1;27;20:12;5:2;82775:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;82775:75:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;82775:75:0;;-1:-1:-1;82865:12:0;;82861:153;;82902:96;82913:27;82942:46;82990:7;82902:10;:96::i;:::-;82894:108;-1:-1:-1;83000:1:0;;-1:-1:-1;82894:108:0;;-1:-1:-1;82894:108:0;82861:153;83124:16;:14;:16::i;:::-;83102:18;;:38;83098:153;;83165:70;83170:22;83194:40;83165:4;:70::i;83098:153::-;83263:32;;:::i;:::-;-1:-1:-1;;;;;83409:24:0;;;;;;:14;:24;;;;;:38;;;83388:18;;;:59;83578:37;83424:8;83578:27;:37::i;:::-;83555:19;;;83540:75;;;83541:12;;;83540:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;83646:18:0;;-1:-1:-1;83630:4:0;:12;;;:34;;;;;;;;;83626:192;;83689:113;83700:16;83718:63;83788:4;:12;;;83783:18;;;;;;;83689:113;83681:125;-1:-1:-1;83804:1:0;;-1:-1:-1;83681:125:0;;-1:-1:-1;;83681:125:0;83626:192;-1:-1:-1;;83900:11:0;:23;83896:157;;;83959:19;;;;83940:16;;;:38;83896:157;;;84011:16;;;:30;;;83896:157;84651:37;84664:5;84671:4;:16;;;84651:12;:37::i;:::-;84626:22;;;:62;;;84998:19;;;;84990:52;;:7;:52::i;:::-;84964:22;;;84949:93;;;84950:12;;;84949:93;;;;;;;;;;;;;;;;;;;-1:-1:-1;85077:18:0;;-1:-1:-1;85061:4:0;:12;;;:34;;;;;;;;;85053:105;;;;-1:-1:-1;;;85053:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85210:45;85218:12;;85232:4;:22;;;85210:7;:45::i;:::-;85186:20;;;85171:84;;;85172:12;;;85171:84;;;;;;;;;;;;;;;;;;;-1:-1:-1;85290:18:0;;-1:-1:-1;85274:4:0;:12;;;:34;;;;;;;;;85266:96;;;;-1:-1:-1;;;85266:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85482:22;;;;;;-1:-1:-1;;;;;85445:24:0;;;;;;;:14;:24;;;;;;;;;:59;;;85556:11;;85515:38;;;;:52;;;;85593:20;;;;85578:12;:35;;;85703:22;;;;85727;;85674:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86004:22;;;85987:14;;86004:22;;-1:-1:-1;82595:3440:0;-1:-1:-1;;;;;82595:3440:0:o;27234:271::-;27305:9;27316:4;27334:14;27350:8;27362:13;27370:1;27373;27362:7;:13::i;:::-;27333:42;;-1:-1:-1;27333:42:0;-1:-1:-1;27400:18:0;27392:4;:26;;;;;;;;;27388:75;;-1:-1:-1;27443:4:0;-1:-1:-1;27449:1:0;;-1:-1:-1;27435:16:0;;27388:75;27482:15;27490:3;27495:1;27482:7;:15::i;35098:515::-;35159:9;35170:10;;:::i;:::-;35194:14;35210:20;35234:22;35242:3;27977:4;35234:7;:22::i;:::-;35193:63;;-1:-1:-1;35193:63:0;-1:-1:-1;35279:18:0;35271:4;:26;;;;;;;;;35267:92;;-1:-1:-1;35328:18:0;;;;;;;;;-1:-1:-1;35328:18:0;;35322:4;;-1:-1:-1;35328:18:0;-1:-1:-1;35314:33:0;;35267:92;35372:14;35388:13;35405:31;35413:15;35430:5;35405:7;:31::i;:::-;35371:65;;-1:-1:-1;35371:65:0;-1:-1:-1;35459:18:0;35451:4;:26;;;;;;;;;35447:92;;-1:-1:-1;35508:18:0;;;;;;;;;-1:-1:-1;35508:18:0;;35502:4;;-1:-1:-1;35508:18:0;-1:-1:-1;35494:33:0;;-1:-1:-1;;35494:33:0;35447:92;35579:25;;;;;;;;;;;;-1:-1:-1;;35579:25:0;;-1:-1:-1;35098:515:0;-1:-1:-1;;;;;;35098:515:0:o;28373:213::-;28555:12;27977:4;28555:23;;;28373:213::o;103068:1631::-;103129:4;103135;103196:21;103228:20;103375:16;:14;:16::i;:::-;103353:18;;:38;103349:163;;103416:66;103421:22;103445:36;103416:4;:66::i;:::-;103408:92;-1:-1:-1;103484:15:0;-1:-1:-1;103408:92:0;;-1:-1:-1;103408:92:0;103349:163;104101:35;104114:10;104126:9;104101:12;:35::i;:::-;104083:53;;104184:15;104168:13;;:31;104149:50;;104274:13;;104254:16;:33;;104246:78;;;;;-1:-1:-1;;;104246:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104401:13;:32;;;104522:60;;;104536:10;104522:60;;;;;;;;;;;;;;;;;;;;;;;;;104658:14;104645:46;-1:-1:-1;104675:15:0;-1:-1:-1;;103068:1631:0;;;:::o;120437:904::-;120573:10;;120595:26;;;-1:-1:-1;;;120595:26:0;;-1:-1:-1;;;;;120595:26:0;;;;;;;;;;;;;;;120573:10;;;;;;;120595:14;;:26;;;;;120513:31;;120595:26;;;;;;;;120513:31;120573:10;120595:26;;;5:2:-1;;;;30:1;27;20:12;5:2;120595:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;120595:26:0;;;;120634:12;120688:16;120727:1;120722:152;;;;120897:2;120892:219;;;;121246:1;121243;121236:12;120722:152;-1:-1:-1;;120817:6:0;-1:-1:-1;120722:152:0;;120892:219;120994:2;120991:1;120988;120973:24;121036:1;121030:8;121019:19;;120681:586;;121296:7;121288:45;;;;;-1:-1:-1;;;121288:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;120437:904;;;;:::o;71256:4598::-;71363:4;71388:19;;;:42;;-1:-1:-1;71411:19:0;;71388:42;71380:107;;;;-1:-1:-1;;;71380:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71500:27;;:::i;:::-;71644:28;:26;:28::i;:::-;71615:25;;;71600:72;;;71601:12;;;71600:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;71703:18:0;;-1:-1:-1;71687:4:0;:12;;;:34;;;;;;;;;71683:168;;71745:94;71756:16;71774:44;71825:4;:12;;;71820:18;;;;;;;71745:94;71738:101;;;;;71683:168;71905:18;;71901:1290;;72181:17;;;:34;;;72286:42;;;;;;;;72301:25;;;;72286:42;;72268:77;;72201:14;72268:17;:77::i;:::-;72247:17;;;72232:113;;;72233:12;;;72232:113;;;;;;;;;;;;;;;;;;;-1:-1:-1;72380:18:0;;-1:-1:-1;72364:4:0;:12;;;:34;;;;;;;;;72360:185;;72426:103;72437:16;72455:53;72515:4;:12;;;72510:18;;;;;;;72360:185;71901:1290;;;72847:82;72870:14;72886:42;;;;;;;;72901:4;:25;;;72886:42;;;72847:22;:82::i;:::-;72826:17;;;72811:118;;;72812:12;;;72811:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;72964:18:0;;-1:-1:-1;72948:4:0;:12;;;:34;;;;;;;;;72944:185;;73010:103;73021:16;73039:53;73099:4;:12;;;73094:18;;;;;;;72944:185;73145:17;;;:34;;;71901:1290;73260:11;;73311:17;;;;73260:69;;;-1:-1:-1;;;73260:69:0;;73294:4;73260:69;;;;-1:-1:-1;;;;;73260:69:0;;;;;;;;;;;;;;;;73245:12;;73260:11;;;;;:25;;:69;;;;;;;;;;;;;;;73245:12;73260:11;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;73260:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;73260:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;73260:69:0;;-1:-1:-1;73344:12:0;;73340:142;;73380:90;73391:27;73420:40;73462:7;73380:10;:90::i;:::-;73373:97;;;;;;73340:142;73592:16;:14;:16::i;:::-;73570:18;;:38;73566:142;;73632:64;73637:22;73661:34;73632:4;:64::i;73566:142::-;74003:39;74011:11;;74024:4;:17;;;74003:7;:39::i;:::-;73980:19;;;73965:77;;;73966:12;;;73965:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;74073:18:0;;-1:-1:-1;74057:4:0;:12;;;:34;;;;;;;;;74053:178;;74115:104;74126:16;74144:54;74205:4;:12;;;74200:18;;;;;;;74053:178;-1:-1:-1;;;;;74291:23:0;;;;;;:13;:23;;;;;;74316:17;;;;74283:51;;74291:23;74283:7;:51::i;:::-;74258:21;;;74243:91;;;74244:12;;;74243:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;74365:18:0;;-1:-1:-1;74349:4:0;:12;;;:34;;;;;;;;;74345:181;;74407:107;74418:16;74436:57;74500:4;:12;;;74495:18;;;;;;;74345:181;74624:4;:17;;;74607:14;:12;:14::i;:::-;:34;74603:155;;;74665:81;74670:29;74701:44;74665:4;:81::i;74603:155::-;75254:42;75268:8;75278:4;:17;;;75254:13;:42::i;:::-;75389:19;;;;75375:11;:33;75445:21;;;;-1:-1:-1;;;;;75419:23:0;;;;;;:13;:23;;;;;;;;;:47;;;;75578:17;;;;75544:52;;;;;;;75571:4;;-1:-1:-1;;;;;;;;;;;75544:52:0;;;;;;;75629:17;;;;75648;;;;;75612:54;;;-1:-1:-1;;;;;75612:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75719:11;;75769:17;;;;75788;;;;75719:87;;;-1:-1:-1;;;75719:87:0;;75752:4;75719:87;;;;-1:-1:-1;;;;;75719:87:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:24;;:87;;;;;:11;;:87;;;;;;;:11;;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;75719:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;75831:14:0;;-1:-1:-1;75826:20:0;;-1:-1:-1;;75826:20:0;;75819:27;71256:4598;-1:-1:-1;;;;;;71256:4598:0:o;25798:343::-;25854:9;;25886:6;25882:69;;-1:-1:-1;25917:18:0;;-1:-1:-1;25917:18:0;25909:30;;25882:69;25972:5;;;25976:1;25972;:5;:1;25994:5;;;;;:10;25990:144;;-1:-1:-1;26029:26:0;;-1:-1:-1;26057:1:0;;-1:-1:-1;26021:38:0;;25990:144;26100:18;;-1:-1:-1;26120:1:0;-1:-1:-1;26092:30:0;;26236:215;26292:9;;26324:6;26320:77;;-1:-1:-1;26355:26:0;;-1:-1:-1;26383:1:0;26347:38;;26320:77;26417:18;26441:1;26437;:5;;;;;;26409:34;;;;26236:215;;;;;:::o;65365:3207::-;65513:11;;:58;;;-1:-1:-1;;;65513:58:0;;65545:4;65513:58;;;;-1:-1:-1;;;;;65513:58:0;;;;;;;;;;;;;;;65435:4;;;;;;65513:11;;;:23;;:58;;;;;;;;;;;;;;;65435:4;65513:11;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;65513:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;65513:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;65513:58:0;;-1:-1:-1;65586:12:0;;65582:145;;65623:88;65634:27;65663:38;65703:7;65623:10;:88::i;:::-;65615:100;-1:-1:-1;65713:1:0;;-1:-1:-1;65615:100:0;;-1:-1:-1;65615:100:0;65582:145;65837:16;:14;:16::i;:::-;65815:18;;:38;65811:145;;65878:62;65883:22;65907:32;65878:4;:62::i;65811:145::-;65968:25;;:::i;:::-;66050:28;:26;:28::i;:::-;66021:25;;;66006:72;;;66007:12;;;66006:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;66109:18:0;;-1:-1:-1;66093:4:0;:12;;;:34;;;;;;;;;66089:171;;66152:92;66163:16;66181:42;66230:4;:12;;;66225:18;;;;;;;66152:92;66144:104;-1:-1:-1;66246:1:0;;-1:-1:-1;66144:104:0;;-1:-1:-1;;66144:104:0;66089:171;66892:32;66905:6;66913:10;66892:12;:32::i;:::-;66868:21;;;:56;;;67197:42;;;;;;;;67212:25;;;;67197:42;;67151:89;;66868:56;67151:22;:89::i;:::-;67132:15;;;67117:123;;;67118:12;;;67117:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;67275:18:0;;-1:-1:-1;67259:4:0;:12;;;:34;;;;;;;;;67251:79;;;;;-1:-1:-1;;;67251:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67634:37;67642:11;;67655:4;:15;;;67634:7;:37::i;:::-;67611:19;;;67596:75;;;67597:12;;;67596:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;67706:18:0;;-1:-1:-1;67690:4:0;:12;;;:34;;;;;;;;;67682:87;;;;-1:-1:-1;;;67682:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;67830:21:0;;;;;;:13;:21;;;;;;67853:15;;;;67822:47;;67830:21;67822:7;:47::i;:::-;67797:21;;;67782:87;;;67783:12;;;67782:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;67904:18:0;;-1:-1:-1;67888:4:0;:12;;;:34;;;;;;;;;67880:90;;;;-1:-1:-1;;;67880:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68063:19;;;;68049:11;:33;68117:21;;;;-1:-1:-1;;;;;68093:21:0;;;;;;:13;:21;;;;;;;;;:45;;;;68227:21;;;;68250:15;;;;;68214:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68314:15;;;;68282:48;;;;;;;-1:-1:-1;;;;;68282:48:0;;;68299:4;;-1:-1:-1;;;;;;;;;;;68282:48:0;;;;;;;;68542:21;;;68525:14;;68542:21;;-1:-1:-1;65365:3207:0;-1:-1:-1;;;;65365:3207:0:o;31984:121::-;32043:4;27977;32067:19;32072:1;32075;:10;;;32067:4;:19::i;:::-;:30;;;;;;;31984:121;-1:-1:-1;;;31984:121:0:o;31382:120::-;31435:4;31459:35;31464:1;31467;31459:35;;;;;;;;;;;;;-1:-1:-1;;;31459:35:0;;;:4;:35::i;28699:174::-;28777:4;28794:18;;:::i;:::-;28815:15;28820:1;28823:6;28815:4;:15::i;:::-;28794:36;;28848:17;28857:7;28848:8;:17::i;30747:116::-;30800:4;30824:31;30829:1;30832;30824:31;;;;;;;;;;;;;-1:-1:-1;;;30824:31:0;;;:4;:31::i;77073:3065::-;77231:11;;:64;;;-1:-1:-1;;;77231:64:0;;77265:4;77231:64;;;;-1:-1:-1;;;;;77231:64:0;;;;;;;;;;;;;;;77157:4;;;;77231:11;;:25;;:64;;;;;;;;;;;;;;77157:4;77231:11;:64;;;5:2:-1;;;;30:1;27;20:12;5:2;77231:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;77231:64:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;77231:64:0;;-1:-1:-1;77310:12:0;;77306:142;;77346:90;77357:27;77386:40;77428:7;77346:10;:90::i;:::-;77339:97;;;;;77306:142;77558:16;:14;:16::i;:::-;77536:18;;:38;77532:142;;77598:64;77603:22;77627:34;77598:4;:64::i;77532:142::-;77783:12;77766:14;:12;:14::i;:::-;:29;77762:143;;;77819:74;77824:29;77855:37;77819:4;:74::i;77762:143::-;77917:27;;:::i;:::-;78232:37;78260:8;78232:27;:37::i;:::-;78209:19;;;78194:75;;;78195:4;78194:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;78300:18:0;;-1:-1:-1;78284:12:0;;:34;;;;;;;;;78280:181;;78342:107;78353:16;78371:57;78435:4;:12;;;78430:18;;;;;;;78342:107;78335:114;;;;;;78280:181;78514:42;78522:4;:19;;;78543:12;78514:7;:42::i;:::-;78488:22;;;78473:83;;;78474:4;78473:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;78587:18:0;;-1:-1:-1;78571:12:0;;:34;;;;;;;;;78567:188;;78629:114;78640:16;78658:64;78729:4;:12;;;78724:18;;;;;;;78567:188;78806:35;78814:12;;78828;78806:7;:35::i;:::-;78782:20;;;78767:74;;;78768:4;78767:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;78872:18:0;;-1:-1:-1;78856:12:0;;:34;;;;;;;;;78852:179;;78914:105;78925:16;78943:55;79005:4;:12;;;79000:18;;;;;;;78852:179;79523:37;79537:8;79547:12;79523:13;:37::i;:::-;79680:22;;;;;;-1:-1:-1;;;;;79643:24:0;;;;;;:14;:24;;;;;;;;:59;;;79754:11;;79713:38;;;;:52;;;;79791:20;;;;;79776:12;:35;;;79898:22;;79867:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80115:14;80103:27;77073:3065;-1:-1:-1;;;;;77073:3065:0:o;88168:3613::-;88389:11;;:111;;;-1:-1:-1;;;88389:111:0;;88432:4;88389:111;;;;-1:-1:-1;;;;;88389:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88306:4;;;;;;88389:11;;;:34;;:111;;;;;;;;;;;;;;;88306:4;88389:11;:111;;;5:2:-1;;;;30:1;27;20:12;5:2;88389:111:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88389:111:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88389:111:0;;-1:-1:-1;88515:12:0;;88511:150;;88552:93;88563:27;88592:43;88637:7;88552:10;:93::i;:::-;88544:105;-1:-1:-1;88647:1:0;;-1:-1:-1;88544:105:0;;-1:-1:-1;88544:105:0;88511:150;88771:16;:14;:16::i;:::-;88749:18;;:38;88745:150;;88812:67;88817:22;88841:37;88812:4;:67::i;88745:150::-;89041:16;:14;:16::i;:::-;89000;-1:-1:-1;;;;;89000:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;89000:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89000:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89000:37:0;:57;88996:180;;89082:78;89087:22;89111:48;89082:4;:78::i;88996:180::-;89249:10;-1:-1:-1;;;;;89237:22:0;:8;-1:-1:-1;;;;;89237:22:0;;89233:145;;;89284:78;89289:26;89317:44;89284:4;:78::i;89233:145::-;89433:16;89429:147;;89474:86;89479:36;89517:42;89474:4;:86::i;89429:147::-;-1:-1:-1;;89632:11:0;:23;89628:158;;;89680:90;89685:36;89723:46;89680:4;:90::i;89628:158::-;89842:21;89865:22;89891:51;89908:10;89920:8;89930:11;89891:16;:51::i;:::-;89841:101;;-1:-1:-1;89841:101:0;-1:-1:-1;89957:40:0;;89953:163;;90022:78;90033:16;90027:23;;;;;;;;90052:47;90022:4;:78::i;:::-;90014:90;-1:-1:-1;90102:1:0;;-1:-1:-1;90014:90:0;;-1:-1:-1;;;90014:90:0;89953:163;90373:11;;:102;;;-1:-1:-1;;;90373:102:0;;90423:4;90373:102;;;;-1:-1:-1;;;;;90373:102:0;;;;;;;;;;;;;;;90330:21;;;;90373:11;;;:41;;:102;;;;;;;;;;;;:11;:102;;;5:2:-1;;;;30:1;27;20:12;5:2;90373:102:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90373:102:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90373:102:0;;;;;;;;;-1:-1:-1;90373:102:0;-1:-1:-1;90494:40:0;;90486:104;;;;-1:-1:-1;;;90486:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90724:11;90684:16;-1:-1:-1;;;;;90684:26:0;;90711:8;90684:36;;;;;;;;;;;;;-1:-1:-1;;;;;90684:36:0;-1:-1:-1;;;;;90684:36:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90684:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90684:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90684:36:0;:51;;90676:88;;;;;-1:-1:-1;;;90676:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;90893:15;-1:-1:-1;;;;;90923:42:0;;90960:4;90923:42;90919:254;;;90995:63;91017:4;91024:10;91036:8;91046:11;90995:13;:63::i;:::-;90982:76;;90919:254;;;91104:57;;;-1:-1:-1;;;91104:57:0;;-1:-1:-1;;;;;91104:57:0;;;;;;;;;;;;;;;;;;;;;;:22;;;;;;:57;;;;;;;;;;;;;;;-1:-1:-1;91104:22:0;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;91104:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91104:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91104:57:0;;-1:-1:-1;90919:254:0;91279:34;;91271:67;;;;;-1:-1:-1;;;91271:67:0;;;;;;;;;;;;-1:-1:-1;;;91271:67:0;;;;;;;;;;;;;;;91403:96;;;-1:-1:-1;;;;;91403:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91738:14;91725:48;-1:-1:-1;91755:17:0;;-1:-1:-1;;;;;;88168:3613:0;;;;;;;;:::o;118389:1344::-;118533:10;;118576:51;;;-1:-1:-1;;;118576:51:0;;118621:4;118576:51;;;;;;118456:4;;-1:-1:-1;;;;;118533:10:0;;118456:4;;118533:10;;118576:36;;:51;;;;;;;;;;;;;;118533:10;118576:51;;;5:2:-1;;;;30:1;27;20:12;5:2;118576:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;118576:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;118576:51:0;118638:47;;;-1:-1:-1;;;118638:47:0;;-1:-1:-1;;;;;118638:47:0;;;;;;;118671:4;118638:47;;;;;;;;;;;;118576:51;;-1:-1:-1;118638:18:0;;;;;;:47;;;;;-1:-1:-1;;118638:47:0;;;;;;;;-1:-1:-1;118638:18:0;:47;;;5:2:-1;;;;30:1;27;20:12;5:2;118638:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;118638:47:0;;;;118698:12;118752:16;118791:1;118786:153;;;;118962:2;118957:220;;;;119313:1;119310;119303:12;118786:153;-1:-1:-1;;118882:6:0;-1:-1:-1;118786:153:0;;118957:220;119060:2;119057:1;119054;119039:24;119102:1;119096:8;119085:19;;118745:589;;119363:7;119355:44;;;;;-1:-1:-1;;;119355:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;119512:10;;119497:51;;;-1:-1:-1;;;119497:51:0;;119542:4;119497:51;;;;;;119477:17;;-1:-1:-1;;;;;119512:10:0;;119497:36;;:51;;;;;;;;;;;;;;119512:10;119497:51;;;5:2:-1;;;;30:1;27;20:12;5:2;119497:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;119497:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;119497:51:0;;-1:-1:-1;119567:29:0;;;;119559:68;;;;;-1:-1:-1;;;119559:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;119645:28;;;;;118389:1344;-1:-1:-1;;;;;118389:1344:0:o;38853:337::-;38941:9;38952:4;38970:13;38985:19;;:::i;:::-;39008:31;39023:6;39031:7;39008:14;:31::i;32580:122::-;32633:4;32657:37;32662:1;32665;32657:37;;;;;;;;;;;;;;;;;:4;:37::i;31510:158::-;31591:4;31624:12;31616:6;;;;31608:29;;;;-1:-1:-1;;;31608:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31608:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31655:5:0;;;31510:158::o;31843:133::-;31902:10;;:::i;:::-;31932:36;;;;;;;;31947:19;31952:1;:10;;;31964:1;31947:4;:19::i;:::-;31932:36;;31925:43;31843:133;-1:-1:-1;;;31843:133:0:o;30871:179::-;30952:4;30978:5;;;31010:12;31002:6;;;;30994:29;;;;-1:-1:-1;;;30994:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;38122:620:0;38202:9;38213:10;;:::i;:::-;38520:14;38536;38554:25;27977:4;38572:6;38554:7;:25::i;:::-;38519:60;;-1:-1:-1;38519:60:0;-1:-1:-1;38602:18:0;38594:4;:26;;;;;;;;;38590:92;;-1:-1:-1;38651:18:0;;;;;;;;;-1:-1:-1;38651:18:0;;38645:4;;-1:-1:-1;38651:18:0;-1:-1:-1;38637:33:0;;38590:92;38699:35;38706:9;38717:7;:16;;;38699:6;:35::i;32710:250::-;32791:4;32812:6;;;:16;;-1:-1:-1;32822:6:0;;32812:16;32808:57;;;-1:-1:-1;32852:1:0;32845:8;;32808:57;32884:5;;;32888:1;32884;:5;:1;32908:5;;;;;:10;32920:12;32900:33;;;;;-1:-1:-1;;;32900:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;122020:1059:0;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;122020:1059:0;;;-1:-1:-1;122020:1059:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;122020:1059:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;122020:1059:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;122020:1059:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;122020:1059:0;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://4eac7fcbd59c4e0e798144416c62f759993be66c76f19a63acc041b7b3bdbef6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.