More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,817 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Redeem Underlyin... | 280389324 | 142 days ago | IN | 0 ETH | 0.00000306 | ||||
Redeem | 272962821 | 163 days ago | IN | 0 ETH | 0.00000243 | ||||
Redeem Underlyin... | 267827391 | 178 days ago | IN | 0 ETH | 0.00000195 | ||||
Redeem Underlyin... | 258957447 | 204 days ago | IN | 0 ETH | 0.00000341 | ||||
Redeem | 256217943 | 212 days ago | IN | 0 ETH | 0.00000292 | ||||
Redeem | 238360979 | 264 days ago | IN | 0 ETH | 0.00000653 | ||||
Redeem Underlyin... | 219518324 | 319 days ago | IN | 0 ETH | 0.00000721 | ||||
Redeem Underlyin... | 214966789 | 332 days ago | IN | 0 ETH | 0.00000336 | ||||
Redeem Underlyin... | 214965722 | 332 days ago | IN | 0 ETH | 0.00000329 | ||||
Redeem | 205419004 | 360 days ago | IN | 0 ETH | 0.00000178 | ||||
Redeem Underlyin... | 204255558 | 364 days ago | IN | 0 ETH | 0.00000262 | ||||
Redeem Underlyin... | 198569743 | 380 days ago | IN | 0 ETH | 0.00000281 | ||||
Redeem | 172262322 | 459 days ago | IN | 0 ETH | 0.00005964 | ||||
Redeem | 164661768 | 481 days ago | IN | 0 ETH | 0.0000818 | ||||
Redeem Underlyin... | 162205841 | 488 days ago | IN | 0 ETH | 0.00009321 | ||||
Redeem Underlyin... | 160292487 | 494 days ago | IN | 0 ETH | 0.00010063 | ||||
Redeem | 156911517 | 505 days ago | IN | 0 ETH | 0.00012338 | ||||
Redeem Underlyin... | 156516512 | 506 days ago | IN | 0 ETH | 0.00009685 | ||||
Redeem | 155899434 | 508 days ago | IN | 0 ETH | 0.00008584 | ||||
Redeem | 152145116 | 520 days ago | IN | 0 ETH | 0.0000567 | ||||
Redeem | 152141682 | 520 days ago | IN | 0 ETH | 0.00005912 | ||||
Redeem | 152134743 | 520 days ago | IN | 0 ETH | 0.00005824 | ||||
Redeem | 152104936 | 520 days ago | IN | 0 ETH | 0.00008156 | ||||
Redeem | 152098283 | 520 days ago | IN | 0 ETH | 0.00008318 | ||||
Redeem | 152077701 | 520 days ago | IN | 0 ETH | 0.00008143 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
324419681 | 14 days ago | 0.00484812 ETH | ||||
324418404 | 14 days ago | 0.00134735 ETH | ||||
323825757 | 15 days ago | 0.0013587 ETH | ||||
323654500 | 16 days ago | 0.00241102 ETH | ||||
322311705 | 20 days ago | 0.00083441 ETH | ||||
321253319 | 23 days ago | 0.00223238 ETH | ||||
321252563 | 23 days ago | 0.00421535 ETH | ||||
314301852 | 43 days ago | 0.00741779 ETH | ||||
299663911 | 86 days ago | 0.0169359 ETH | ||||
295096855 | 99 days ago | 0.00057906 ETH | ||||
291709159 | 109 days ago | 0.00048087 ETH | ||||
291599650 | 109 days ago | 0.00627148 ETH | ||||
291598914 | 109 days ago | 0.0073528 ETH | ||||
289057508 | 117 days ago | 0.01469769 ETH | ||||
289057275 | 117 days ago | 0.02939537 ETH | ||||
289041064 | 117 days ago | 0.02939525 ETH | ||||
289022685 | 117 days ago | 0.00098569 ETH | ||||
289022663 | 117 days ago | 0.02917273 ETH | ||||
289022440 | 117 days ago | 0.00196984 ETH | ||||
280389324 | 142 days ago | 0.00155073 ETH | ||||
280389254 | 142 days ago | 0.0011 ETH | ||||
280389132 | 142 days ago | 0.00012 ETH | ||||
272962821 | 163 days ago | 0.00100866 ETH | ||||
267827391 | 178 days ago | 0.00010247 ETH | ||||
258957447 | 204 days ago | 0.00498922 ETH |
Loading...
Loading
Contract Name:
CEther
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.5.16; import "./CToken.sol"; /** * @title Compound's CEther Contract * @notice CToken which wraps Ether * @author Compound */ contract CEther is CToken { /** * @notice Construct a new CEther money market * @param comptroller_ The address of the Comptroller * @param interestRateModel_ The address of the interest rate model * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 * @param name_ ERC-20 name of this token * @param symbol_ ERC-20 symbol of this token * @param decimals_ ERC-20 decimal precision of this token * @param admin_ Address of the administrator of this token */ constructor(ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_, address payable admin_) public { // Creator of the contract is admin during initialization admin = msg.sender; initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); // Set the proper admin now that initialization is done admin = admin_; } /*** User Interface ***/ /** * @notice Sender supplies assets into the market and receives cTokens in exchange * @dev Reverts upon any failure */ function mint() external payable { (uint err,) = mintInternal(msg.value); requireNoError(err, "mint failed"); } /** * @notice Sender redeems cTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of cTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeem(uint redeemTokens) external returns (uint) { return redeemInternal(redeemTokens); } /** * @notice Sender redeems cTokens in exchange for a specified amount of underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemAmount The amount of underlying to redeem * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemUnderlying(uint redeemAmount) external returns (uint) { return redeemUnderlyingInternal(redeemAmount); } /** * @notice Sender borrows assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrow(uint borrowAmount) external returns (uint) { return borrowInternal(borrowAmount); } /** * @notice Sender repays their own borrow * @dev Reverts upon any failure */ function repayBorrow() external payable { (uint err,) = repayBorrowInternal(msg.value); requireNoError(err, "repayBorrow failed"); } /** * @notice Sender repays a borrow belonging to borrower * @dev Reverts upon any failure * @param borrower the account with the debt being payed off */ function repayBorrowBehalf(address borrower) external payable { (uint err,) = repayBorrowBehalfInternal(borrower, msg.value); requireNoError(err, "repayBorrowBehalf failed"); } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @dev Reverts upon any failure * @param borrower The borrower of this cToken to be liquidated * @param cTokenCollateral The market in which to seize collateral from the borrower */ function liquidateBorrow(address borrower, CToken cTokenCollateral) external payable { (uint err,) = liquidateBorrowInternal(borrower, msg.value, cTokenCollateral); requireNoError(err, "liquidateBorrow failed"); } /** * @notice Send Ether to CEther to mint */ function () external payable { (uint err,) = mintInternal(msg.value); requireNoError(err, "mint failed"); } /*** Safe Token ***/ /** * @notice Gets balance of this contract in terms of Ether, before this message * @dev This excludes the value of the current message, if any * @return The quantity of Ether owned by this contract */ function getCashPrior() internal view returns (uint) { (MathError err, uint startingBalance) = subUInt(address(this).balance, msg.value); require(err == MathError.NO_ERROR); return startingBalance; } /** * @notice Perform the actual transfer in, which is a no-op * @param from Address sending the Ether * @param amount Amount of Ether being sent * @return The actual amount of Ether transferred */ function doTransferIn(address from, uint amount) internal returns (uint) { // Sanity checks require(msg.sender == from, "sender mismatch"); require(msg.value == amount, "value mismatch"); return amount; } function doTransferOut(address payable to, uint amount) internal { /* Send the Ether, with minimal gas and revert on failure */ to.transfer(amount); } function requireNoError(uint errCode, string memory message) internal pure { if (errCode == uint(Error.NO_ERROR)) { return; } bytes memory fullMessage = new bytes(bytes(message).length + 5); uint i; for (i = 0; i < bytes(message).length; i++) { fullMessage[i] = bytes(message)[i]; } fullMessage[i+0] = byte(uint8(32)); fullMessage[i+1] = byte(uint8(40)); fullMessage[i+2] = byte(uint8(48 + ( errCode / 10 ))); fullMessage[i+3] = byte(uint8(48 + ( errCode % 10 ))); fullMessage[i+4] = byte(uint8(41)); require(errCode == uint(Error.NO_ERROR), string(fullMessage)); } }
pragma solidity ^0.5.16; import "./ComptrollerInterface.sol"; import "./CTokenInterfaces.sol"; import "./ErrorReporter.sol"; import "./Exponential.sol"; import "./EIP20Interface.sol"; import "./InterestRateModel.sol"; /** * @title Compound's CToken Contract * @notice Abstract base for CTokens * @author Compound */ contract CToken is CTokenInterface, Exponential, TokenErrorReporter { /** * @notice Initialize the money market * @param comptroller_ The address of the Comptroller * @param interestRateModel_ The address of the interest rate model * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 * @param name_ EIP-20 name of this token * @param symbol_ EIP-20 symbol of this token * @param decimals_ EIP-20 decimal precision of this token */ function initialize(ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_) public { require(msg.sender == admin, "only admin may initialize the market"); require(accrualBlockNumber == 0 && borrowIndex == 0, "market may only be initialized once"); // Set initial exchange rate initialExchangeRateMantissa = initialExchangeRateMantissa_; require(initialExchangeRateMantissa > 0, "initial exchange rate must be greater than zero."); // Set the comptroller uint err = _setComptroller(comptroller_); require(err == uint(Error.NO_ERROR), "setting comptroller failed"); // Initialize block number and borrow index (block number mocks depend on comptroller being set) accrualBlockNumber = getBlockNumber(); borrowIndex = mantissaOne; // Set the interest rate model (depends on block number / borrow index) err = _setInterestRateModelFresh(interestRateModel_); require(err == uint(Error.NO_ERROR), "setting interest rate model failed"); name = name_; symbol = symbol_; decimals = decimals_; // The counter starts true to prevent changing it from zero to non-zero (i.e. smaller cost/refund) _notEntered = true; } /** * @notice Transfer `tokens` tokens from `src` to `dst` by `spender` * @dev Called by both `transfer` and `transferFrom` internally * @param spender The address of the account performing the transfer * @param src The address of the source account * @param dst The address of the destination account * @param tokens The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) { /* Fail if transfer not allowed */ uint allowed = comptroller.transferAllowed(address(this), src, dst, tokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.TRANSFER_COMPTROLLER_REJECTION, allowed); } /* Do not allow self-transfers */ if (src == dst) { return fail(Error.BAD_INPUT, FailureInfo.TRANSFER_NOT_ALLOWED); } /* Get the allowance, infinite for the account owner */ uint startingAllowance = 0; if (spender == src) { startingAllowance = uint(-1); } else { startingAllowance = transferAllowances[src][spender]; } /* Do the calculations, checking for {under,over}flow */ MathError mathErr; uint allowanceNew; uint srcTokensNew; uint dstTokensNew; (mathErr, allowanceNew) = subUInt(startingAllowance, tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ALLOWED); } (mathErr, srcTokensNew) = subUInt(accountTokens[src], tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ENOUGH); } (mathErr, dstTokensNew) = addUInt(accountTokens[dst], tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_TOO_MUCH); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) accountTokens[src] = srcTokensNew; accountTokens[dst] = dstTokensNew; /* Eat some of the allowance (if necessary) */ if (startingAllowance != uint(-1)) { transferAllowances[src][spender] = allowanceNew; } /* We emit a Transfer event */ emit Transfer(src, dst, tokens); // 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 cTokenBalance = accountTokens[account]; uint borrowBalance; uint exchangeRateMantissa; MathError mErr; (mErr, borrowBalance) = borrowBalanceStoredInternal(account); if (mErr != MathError.NO_ERROR) { return (uint(Error.MATH_ERROR), 0, 0, 0); } (mErr, exchangeRateMantissa) = exchangeRateStoredInternal(); if (mErr != MathError.NO_ERROR) { return (uint(Error.MATH_ERROR), 0, 0, 0); } return (uint(Error.NO_ERROR), cTokenBalance, borrowBalance, exchangeRateMantissa); } /** * @dev Function to simply retrieve block number * This exists mainly for inheriting test contracts to stub this result. */ function getBlockNumber() internal view returns (uint) { return block.number; } /** * @notice Returns the current per-block borrow interest rate for this cToken * @return The borrow interest rate per block, scaled by 1e18 */ function borrowRatePerBlock() external view returns (uint) { return interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves); } /** * @notice Returns the current per-block supply interest rate for this cToken * @return The supply interest rate per block, scaled by 1e18 */ function supplyRatePerBlock() external view returns (uint) { return interestRateModel.getSupplyRate(getCashPrior(), totalBorrows, totalReserves, reserveFactorMantissa); } /** * @notice Returns the current total borrows plus accrued interest * @return The total borrows with interest */ function totalBorrowsCurrent() external nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return totalBorrows; } /** * @notice Accrue interest to updated borrowIndex and then calculate account's borrow balance using the updated borrowIndex * @param account The address whose balance should be calculated after updating borrowIndex * @return The calculated balance */ function borrowBalanceCurrent(address account) external nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return borrowBalanceStored(account); } /** * @notice Return the borrow balance of account based on stored data * @param account The address whose balance should be calculated * @return The calculated balance */ function borrowBalanceStored(address account) public view returns (uint) { (MathError err, uint result) = borrowBalanceStoredInternal(account); require(err == MathError.NO_ERROR, "borrowBalanceStored: borrowBalanceStoredInternal failed"); return result; } /** * @notice Return the borrow balance of account based on stored data * @param account The address whose balance should be calculated * @return (error code, the calculated balance or 0 if error code is non-zero) */ function borrowBalanceStoredInternal(address account) internal view returns (MathError, uint) { /* Note: we do not assert that the market is up to date */ MathError mathErr; uint principalTimesIndex; uint result; /* Get borrowBalance and borrowIndex */ BorrowSnapshot storage borrowSnapshot = accountBorrows[account]; /* If borrowBalance = 0 then borrowIndex is likely also 0. * Rather than failing the calculation with a division by 0, we immediately return 0 in this case. */ if (borrowSnapshot.principal == 0) { return (MathError.NO_ERROR, 0); } /* Calculate new borrow balance using the interest index: * recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex */ (mathErr, principalTimesIndex) = mulUInt(borrowSnapshot.principal, borrowIndex); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } (mathErr, result) = divUInt(principalTimesIndex, borrowSnapshot.interestIndex); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } return (MathError.NO_ERROR, result); } /** * @notice Accrue interest then return the up-to-date exchange rate * @return Calculated exchange rate scaled by 1e18 */ function exchangeRateCurrent() public nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return exchangeRateStored(); } /** * @notice Calculates the exchange rate from the underlying to the CToken * @dev This function does not accrue interest before calculating the exchange rate * @return Calculated exchange rate scaled by 1e18 */ function exchangeRateStored() public view returns (uint) { (MathError err, uint result) = exchangeRateStoredInternal(); require(err == MathError.NO_ERROR, "exchangeRateStored: exchangeRateStoredInternal failed"); return result; } /** * @notice Calculates the exchange rate from the underlying to the CToken * @dev This function does not accrue interest before calculating the exchange rate * @return (error code, calculated exchange rate scaled by 1e18) */ function exchangeRateStoredInternal() internal view returns (MathError, uint) { 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 cToken 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 cTokens in exchange * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param mintAmount The amount of the underlying asset to supply * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount. */ function mintInternal(uint mintAmount) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.MINT_ACCRUE_INTEREST_FAILED), 0); } // mintFresh emits the actual Mint event if successful and logs on errors, so we don't need to return mintFresh(msg.sender, mintAmount); } struct MintLocalVars { Error err; MathError mathErr; uint exchangeRateMantissa; uint mintTokens; uint totalSupplyNew; uint accountTokensNew; uint actualMintAmount; } /** * @notice User supplies assets into the market and receives cTokens in exchange * @dev Assumes interest has already been accrued up to the current block * @param minter The address of the account which is supplying the assets * @param mintAmount The amount of the underlying asset to supply * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount. */ function mintFresh(address minter, uint mintAmount) internal returns (uint, uint) { /* Fail if mint not allowed */ uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.MINT_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.MINT_FRESHNESS_CHECK), 0); } MintLocalVars memory vars; (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return (failOpaque(Error.MATH_ERROR, FailureInfo.MINT_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)), 0); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call `doTransferIn` for the minter and the mintAmount. * Note: The cToken must handle variations between ERC-20 and ETH underlying. * `doTransferIn` reverts if anything goes wrong, since we can't be sure if * side-effects occurred. The function returns the amount actually transferred, * in case of a fee. On success, the cToken holds an additional `actualMintAmount` * of cash. */ vars.actualMintAmount = doTransferIn(minter, mintAmount); /* * We get the current exchange rate and calculate the number of cTokens to be minted: * mintTokens = actualMintAmount / exchangeRate */ (vars.mathErr, vars.mintTokens) = divScalarByExpTruncate(vars.actualMintAmount, Exp({mantissa: vars.exchangeRateMantissa})); require(vars.mathErr == MathError.NO_ERROR, "MINT_EXCHANGE_CALCULATION_FAILED"); /* * We calculate the new total supply of cTokens and minter token balance, checking for overflow: * totalSupplyNew = totalSupply + mintTokens * accountTokensNew = accountTokens[minter] + mintTokens */ (vars.mathErr, vars.totalSupplyNew) = addUInt(totalSupply, vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED"); (vars.mathErr, vars.accountTokensNew) = addUInt(accountTokens[minter], vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED"); /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[minter] = vars.accountTokensNew; /* We emit a Mint event, and a Transfer event */ emit Mint(minter, vars.actualMintAmount, vars.mintTokens); emit Transfer(address(this), minter, vars.mintTokens); /* We call the defense hook */ // unused function // comptroller.mintVerify(address(this), minter, vars.actualMintAmount, vars.mintTokens); return (uint(Error.NO_ERROR), vars.actualMintAmount); } /** * @notice Sender redeems cTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of cTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemInternal(uint redeemTokens) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED); } // redeemFresh emits redeem-specific logs on errors, so we don't need to return redeemFresh(msg.sender, redeemTokens, 0); } /** * @notice Sender redeems cTokens in exchange for a specified amount of underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemAmount The amount of underlying to receive from redeeming cTokens * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemUnderlyingInternal(uint redeemAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED); } // redeemFresh emits redeem-specific logs on errors, so we don't need to return redeemFresh(msg.sender, 0, redeemAmount); } struct RedeemLocalVars { Error err; MathError mathErr; uint exchangeRateMantissa; uint redeemTokens; uint redeemAmount; uint totalSupplyNew; uint accountTokensNew; } /** * @notice User redeems cTokens in exchange for the underlying asset * @dev Assumes interest has already been accrued up to the current block * @param redeemer The address of the account which is redeeming the tokens * @param redeemTokensIn The number of cTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be non-zero) * @param redeemAmountIn The number of underlying tokens to receive from redeeming cTokens (only one of redeemTokensIn or redeemAmountIn may be non-zero) * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemFresh(address payable redeemer, uint redeemTokensIn, uint redeemAmountIn) internal returns (uint) { require(redeemTokensIn == 0 || redeemAmountIn == 0, "one of redeemTokensIn or redeemAmountIn must be zero"); RedeemLocalVars memory vars; /* exchangeRate = invoke Exchange Rate Stored() */ (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)); } /* If redeemTokensIn > 0: */ if (redeemTokensIn > 0) { /* * We calculate the exchange rate and the amount of underlying to be redeemed: * redeemTokens = redeemTokensIn * redeemAmount = redeemTokensIn x exchangeRateCurrent */ vars.redeemTokens = redeemTokensIn; (vars.mathErr, vars.redeemAmount) = mulScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), redeemTokensIn); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, uint(vars.mathErr)); } } else { /* * We get the current exchange rate and calculate the amount to be redeemed: * redeemTokens = redeemAmountIn / exchangeRate * redeemAmount = redeemAmountIn */ (vars.mathErr, vars.redeemTokens) = divScalarByExpTruncate(redeemAmountIn, Exp({mantissa: vars.exchangeRateMantissa})); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED, uint(vars.mathErr)); } vars.redeemAmount = redeemAmountIn; } /* Fail if redeem not allowed */ uint allowed = comptroller.redeemAllowed(address(this), redeemer, vars.redeemTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REDEEM_COMPTROLLER_REJECTION, allowed); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDEEM_FRESHNESS_CHECK); } /* * We calculate the new total supply and redeemer balance, checking for underflow: * totalSupplyNew = totalSupply - redeemTokens * accountTokensNew = accountTokens[redeemer] - redeemTokens */ (vars.mathErr, vars.totalSupplyNew) = subUInt(totalSupply, vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountTokensNew) = subUInt(accountTokens[redeemer], vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } /* Fail gracefully if protocol has insufficient cash */ if (getCashPrior() < vars.redeemAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDEEM_TRANSFER_OUT_NOT_POSSIBLE); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We invoke doTransferOut for the redeemer and the redeemAmount. * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken has redeemAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(redeemer, vars.redeemAmount); /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[redeemer] = vars.accountTokensNew; /* We emit a Transfer event, and a Redeem event */ emit Transfer(redeemer, address(this), vars.redeemTokens); emit Redeem(redeemer, vars.redeemAmount, vars.redeemTokens); /* We call the defense hook */ comptroller.redeemVerify(address(this), redeemer, vars.redeemAmount, vars.redeemTokens); return uint(Error.NO_ERROR); } /** * @notice Sender borrows assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrowInternal(uint borrowAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return fail(Error(error), FailureInfo.BORROW_ACCRUE_INTEREST_FAILED); } // borrowFresh emits borrow-specific logs on errors, so we don't need to return borrowFresh(msg.sender, borrowAmount); } struct BorrowLocalVars { MathError mathErr; uint accountBorrows; uint accountBorrowsNew; uint totalBorrowsNew; } /** * @notice Users borrow assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrowFresh(address payable borrower, uint borrowAmount) internal returns (uint) { /* Fail if borrow not allowed */ uint allowed = comptroller.borrowAllowed(address(this), borrower, borrowAmount); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.BORROW_COMPTROLLER_REJECTION, allowed); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.BORROW_FRESHNESS_CHECK); } /* Fail gracefully if protocol has insufficient underlying cash */ if (getCashPrior() < borrowAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.BORROW_CASH_NOT_AVAILABLE); } BorrowLocalVars memory vars; /* * We calculate the new borrower and total borrow balances, failing on overflow: * accountBorrowsNew = accountBorrows + borrowAmount * totalBorrowsNew = totalBorrows + borrowAmount */ (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountBorrowsNew) = addUInt(vars.accountBorrows, borrowAmount); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.totalBorrowsNew) = addUInt(totalBorrows, borrowAmount); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We invoke doTransferOut for the borrower and the borrowAmount. * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken borrowAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(borrower, borrowAmount); /* We write the previously calculated values into storage */ accountBorrows[borrower].principal = vars.accountBorrowsNew; accountBorrows[borrower].interestIndex = borrowIndex; totalBorrows = vars.totalBorrowsNew; /* We emit a Borrow event */ emit Borrow(borrower, borrowAmount, vars.accountBorrowsNew, vars.totalBorrowsNew); /* We call the defense hook */ // 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 cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken holds an additional repayAmount of cash. * doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. * it returns the amount actually transferred, in case of a fee. */ vars.actualRepayAmount = doTransferIn(payer, vars.repayAmount); /* * We calculate the new borrower and total borrow balances, failing on underflow: * accountBorrowsNew = accountBorrows - actualRepayAmount * totalBorrowsNew = totalBorrows - actualRepayAmount */ (vars.mathErr, vars.accountBorrowsNew) = subUInt(vars.accountBorrows, vars.actualRepayAmount); require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED"); (vars.mathErr, vars.totalBorrowsNew) = subUInt(totalBorrows, vars.actualRepayAmount); require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED"); /* We write the previously calculated values into storage */ accountBorrows[borrower].principal = vars.accountBorrowsNew; accountBorrows[borrower].interestIndex = borrowIndex; totalBorrows = vars.totalBorrowsNew; /* We emit a RepayBorrow event */ emit RepayBorrow(payer, borrower, vars.actualRepayAmount, vars.accountBorrowsNew, vars.totalBorrowsNew); /* We call the defense hook */ // 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 cToken to be liquidated * @param cTokenCollateral The market in which to seize collateral from the borrower * @param repayAmount The amount of the underlying borrowed asset to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowInternal(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed return (fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED), 0); } error = cTokenCollateral.accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed return (fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED), 0); } // liquidateBorrowFresh emits borrow-specific logs on errors, so we don't need to return liquidateBorrowFresh(msg.sender, borrower, repayAmount, cTokenCollateral); } /** * @notice The liquidator liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this cToken to be liquidated * @param liquidator The address repaying the borrow and seizing collateral * @param cTokenCollateral The market in which to seize collateral from the borrower * @param repayAmount The amount of the underlying borrowed asset to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowFresh(address liquidator, address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal returns (uint, uint) { /* Fail if liquidate not allowed */ uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(cTokenCollateral), liquidator, borrower, repayAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_FRESHNESS_CHECK), 0); } /* Verify cTokenCollateral market's block number equals current block number */ if (cTokenCollateral.accrualBlockNumber() != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_COLLATERAL_FRESHNESS_CHECK), 0); } /* Fail if borrower = liquidator */ if (borrower == liquidator) { return (fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_LIQUIDATOR_IS_BORROWER), 0); } /* Fail if repayAmount = 0 */ if (repayAmount == 0) { return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_ZERO), 0); } /* Fail if repayAmount = -1 */ if (repayAmount == uint(-1)) { return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX), 0); } /* Fail if repayBorrow fails */ (uint repayBorrowError, uint actualRepayAmount) = repayBorrowFresh(liquidator, borrower, repayAmount); if (repayBorrowError != uint(Error.NO_ERROR)) { return (fail(Error(repayBorrowError), FailureInfo.LIQUIDATE_REPAY_BORROW_FRESH_FAILED), 0); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We calculate the number of collateral tokens that will be seized */ (uint amountSeizeError, uint seizeTokens) = comptroller.liquidateCalculateSeizeTokens(address(this), address(cTokenCollateral), actualRepayAmount); require(amountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED"); /* Revert if borrower collateral token balance < seizeTokens */ require(cTokenCollateral.balanceOf(borrower) >= seizeTokens, "LIQUIDATE_SEIZE_TOO_MUCH"); // If this is also the collateral, run seizeInternal to avoid re-entrancy, otherwise make an external call uint seizeError; if (address(cTokenCollateral) == address(this)) { seizeError = seizeInternal(address(this), liquidator, borrower, seizeTokens); } else { seizeError = cTokenCollateral.seize(liquidator, borrower, seizeTokens); } /* Revert if seize tokens fails (since we cannot be sure of side effects) */ require(seizeError == uint(Error.NO_ERROR), "token seizure failed"); /* We emit a LiquidateBorrow event */ emit LiquidateBorrow(liquidator, borrower, actualRepayAmount, address(cTokenCollateral), seizeTokens); /* We call the defense hook */ // unused function // comptroller.liquidateBorrowVerify(address(this), address(cTokenCollateral), liquidator, borrower, actualRepayAmount, seizeTokens); return (uint(Error.NO_ERROR), actualRepayAmount); } /** * @notice Transfers collateral tokens (this market) to the liquidator. * @dev Will fail unless called by another cToken during the process of liquidation. * Its absolutely critical to use msg.sender as the borrowed cToken and not a parameter. * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of cTokens to seize * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function seize(address liquidator, address borrower, uint seizeTokens) external nonReentrant returns (uint) { return seizeInternal(msg.sender, liquidator, borrower, seizeTokens); } /** * @notice Transfers collateral tokens (this market) to the liquidator. * @dev Called only during an in-kind liquidation, or by liquidateBorrow during the liquidation of another CToken. * Its absolutely critical to use msg.sender as the seizer cToken and not a parameter. * @param seizerToken The contract seizing the collateral (i.e. borrowed cToken) * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of cTokens to seize * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function seizeInternal(address seizerToken, address liquidator, address borrower, uint seizeTokens) internal returns (uint) { /* Fail if seize not allowed */ uint allowed = comptroller.seizeAllowed(address(this), seizerToken, liquidator, borrower, seizeTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_SEIZE_COMPTROLLER_REJECTION, allowed); } /* Fail if borrower = liquidator */ if (borrower == liquidator) { return fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER); } MathError mathErr; uint borrowerTokensNew; uint liquidatorTokensNew; /* * We calculate the new borrower and liquidator token balances, failing on underflow/overflow: * borrowerTokensNew = accountTokens[borrower] - seizeTokens * liquidatorTokensNew = accountTokens[liquidator] + seizeTokens */ (mathErr, borrowerTokensNew) = subUInt(accountTokens[borrower], seizeTokens); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED, uint(mathErr)); } (mathErr, liquidatorTokensNew) = addUInt(accountTokens[liquidator], seizeTokens); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED, uint(mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write the previously calculated values into storage */ accountTokens[borrower] = borrowerTokensNew; accountTokens[liquidator] = liquidatorTokensNew; /* Emit a Transfer event */ emit Transfer(borrower, liquidator, seizeTokens); /* We call the defense hook */ // 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 cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken holds an additional addAmount of cash. * doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. * it returns the amount actually transferred, in case of a fee. */ actualAddAmount = doTransferIn(msg.sender, addAmount); totalReservesNew = totalReserves + actualAddAmount; /* 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 } }
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 cTokens) external returns (uint[] memory); function exitMarket(address cToken) external returns (uint); /*** Policy Hooks ***/ function mintAllowed(address cToken, address minter, uint mintAmount) external returns (uint); function mintVerify(address cToken, address minter, uint mintAmount, uint mintTokens) external; function redeemAllowed(address cToken, address redeemer, uint redeemTokens) external returns (uint); function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) external; function borrowAllowed(address cToken, address borrower, uint borrowAmount) external returns (uint); function borrowVerify(address cToken, address borrower, uint borrowAmount) external; function repayBorrowAllowed( address cToken, address payer, address borrower, uint repayAmount) external returns (uint); function repayBorrowVerify( address cToken, address payer, address borrower, uint repayAmount, uint borrowerIndex) external; function liquidateBorrowAllowed( address cTokenBorrowed, address cTokenCollateral, address liquidator, address borrower, uint repayAmount) external returns (uint); function liquidateBorrowVerify( address cTokenBorrowed, address cTokenCollateral, address liquidator, address borrower, uint repayAmount, uint seizeTokens) external; function seizeAllowed( address cTokenCollateral, address cTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external returns (uint); function seizeVerify( address cTokenCollateral, address cTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external; function transferAllowed(address cToken, address src, address dst, uint transferTokens) external returns (uint); function transferVerify(address cToken, address src, address dst, uint transferTokens) external; /*** Liquidity/Liquidation Calculations ***/ function liquidateCalculateSeizeTokens( address cTokenBorrowed, address cTokenCollateral, uint repayAmount) external view returns (uint, uint); }
pragma solidity ^0.5.16; import "./ComptrollerInterface.sol"; import "./InterestRateModel.sol"; import "./EIP20NonStandardInterface.sol"; contract CTokenStorage { /** * @dev Guard variable for re-entrancy checks */ bool internal _notEntered; /** * @notice EIP-20 token name for this token */ string public name; /** * @notice EIP-20 token symbol for this token */ string public symbol; /** * @notice EIP-20 token decimals for this token */ uint8 public decimals; /** * @notice Maximum borrow rate that can ever be applied (.0005% / block) */ uint internal constant borrowRateMaxMantissa = 0.0005e16; /** * @notice Maximum fraction of interest that can be set aside for reserves */ uint internal constant reserveFactorMaxMantissa = 1e18; /** * @notice Administrator for this contract */ address payable public admin; /** * @notice Pending administrator for this contract */ address payable public pendingAdmin; /** * @notice Contract which oversees inter-cToken operations */ ComptrollerInterface public comptroller; /** * @notice Model which tells what the current interest rate should be */ InterestRateModel public interestRateModel; /** * @notice Initial exchange rate used when minting the first CTokens (used when totalSupply = 0) */ uint internal initialExchangeRateMantissa; /** * @notice Fraction of interest currently set aside for reserves */ uint public reserveFactorMantissa; /** * @notice Block number that interest was last accrued at */ uint public accrualBlockNumber; /** * @notice Accumulator of the total earned interest rate since the opening of the market */ uint public borrowIndex; /** * @notice Total amount of outstanding borrows of the underlying in this market */ uint public totalBorrows; /** * @notice Total amount of reserves of the underlying held in this market */ uint public totalReserves; /** * @notice Total number of tokens in circulation */ uint public totalSupply; /** * @notice Official record of token balances for each account */ mapping (address => uint) internal accountTokens; /** * @notice Approved token transfer amounts on behalf of others */ mapping (address => mapping (address => uint)) internal transferAllowances; /** * @notice Container for borrow balance information * @member principal Total balance (with accrued interest), after applying the most recent balance-changing action * @member interestIndex Global borrowIndex as of the most recent balance-changing action */ struct BorrowSnapshot { uint principal; uint interestIndex; } /** * @notice Mapping of account addresses to outstanding borrow balances */ mapping(address => BorrowSnapshot) internal accountBorrows; } contract CTokenInterface is CTokenStorage { /** * @notice Indicator that this is a CToken contract (for inspection) */ bool public constant isCToken = true; /*** Market Events ***/ /** * @notice Event emitted when interest is accrued */ event AccrueInterest(uint cashPrior, uint interestAccumulated, uint borrowIndex, uint totalBorrows); /** * @notice Event emitted when tokens are minted */ event Mint(address minter, uint mintAmount, uint mintTokens); /** * @notice Event emitted when tokens are redeemed */ event Redeem(address redeemer, uint redeemAmount, uint redeemTokens); /** * @notice Event emitted when underlying is borrowed */ event Borrow(address borrower, uint borrowAmount, uint accountBorrows, uint totalBorrows); /** * @notice Event emitted when a borrow is repaid */ event RepayBorrow(address payer, address borrower, uint repayAmount, uint accountBorrows, uint totalBorrows); /** * @notice Event emitted when a borrow is liquidated */ event LiquidateBorrow(address liquidator, address borrower, uint repayAmount, address cTokenCollateral, uint seizeTokens); /*** Admin Events ***/ /** * @notice Event emitted when pendingAdmin is changed */ event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin); /** * @notice Event emitted when pendingAdmin is accepted, which means admin is updated */ event NewAdmin(address oldAdmin, address newAdmin); /** * @notice Event emitted when comptroller is changed */ event NewComptroller(ComptrollerInterface oldComptroller, ComptrollerInterface newComptroller); /** * @notice Event emitted when interestRateModel is changed */ event NewMarketInterestRateModel(InterestRateModel oldInterestRateModel, InterestRateModel newInterestRateModel); /** * @notice Event emitted when the reserve factor is changed */ event NewReserveFactor(uint oldReserveFactorMantissa, uint newReserveFactorMantissa); /** * @notice Event emitted when the reserves are added */ event ReservesAdded(address benefactor, uint addAmount, uint newTotalReserves); /** * @notice Event emitted when the reserves are reduced */ event ReservesReduced(address admin, uint reduceAmount, uint newTotalReserves); /** * @notice EIP20 Transfer event */ event Transfer(address indexed from, address indexed to, uint amount); /** * @notice EIP20 Approval event */ event Approval(address indexed owner, address indexed spender, uint amount); /** * @notice Failure event */ event Failure(uint error, uint info, uint detail); /*** User Interface ***/ function transfer(address dst, uint amount) external returns (bool); function transferFrom(address src, address dst, uint amount) external returns (bool); function approve(address spender, uint amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint); function balanceOf(address owner) external view returns (uint); function balanceOfUnderlying(address owner) external returns (uint); function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint); function borrowRatePerBlock() external view returns (uint); function supplyRatePerBlock() external view returns (uint); function totalBorrowsCurrent() external returns (uint); function borrowBalanceCurrent(address account) external returns (uint); function borrowBalanceStored(address account) public view returns (uint); function exchangeRateCurrent() public returns (uint); function exchangeRateStored() public view returns (uint); function getCash() external view returns (uint); function accrueInterest() public returns (uint); function seize(address liquidator, address borrower, uint seizeTokens) external returns (uint); /*** Admin Functions ***/ function _setPendingAdmin(address payable newPendingAdmin) external returns (uint); function _acceptAdmin() external returns (uint); function _setComptroller(ComptrollerInterface newComptroller) public returns (uint); function _setReserveFactor(uint newReserveFactorMantissa) external returns (uint); function _reduceReserves(uint reduceAmount) external returns (uint); function _setInterestRateModel(InterestRateModel newInterestRateModel) public returns (uint); } contract CErc20Storage { /** * @notice Underlying asset for this CToken */ address public underlying; } contract CErc20Interface is CErc20Storage { /*** User Interface ***/ function mint(uint mintAmount) external returns (uint); function redeem(uint redeemTokens) external returns (uint); function redeemUnderlying(uint redeemAmount) external returns (uint); function borrow(uint borrowAmount) external returns (uint); function repayBorrow(uint repayAmount) external returns (uint); function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint); function liquidateBorrow(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) external returns (uint); 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 CDelegateInterface is CDelegationStorage { /** * @notice Called by the delegator on a delegate to initialize it for duty * @dev Should revert if any issues arise which make it unfit for delegation * @param data The encoded bytes data for any initialization */ function _becomeImplementation(bytes memory data) public; /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() public; }
pragma solidity ^0.5.16; /** * @title Compound's InterestRateModel Interface * @author Compound */ 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); }
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); }
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); } }
pragma solidity ^0.5.16; import "./CarefulMath.sol"; import "./ExponentialNoError.sol"; /** * @title Exponential module for storing fixed-precision decimals * @author Compound * @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); } }
pragma solidity ^0.5.16; /** * @title Careful Math * @author Compound * @notice Derived from OpenZeppelin's SafeMath library * https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol */ contract CarefulMath { /** * @dev Possible error codes that we can return */ enum MathError { NO_ERROR, DIVISION_BY_ZERO, INTEGER_OVERFLOW, INTEGER_UNDERFLOW } /** * @dev Multiplies two numbers, returns an error on overflow. */ function mulUInt(uint a, uint b) internal pure returns (MathError, uint) { if (a == 0) { return (MathError.NO_ERROR, 0); } uint c = a * b; if (c / a != b) { return (MathError.INTEGER_OVERFLOW, 0); } else { return (MathError.NO_ERROR, c); } } /** * @dev Integer division of two numbers, truncating the quotient. */ function divUInt(uint a, uint b) internal pure returns (MathError, uint) { if (b == 0) { return (MathError.DIVISION_BY_ZERO, 0); } return (MathError.NO_ERROR, a / b); } /** * @dev Subtracts two numbers, returns an error on overflow (i.e. if subtrahend is greater than minuend). */ function subUInt(uint a, uint b) internal pure returns (MathError, uint) { if (b <= a) { return (MathError.NO_ERROR, a - b); } else { return (MathError.INTEGER_UNDERFLOW, 0); } } /** * @dev Adds two numbers, returns an error on overflow. */ function addUInt(uint a, uint b) internal pure returns (MathError, uint) { uint c = a + b; if (c >= a) { return (MathError.NO_ERROR, c); } else { return (MathError.INTEGER_OVERFLOW, 0); } } /** * @dev add a and b and then subtract c */ function addThenSubUInt(uint a, uint b, uint c) internal pure returns (MathError, uint) { (MathError err0, uint sum) = addUInt(a, b); if (err0 != MathError.NO_ERROR) { return (err0, 0); } return subUInt(sum, c); } }
pragma solidity ^0.5.16; /** * @title Exponential module for storing fixed-precision decimals * @author Compound * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places. * Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is: * `Exp({mantissa: 5100000000000000000})`. */ contract ExponentialNoError { uint constant expScale = 1e18; uint constant doubleScale = 1e36; uint constant halfExpScale = expScale/2; uint constant mantissaOne = expScale; struct Exp { uint mantissa; } struct Double { uint mantissa; } /** * @dev Truncates the given exp to a whole number value. * For example, truncate(Exp{mantissa: 15 * expScale}) = 15 */ function truncate(Exp memory exp) pure internal returns (uint) { // Note: We are not using careful math here as we're performing a division that cannot fail return exp.mantissa / expScale; } /** * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer. */ function mul_ScalarTruncate(Exp memory a, uint scalar) pure internal returns (uint) { Exp memory product = mul_(a, scalar); return truncate(product); } /** * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer. */ function mul_ScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (uint) { Exp memory product = mul_(a, scalar); return add_(truncate(product), addend); } /** * @dev Checks if first Exp is less than second Exp. */ function lessThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa < right.mantissa; } /** * @dev Checks if left Exp <= right Exp. */ function lessThanOrEqualExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa <= right.mantissa; } /** * @dev Checks if left Exp > right Exp. */ function greaterThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa > right.mantissa; } /** * @dev returns true if Exp is exactly zero */ function isZeroExp(Exp memory value) pure internal returns (bool) { return value.mantissa == 0; } function safe224(uint n, string memory errorMessage) pure internal returns (uint224) { require(n < 2**224, errorMessage); return uint224(n); } function safe32(uint n, string memory errorMessage) pure internal returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function add_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: add_(a.mantissa, b.mantissa)}); } function add_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: add_(a.mantissa, b.mantissa)}); } function add_(uint a, uint b) pure internal returns (uint) { return 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)}); } }
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); }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address payable","name":"admin_","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cashPrior","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestAccumulated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"AccrueInterest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"borrowAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"Borrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"error","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"info","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"detail","type":"uint256"}],"name":"Failure","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"liquidator","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"cTokenCollateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"LiquidateBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintTokens","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract ComptrollerInterface","name":"oldComptroller","type":"address"},{"indexed":false,"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"NewComptroller","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract InterestRateModel","name":"oldInterestRateModel","type":"address"},{"indexed":false,"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"NewMarketInterestRateModel","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldReserveFactorMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"NewReserveFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"redeemer","type":"address"},{"indexed":false,"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"RepayBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"benefactor","type":"address"},{"indexed":false,"internalType":"uint256","name":"addAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"reduceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesReduced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"_setComptroller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newPendingAdmin","type":"address"}],"name":"_setPendingAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"_setReserveFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"accrueInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"comptroller","outputs":[{"internalType":"contract ComptrollerInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exchangeRateCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"exchangeRateStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isCToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"contract CToken","name":"cTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"repayBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"repayBorrowBehalf","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"supplyRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200534238038062005342833981810160405260e08110156200003757600080fd5b8151602083015160408085015160608601805192519496939591949391820192846401000000008211156200006b57600080fd5b9083019060208201858111156200008157600080fd5b82516401000000008111828201881017156200009c57600080fd5b82525081516020918201929091019080838360005b83811015620000cb578181015183820152602001620000b1565b50505050905090810190601f168015620000f95780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011d57600080fd5b9083019060208201858111156200013357600080fd5b82516401000000008111828201881017156200014e57600080fd5b82525081516020918201929091019080838360005b838110156200017d57818101518382015260200162000163565b50505050905090810190601f168015620001ab5780820380516001836020036101000a031916815260200191505b506040908152602082015191015160038054610100600160a81b03191633610100021790559092509050620001e587878787878762000218565b600380546001600160a01b0390921661010002610100600160a81b03199092169190911790555062000853945050505050565b60035461010090046001600160a01b03163314620002685760405162461bcd60e51b8152600401808060200182810382526024815260200180620052a96024913960400191505060405180910390fd5b600954158015620002795750600a54155b620002b65760405162461bcd60e51b8152600401808060200182810382526023815260200180620052cd6023913960400191505060405180910390fd5b600784905583620002f95760405162461bcd60e51b8152600401808060200182810382526030815260200180620052f06030913960400191505060405180910390fd5b60006200030f876001600160e01b036200042e16565b9050801562000365576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b620003786001600160e01b036200059616565b600955670de0b6b3a7640000600a556200039b866001600160e01b036200059b16565b90508015620003dc5760405162461bcd60e51b8152600401808060200182810382526022815260200180620053206022913960400191505060405180910390fd5b8351620003f1906001906020870190620007b1565b50825162000407906002906020860190620007b1565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b60035460009061010090046001600160a01b031633146200046857620004606001603f6001600160e01b036200074116565b905062000591565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015620004ae57600080fd5b505afa158015620004c3573d6000803e3d6000fd5b505050506040513d6020811015620004da57600080fd5b50516200052e576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9150505b919050565b435b90565b600354600090819061010090046001600160a01b03163314620005d857620005cf600160426001600160e01b036200074116565b91505062000591565b620005eb6001600160e01b036200059616565b600954146200060b57620005cf600a60416001600160e01b036200074116565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200065d57600080fd5b505afa15801562000672573d6000803e3d6000fd5b505050506040513d60208110156200068957600080fd5b5051620006dd576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a160006200058d565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08360108111156200077157fe5b8360508111156200077e57fe5b604080519283526020830191909152600082820152519081900360600190a1826010811115620007aa57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007f457805160ff191683800117855562000824565b8280016001018555821562000824579182015b828111156200082457825182559160200191906001019062000807565b506200083292915062000836565b5090565b6200059891905b808211156200083257600081556001016200083d565b614a4680620008636000396000f3fe6080604052600436106102725760003560e01c806395d89b411161014f578063c37f68e2116100c1578063f2b3abbd1161007a578063f2b3abbd14610a22578063f3fdb15a14610a55578063f851a44014610a6a578063f8f9da2814610a7f578063fca7820b14610a94578063fe9c44ae14610abe57610272565b8063c37f68e2146108ff578063c5ebeaec14610958578063db006a7514610982578063dd62ed3e146109ac578063e5974619146109e7578063e9c714f214610a0d57610272565b8063aa5af0fd11610113578063aa5af0fd1461081c578063aae40a2a14610831578063ae9d70b01461085f578063b2a02ff114610874578063b71d1a0c146108b7578063bd6d894d146108ea57610272565b806395d89b411461062757806395dd91931461063c57806399d8c1b41461066f578063a6afed95146107ce578063a9059cbb146107e357610272565b80633b1d21a2116101e8578063601a0bf1116101ac578063601a0bf1146105615780636c540baf1461058b57806370a08231146105a057806373acee98146105d3578063852a12e3146105e85780638f840ddd1461061257610272565b80633b1d21a2146104e75780634576b5db146104fc57806347bd37181461052f5780634e4d9fea146105445780635fe3b5671461054c57610272565b806318160ddd1161023a57806318160ddd146103eb578063182df0f51461040057806323b872dd146104155780632678224714610458578063313ce567146104895780633af9e669146104b457610272565b806306fdde03146102b0578063095ea7b31461033a5780631249c58b14610387578063173b99041461039157806317bfdfbc146103b8575b600061027d34610ad3565b5090506102ad816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610b7b565b50005b3480156102bc57600080fd5b506102c5610d7b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ff5781810151838201526020016102e7565b50505050905090810190601f16801561032c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034657600080fd5b506103736004803603604081101561035d57600080fd5b506001600160a01b038135169060200135610e08565b604080519115158252519081900360200190f35b61038f610e75565b005b34801561039d57600080fd5b506103a6610eb3565b60408051918252519081900360200190f35b3480156103c457600080fd5b506103a6600480360360208110156103db57600080fd5b50356001600160a01b0316610eb9565b3480156103f757600080fd5b506103a6610f79565b34801561040c57600080fd5b506103a6610f7f565b34801561042157600080fd5b506103736004803603606081101561043857600080fd5b506001600160a01b03813581169160208101359091169060400135610fe2565b34801561046457600080fd5b5061046d611054565b604080516001600160a01b039092168252519081900360200190f35b34801561049557600080fd5b5061049e611063565b6040805160ff9092168252519081900360200190f35b3480156104c057600080fd5b506103a6600480360360208110156104d757600080fd5b50356001600160a01b031661106c565b3480156104f357600080fd5b506103a6611124565b34801561050857600080fd5b506103a66004803603602081101561051f57600080fd5b50356001600160a01b0316611133565b34801561053b57600080fd5b506103a6611288565b61038f61128e565b34801561055857600080fd5b5061046d6112d0565b34801561056d57600080fd5b506103a66004803603602081101561058457600080fd5b50356112df565b34801561059757600080fd5b506103a661137a565b3480156105ac57600080fd5b506103a6600480360360208110156105c357600080fd5b50356001600160a01b0316611380565b3480156105df57600080fd5b506103a661139b565b3480156105f457600080fd5b506103a66004803603602081101561060b57600080fd5b5035611451565b34801561061e57600080fd5b506103a661145c565b34801561063357600080fd5b506102c5611462565b34801561064857600080fd5b506103a66004803603602081101561065f57600080fd5b50356001600160a01b03166114ba565b34801561067b57600080fd5b5061038f600480360360c081101561069257600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156106cd57600080fd5b8201836020820111156106df57600080fd5b8035906020019184600183028401116401000000008311171561070157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561075457600080fd5b82018360208201111561076657600080fd5b8035906020019184600183028401116401000000008311171561078857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506115179050565b3480156107da57600080fd5b506103a66116fe565b3480156107ef57600080fd5b506103736004803603604081101561080657600080fd5b506001600160a01b038135169060200135611a56565b34801561082857600080fd5b506103a6611ac7565b61038f6004803603604081101561084757600080fd5b506001600160a01b0381358116916020013516611acd565b34801561086b57600080fd5b506103a6611b1a565b34801561088057600080fd5b506103a66004803603606081101561089757600080fd5b506001600160a01b03813581169160208101359091169060400135611bb9565b3480156108c357600080fd5b506103a6600480360360208110156108da57600080fd5b50356001600160a01b0316611c2a565b3480156108f657600080fd5b506103a6611cb6565b34801561090b57600080fd5b506109326004803603602081101561092257600080fd5b50356001600160a01b0316611d72565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561096457600080fd5b506103a66004803603602081101561097b57600080fd5b5035611e07565b34801561098e57600080fd5b506103a6600480360360208110156109a557600080fd5b5035611e12565b3480156109b857600080fd5b506103a6600480360360408110156109cf57600080fd5b506001600160a01b0381358116916020013516611e1d565b61038f600480360360208110156109fd57600080fd5b50356001600160a01b0316611e48565b348015610a1957600080fd5b506103a6611e96565b348015610a2e57600080fd5b506103a660048036036020811015610a4557600080fd5b50356001600160a01b0316611f99565b348015610a6157600080fd5b5061046d611fd3565b348015610a7657600080fd5b5061046d611fe2565b348015610a8b57600080fd5b506103a6611ff6565b348015610aa057600080fd5b506103a660048036036020811015610ab757600080fd5b503561205a565b348015610aca57600080fd5b506103736120d8565b60008054819060ff16610b1a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610b2c6116fe565b90508015610b5757610b4a816010811115610b4357fe5b601e6120dd565b925060009150610b679050565b610b613385612143565b92509250505b6000805460ff191660011790559092909150565b81610b8557610d77565b606081516005016040519080825280601f01601f191660200182016040528015610bb6576020820181803883390190505b50905060005b8251811015610c0757828181518110610bd157fe5b602001015160f81c60f81b828281518110610be857fe5b60200101906001600160f81b031916908160001a905350600101610bbc565b8151600160fd1b90839083908110610c1b57fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610c4657fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610c7657fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610ca657fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610cd157fe5b60200101906001600160f81b031916908160001a905350818415610d735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d38578181015183820152602001610d20565b50505050905090810190601f168015610d655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b820191906000526020600020905b815481529060010190602001808311610de357829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b6000610e8034610ad3565b509050610eb0816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610b7b565b50565b60085481565b6000805460ff16610efe576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610f106116fe565b14610f5b576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610f64826114ba565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610f8c612515565b90925090506000826003811115610f9f57fe5b14610fdb5760405162461bcd60e51b815260040180806020018281038252603581526020018061495d6035913960400191505060405180910390fd5b9150505b90565b6000805460ff16611027576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561103d338686866125c4565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b600061107661464b565b6040518060200160405280611089611cb6565b90526001600160a01b0384166000908152600e60205260408120549192509081906110b5908490612852565b909250905060008260038111156110c857fe5b1461111a576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b925050505b919050565b600061112e6128a5565b905090565b60035460009061010090046001600160a01b03163314611160576111596001603f6120dd565b905061111f565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b1580156111a557600080fd5b505afa1580156111b9573d6000803e3d6000fd5b505050506040513d60208110156111cf57600080fd5b5051611222576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b6000611299346128d1565b509050610eb081604051806040016040528060128152602001711c995c185e509bdc9c9bddc819985a5b195960721b815250610b7b565b6005546001600160a01b031681565b6000805460ff16611324576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556113366116fe565b9050801561135c5761135481601081111561134d57fe5b60306120dd565b915050610f67565b61136583612953565b9150506000805460ff19166001179055919050565b60095481565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166113e0576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556113f26116fe565b1461143d576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610e6f82612a86565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b60008060006114c884612b07565b909250905060008260038111156114db57fe5b146112815760405162461bcd60e51b81526004018080602001828103825260378152602001806148686037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146115655760405162461bcd60e51b81526004018080602001828103825260248152602001806147a46024913960400191505060405180910390fd5b6009541580156115755750600a54155b6115b05760405162461bcd60e51b81526004018080602001828103825260238152602001806147c86023913960400191505060405180910390fd5b6007849055836115f15760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b60006115fc87611133565b90508015611651576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b611659612bbb565b600955670de0b6b3a7640000600a5561167186612bbf565b905080156116b05760405162461bcd60e51b815260040180806020018281038252602281526020018061481b6022913960400191505060405180910390fd5b83516116c390600190602087019061465e565b5082516116d790600290602086019061465e565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080611709612bbb565b6009549091508082141561172257600092505050610fdf565b600061172c6128a5565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561179a57600080fd5b505afa1580156117ae573d6000803e3d6000fd5b505050506040513d60208110156117c457600080fd5b5051905065048c27395000811115611823576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6000806118308989612d34565b9092509050600082600381111561184357fe5b14611895576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b61189d61464b565b6000806000806118bb60405180602001604052808a81525087612d57565b909750945060008760038111156118ce57fe5b14611900576118eb600960068960038111156118e657fe5b612dbf565b9e505050505050505050505050505050610fdf565b61190a858c612852565b9097509350600087600381111561191d57fe5b14611935576118eb600960018960038111156118e657fe5b61193f848c612e25565b9097509250600087600381111561195257fe5b1461196a576118eb600960048960038111156118e657fe5b6119856040518060200160405280600854815250858c612e4b565b9097509150600087600381111561199857fe5b146119b0576118eb600960058960038111156118e657fe5b6119bb858a8b612e4b565b909750905060008760038111156119ce57fe5b146119e6576118eb600960038960038111156118e657fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611a9b576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611ab1333386866125c4565b1490506000805460ff1916600117905592915050565b600a5481565b6000611ada833484612ea7565b509050611b1581604051806040016040528060168152602001751b1a5c5d5a59185d19509bdc9c9bddc819985a5b195960521b815250610b7b565b505050565b6006546000906001600160a01b031663b8168816611b366128a5565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611b8857600080fd5b505afa158015611b9c573d6000803e3d6000fd5b505050506040513d6020811015611bb257600080fd5b5051905090565b6000805460ff16611bfe576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611c1433858585612fd9565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611c5057611159600160456120dd565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611281565b6000805460ff16611cfb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611d0d6116fe565b14611d58576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611d60610f7f565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611d9d89612b07565b935090506000816003811115611daf57fe5b14611dcd5760095b975060009650869550859450611e009350505050565b611dd5612515565b925090506000816003811115611de757fe5b14611df3576009611db7565b5060009650919450925090505b9193509193565b6000610e6f826131b5565b6000610e6f82613234565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6000611e5482346132ae565b509050610d77816040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610b7b565b6004546000906001600160a01b031633141580611eb1575033155b15611ec957611ec2600160006120dd565b9050610fdf565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b600080611fa46116fe565b90508015611fca57611fc2816010811115611fbb57fe5b60406120dd565b91505061111f565b61128183612bbf565b6006546001600160a01b031681565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f240536120126128a5565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611b8857600080fd5b6000805460ff1661209f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556120b16116fe565b905080156120cf576113548160108111156120c857fe5b60466120dd565b61136583613359565b600181565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561210c57fe5b83605081111561211857fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561128157fe5b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b1580156121a457600080fd5b505af11580156121b8573d6000803e3d6000fd5b505050506040513d60208110156121ce57600080fd5b5051905080156121f2576121e56003601f83612dbf565b92506000915061250e9050565b6121fa612bbb565b6009541461220e576121e5600a60226120dd565b6122166146dc565b61221e612515565b604083018190526020830182600381111561223557fe5b600381111561224057fe5b905250600090508160200151600381111561225757fe5b146122815761227360096021836020015160038111156118e657fe5b93506000925061250e915050565b61228b8686613401565b60c08201819052604080516020810182529083015181526122ac919061349d565b60608301819052602083018260038111156122c357fe5b60038111156122ce57fe5b90525060009050816020015160038111156122e557fe5b14612337576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b612347600d548260600151612e25565b608083018190526020830182600381111561235e57fe5b600381111561236957fe5b905250600090508160200151600381111561238057fe5b146123bc5760405162461bcd60e51b81526004018080602001828103825260288152602001806149926028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516123e49190612e25565b60a08301819052602083018260038111156123fb57fe5b600381111561240657fe5b905250600090508160200151600381111561241d57fe5b146124595760405162461bcd60e51b815260040180806020018281038252602b81526020018061483d602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206148d98339815191529181900360200190a360c00151600093509150505b9250929050565b600d54600090819080612530575050600754600091506125c0565b600061253a6128a5565b9050600061254661464b565b600061255784600b54600c546134b4565b93509050600081600381111561256957fe5b1461257e579550600094506125c09350505050565b61258883866134f2565b92509050600081600381111561259a57fe5b146125af579550600094506125c09350505050565b50516000955093506125c092505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b15801561262957600080fd5b505af115801561263d573d6000803e3d6000fd5b505050506040513d602081101561265357600080fd5b5051905080156126725761266a6003604a83612dbf565b91505061284a565b836001600160a01b0316856001600160a01b031614156126985761266a6002604b6120dd565b60006001600160a01b0387811690871614156126b757506000196126df565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b6000806000806126ef8589612d34565b9094509250600084600381111561270257fe5b14612720576127136009604b6120dd565b965050505050505061284a565b6001600160a01b038a166000908152600e60205260409020546127439089612d34565b9094509150600084600381111561275657fe5b14612767576127136009604c6120dd565b6001600160a01b0389166000908152600e602052604090205461278a9089612e25565b9094509050600084600381111561279d57fe5b146127ae576127136009604d6120dd565b6001600160a01b03808b166000908152600e6020526040808220859055918b168152208190556000198514612806576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206148d98339815191528a6040518082815260200191505060405180910390a3600096505050505050505b949350505050565b600080600061285f61464b565b6128698686612d57565b9092509050600082600381111561287c57fe5b1461288d575091506000905061250e565b6000612898826135a2565b9350935050509250929050565b60008060006128b44734612d34565b909250905060008260038111156128c757fe5b14610fdb57600080fd5b60008054819060ff16612918576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561292a6116fe565b9050801561294857610b4a81601081111561294157fe5b60366120dd565b610b613333866135b1565b600354600090819061010090046001600160a01b0316331461297b57611fc2600160316120dd565b612983612bbb565b6009541461299757611fc2600a60336120dd565b826129a06128a5565b10156129b257611fc2600e60326120dd565b600c548311156129c857611fc2600260346120dd565b50600c5482810390811115612a0e5760405162461bcd60e51b81526004018080602001828103825260248152602001806149ee6024913960400191505060405180910390fd5b600c819055600354612a2e9061010090046001600160a01b0316846138ff565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611281565b6000805460ff16612acb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612add6116fe565b90508015612afb57611354816010811115612af457fe5b60276120dd565b61136533600085613935565b6001600160a01b038116600090815260106020526040812080548291829182918291612b3e575060009450849350612bb692505050565b612b4e8160000154600a54613dfc565b90945092506000846003811115612b6157fe5b14612b76575091935060009250612bb6915050565b612b84838260010154613e3b565b90945091506000846003811115612b9757fe5b14612bac575091935060009250612bb6915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b03163314612be757611fc2600160426120dd565b612bef612bbb565b60095414612c0357611fc2600a60416120dd565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612c5457600080fd5b505afa158015612c68573d6000803e3d6000fd5b505050506040513d6020811015612c7e57600080fd5b5051612cd1576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611281565b600080838311612d4b57506000905081830361250e565b5060039050600061250e565b6000612d6161464b565b600080612d72866000015186613dfc565b90925090506000826003811115612d8557fe5b14612da45750604080516020810190915260008152909250905061250e565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612dee57fe5b846050811115612dfa57fe5b604080519283526020830191909152818101859052519081900360600190a183601081111561284a57fe5b600080838301848110612e3d5760009250905061250e565b50600291506000905061250e565b6000806000612e5861464b565b612e628787612d57565b90925090506000826003811115612e7557fe5b14612e865750915060009050612e9f565b612e98612e92826135a2565b86612e25565b9350935050505b935093915050565b60008054819060ff16612eee576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612f006116fe565b90508015612f2b57612f1e816010811115612f1757fe5b600f6120dd565b925060009150612fc29050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612f6657600080fd5b505af1158015612f7a573d6000803e3d6000fd5b505050506040513d6020811015612f9057600080fd5b505190508015612fb057612f1e816010811115612fa957fe5b60106120dd565b612fbc33878787613e66565b92509250505b6000805460ff191660011790559094909350915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b15801561304657600080fd5b505af115801561305a573d6000803e3d6000fd5b505050506040513d602081101561307057600080fd5b5051905080156130875761266a6003601b83612dbf565b846001600160a01b0316846001600160a01b031614156130ad5761266a6006601c6120dd565b6001600160a01b0384166000908152600e6020526040812054819081906130d49087612d34565b909350915060008360038111156130e757fe5b1461310a576130ff6009601a8560038111156118e657fe5b94505050505061284a565b6001600160a01b0388166000908152600e602052604090205461312d9087612e25565b9093509050600083600381111561314057fe5b14613158576130ff600960198560038111156118e657fe5b6001600160a01b038088166000818152600e60209081526040808320879055938c168083529184902085905583518a8152935191936000805160206148d9833981519152929081900390910190a360009998505050505050505050565b6000805460ff166131fa576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561320c6116fe565b9050801561322a5761135481601081111561322357fe5b60086120dd565b6113653384614358565b6000805460ff16613279576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561328b6116fe565b905080156132a257611354816010811115612af457fe5b61136533846000613935565b60008054819060ff166132f5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556133076116fe565b905080156133325761332581601081111561331e57fe5b60356120dd565b9250600091506133439050565b61333d3386866135b1565b92509250505b6000805460ff1916600117905590939092509050565b60035460009061010090046001600160a01b0316331461337f57611159600160476120dd565b613387612bbb565b6009541461339b57611159600a60486120dd565b670de0b6b3a76400008211156133b757611159600260496120dd565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611281565b6000336001600160a01b03841614613452576040805162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b604482015290519081900360640190fd5b813414613497576040805162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b50919050565b60008060006134aa61464b565b61286986866145ec565b6000806000806134c48787612e25565b909250905060008260038111156134d757fe5b146134e85750915060009050612e9f565b612e988186612d34565b60006134fc61464b565b60008061351186670de0b6b3a7640000613dfc565b9092509050600082600381111561352457fe5b146135435750604080516020810190915260008152909250905061250e565b6000806135508388613e3b565b9092509050600082600381111561356357fe5b146135855750604080516020810190915260008152909450925061250e915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561361a57600080fd5b505af115801561362e573d6000803e3d6000fd5b505050506040513d602081101561364457600080fd5b5051905080156136685761365b6003603883612dbf565b925060009150612e9f9050565b613670612bbb565b600954146136845761365b600a60396120dd565b61368c61471a565b6001600160a01b03861660009081526010602052604090206001015460608201526136b686612b07565b60808301819052602083018260038111156136cd57fe5b60038111156136d857fe5b90525060009050816020015160038111156136ef57fe5b146137195761370b60096037836020015160038111156118e657fe5b935060009250612e9f915050565b600019851415613732576080810151604082015261373a565b604081018590525b613748878260400151613401565b60e08201819052608082015161375d91612d34565b60a083018190526020830182600381111561377457fe5b600381111561377f57fe5b905250600090508160200151600381111561379657fe5b146137d25760405162461bcd60e51b815260040180806020018281038252603a81526020018061489f603a913960400191505060405180910390fd5b6137e2600b548260e00151612d34565b60c08301819052602083018260038111156137f957fe5b600381111561380457fe5b905250600090508160200151600381111561381b57fe5b146138575760405162461bcd60e51b81526004018080602001828103825260318152602001806148f96031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611b15573d6000803e3d6000fd5b6000821580613942575081155b61397d5760405162461bcd60e51b81526004018080602001828103825260348152602001806149ba6034913960400191505060405180910390fd5b6139856146dc565b61398d612515565b60408301819052602083018260038111156139a457fe5b60038111156139af57fe5b90525060009050816020015160038111156139c657fe5b146139ea576139e26009602b836020015160038111156118e657fe5b915050611281565b8315613a6b576060810184905260408051602081018252908201518152613a119085612852565b6080830181905260208301826003811115613a2857fe5b6003811115613a3357fe5b9052506000905081602001516003811115613a4a57fe5b14613a66576139e260096029836020015160038111156118e657fe5b613ae4565b613a87836040518060200160405280846040015181525061349d565b6060830181905260208301826003811115613a9e57fe5b6003811115613aa957fe5b9052506000905081602001516003811115613ac057fe5b14613adc576139e26009602a836020015160038111156118e657fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613b4957600080fd5b505af1158015613b5d573d6000803e3d6000fd5b505050506040513d6020811015613b7357600080fd5b505190508015613b9357613b8a6003602883612dbf565b92505050611281565b613b9b612bbb565b60095414613baf57613b8a600a602c6120dd565b613bbf600d548360600151612d34565b60a0840181905260208401826003811115613bd657fe5b6003811115613be157fe5b9052506000905082602001516003811115613bf857fe5b14613c1457613b8a6009602e846020015160038111156118e657fe5b6001600160a01b0386166000908152600e60205260409020546060830151613c3c9190612d34565b60c0840181905260208401826003811115613c5357fe5b6003811115613c5e57fe5b9052506000905082602001516003811115613c7557fe5b14613c9157613b8a6009602d846020015160038111156118e657fe5b8160800151613c9e6128a5565b1015613cb057613b8a600e602f6120dd565b613cbe8683608001516138ff565b60a0820151600d5560c08201516001600160a01b0387166000818152600e60209081526040918290209390935560608501518151908152905130936000805160206148d9833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613dd157600080fd5b505af1158015613de5573d6000803e3d6000fd5b5060009250613df2915050565b9695505050505050565b60008083613e0f5750600090508061250e565b83830283858281613e1c57fe5b0414613e305750600291506000905061250e565b60009250905061250e565b60008082613e4f575060019050600061250e565b6000838581613e5a57fe5b04915091509250929050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b158015613ed757600080fd5b505af1158015613eeb573d6000803e3d6000fd5b505050506040513d6020811015613f0157600080fd5b505190508015613f2557613f186003601283612dbf565b92506000915061434f9050565b613f2d612bbb565b60095414613f4157613f18600a60166120dd565b613f49612bbb565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b158015613f8257600080fd5b505afa158015613f96573d6000803e3d6000fd5b505050506040513d6020811015613fac57600080fd5b505114613fbf57613f18600a60116120dd565b866001600160a01b0316866001600160a01b03161415613fe557613f18600660176120dd565b84613ff657613f18600760156120dd565b60001985141561400c57613f18600760146120dd565b60008061401a8989896135b1565b9092509050811561404a5761403b82601081111561403457fe5b60186120dd565b94506000935061434f92505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b1580156140a457600080fd5b505afa1580156140b8573d6000803e3d6000fd5b505050506040513d60408110156140ce57600080fd5b508051602090910151909250905081156141195760405162461bcd60e51b815260040180806020018281038252603381526020018061492a6033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561417057600080fd5b505afa158015614184573d6000803e3d6000fd5b505050506040513d602081101561419a57600080fd5b505110156141ef576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b0389163014156142155761420e308d8d85612fd9565b905061429f565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b15801561427057600080fd5b505af1158015614284573d6000803e3d6000fd5b505050506040513d602081101561429a57600080fd5b505190505b80156142e9576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a16000975092955050505050505b94509492505050565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156143b557600080fd5b505af11580156143c9573d6000803e3d6000fd5b505050506040513d60208110156143df57600080fd5b5051905080156143fe576143f66003600e83612dbf565b915050610e6f565b614406612bbb565b60095414614419576143f6600a806120dd565b826144226128a5565b1015614434576143f6600e60096120dd565b61443c614760565b61444585612b07565b602083018190528282600381111561445957fe5b600381111561446457fe5b905250600090508151600381111561447857fe5b1461449d5761449460096007836000015160038111156118e657fe5b92505050610e6f565b6144ab816020015185612e25565b60408301819052828260038111156144bf57fe5b60038111156144ca57fe5b90525060009050815160038111156144de57fe5b146144fa576144946009600c836000015160038111156118e657fe5b614506600b5485612e25565b606083018190528282600381111561451a57fe5b600381111561452557fe5b905250600090508151600381111561453957fe5b14614555576144946009600b836000015160038111156118e657fe5b61455f85856138ff565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b60006145f661464b565b60008061460b670de0b6b3a764000087613dfc565b9092509050600082600381111561461e57fe5b1461463d5750604080516020810190915260008152909250905061250e565b6128988186600001516134f2565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061469f57805160ff19168380011785556146cc565b828001600101855582156146cc579182015b828111156146cc5782518255916020019190600101906146b1565b506146d8929150614789565b5090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610fdf91905b808211156146d8576000815560010161478f56fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a7231582088d48522826705bac5d1e1a8b226e460d5ce8acce0973944a1449b378c58a09964736f6c634300051000326f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65640000000000000000000000000f390559f258eb8591c8e31cf0905e97cf36ace20000000000000000000000009d56800b8ae23b79fe9d4822aa3245fa527caf3f000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000080000000000000000000000001001009911e3fe1d5b45ff8efea7732c33a6c012000000000000000000000000000000000000000000000000000000000000000b48756e647265642045544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046845544800000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102725760003560e01c806395d89b411161014f578063c37f68e2116100c1578063f2b3abbd1161007a578063f2b3abbd14610a22578063f3fdb15a14610a55578063f851a44014610a6a578063f8f9da2814610a7f578063fca7820b14610a94578063fe9c44ae14610abe57610272565b8063c37f68e2146108ff578063c5ebeaec14610958578063db006a7514610982578063dd62ed3e146109ac578063e5974619146109e7578063e9c714f214610a0d57610272565b8063aa5af0fd11610113578063aa5af0fd1461081c578063aae40a2a14610831578063ae9d70b01461085f578063b2a02ff114610874578063b71d1a0c146108b7578063bd6d894d146108ea57610272565b806395d89b411461062757806395dd91931461063c57806399d8c1b41461066f578063a6afed95146107ce578063a9059cbb146107e357610272565b80633b1d21a2116101e8578063601a0bf1116101ac578063601a0bf1146105615780636c540baf1461058b57806370a08231146105a057806373acee98146105d3578063852a12e3146105e85780638f840ddd1461061257610272565b80633b1d21a2146104e75780634576b5db146104fc57806347bd37181461052f5780634e4d9fea146105445780635fe3b5671461054c57610272565b806318160ddd1161023a57806318160ddd146103eb578063182df0f51461040057806323b872dd146104155780632678224714610458578063313ce567146104895780633af9e669146104b457610272565b806306fdde03146102b0578063095ea7b31461033a5780631249c58b14610387578063173b99041461039157806317bfdfbc146103b8575b600061027d34610ad3565b5090506102ad816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610b7b565b50005b3480156102bc57600080fd5b506102c5610d7b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ff5781810151838201526020016102e7565b50505050905090810190601f16801561032c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034657600080fd5b506103736004803603604081101561035d57600080fd5b506001600160a01b038135169060200135610e08565b604080519115158252519081900360200190f35b61038f610e75565b005b34801561039d57600080fd5b506103a6610eb3565b60408051918252519081900360200190f35b3480156103c457600080fd5b506103a6600480360360208110156103db57600080fd5b50356001600160a01b0316610eb9565b3480156103f757600080fd5b506103a6610f79565b34801561040c57600080fd5b506103a6610f7f565b34801561042157600080fd5b506103736004803603606081101561043857600080fd5b506001600160a01b03813581169160208101359091169060400135610fe2565b34801561046457600080fd5b5061046d611054565b604080516001600160a01b039092168252519081900360200190f35b34801561049557600080fd5b5061049e611063565b6040805160ff9092168252519081900360200190f35b3480156104c057600080fd5b506103a6600480360360208110156104d757600080fd5b50356001600160a01b031661106c565b3480156104f357600080fd5b506103a6611124565b34801561050857600080fd5b506103a66004803603602081101561051f57600080fd5b50356001600160a01b0316611133565b34801561053b57600080fd5b506103a6611288565b61038f61128e565b34801561055857600080fd5b5061046d6112d0565b34801561056d57600080fd5b506103a66004803603602081101561058457600080fd5b50356112df565b34801561059757600080fd5b506103a661137a565b3480156105ac57600080fd5b506103a6600480360360208110156105c357600080fd5b50356001600160a01b0316611380565b3480156105df57600080fd5b506103a661139b565b3480156105f457600080fd5b506103a66004803603602081101561060b57600080fd5b5035611451565b34801561061e57600080fd5b506103a661145c565b34801561063357600080fd5b506102c5611462565b34801561064857600080fd5b506103a66004803603602081101561065f57600080fd5b50356001600160a01b03166114ba565b34801561067b57600080fd5b5061038f600480360360c081101561069257600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156106cd57600080fd5b8201836020820111156106df57600080fd5b8035906020019184600183028401116401000000008311171561070157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561075457600080fd5b82018360208201111561076657600080fd5b8035906020019184600183028401116401000000008311171561078857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506115179050565b3480156107da57600080fd5b506103a66116fe565b3480156107ef57600080fd5b506103736004803603604081101561080657600080fd5b506001600160a01b038135169060200135611a56565b34801561082857600080fd5b506103a6611ac7565b61038f6004803603604081101561084757600080fd5b506001600160a01b0381358116916020013516611acd565b34801561086b57600080fd5b506103a6611b1a565b34801561088057600080fd5b506103a66004803603606081101561089757600080fd5b506001600160a01b03813581169160208101359091169060400135611bb9565b3480156108c357600080fd5b506103a6600480360360208110156108da57600080fd5b50356001600160a01b0316611c2a565b3480156108f657600080fd5b506103a6611cb6565b34801561090b57600080fd5b506109326004803603602081101561092257600080fd5b50356001600160a01b0316611d72565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561096457600080fd5b506103a66004803603602081101561097b57600080fd5b5035611e07565b34801561098e57600080fd5b506103a6600480360360208110156109a557600080fd5b5035611e12565b3480156109b857600080fd5b506103a6600480360360408110156109cf57600080fd5b506001600160a01b0381358116916020013516611e1d565b61038f600480360360208110156109fd57600080fd5b50356001600160a01b0316611e48565b348015610a1957600080fd5b506103a6611e96565b348015610a2e57600080fd5b506103a660048036036020811015610a4557600080fd5b50356001600160a01b0316611f99565b348015610a6157600080fd5b5061046d611fd3565b348015610a7657600080fd5b5061046d611fe2565b348015610a8b57600080fd5b506103a6611ff6565b348015610aa057600080fd5b506103a660048036036020811015610ab757600080fd5b503561205a565b348015610aca57600080fd5b506103736120d8565b60008054819060ff16610b1a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610b2c6116fe565b90508015610b5757610b4a816010811115610b4357fe5b601e6120dd565b925060009150610b679050565b610b613385612143565b92509250505b6000805460ff191660011790559092909150565b81610b8557610d77565b606081516005016040519080825280601f01601f191660200182016040528015610bb6576020820181803883390190505b50905060005b8251811015610c0757828181518110610bd157fe5b602001015160f81c60f81b828281518110610be857fe5b60200101906001600160f81b031916908160001a905350600101610bbc565b8151600160fd1b90839083908110610c1b57fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610c4657fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610c7657fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610ca657fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610cd157fe5b60200101906001600160f81b031916908160001a905350818415610d735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d38578181015183820152602001610d20565b50505050905090810190601f168015610d655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b820191906000526020600020905b815481529060010190602001808311610de357829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b6000610e8034610ad3565b509050610eb0816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610b7b565b50565b60085481565b6000805460ff16610efe576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610f106116fe565b14610f5b576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610f64826114ba565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610f8c612515565b90925090506000826003811115610f9f57fe5b14610fdb5760405162461bcd60e51b815260040180806020018281038252603581526020018061495d6035913960400191505060405180910390fd5b9150505b90565b6000805460ff16611027576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561103d338686866125c4565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b600061107661464b565b6040518060200160405280611089611cb6565b90526001600160a01b0384166000908152600e60205260408120549192509081906110b5908490612852565b909250905060008260038111156110c857fe5b1461111a576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b925050505b919050565b600061112e6128a5565b905090565b60035460009061010090046001600160a01b03163314611160576111596001603f6120dd565b905061111f565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b1580156111a557600080fd5b505afa1580156111b9573d6000803e3d6000fd5b505050506040513d60208110156111cf57600080fd5b5051611222576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b6000611299346128d1565b509050610eb081604051806040016040528060128152602001711c995c185e509bdc9c9bddc819985a5b195960721b815250610b7b565b6005546001600160a01b031681565b6000805460ff16611324576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556113366116fe565b9050801561135c5761135481601081111561134d57fe5b60306120dd565b915050610f67565b61136583612953565b9150506000805460ff19166001179055919050565b60095481565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166113e0576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556113f26116fe565b1461143d576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610e6f82612a86565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b60008060006114c884612b07565b909250905060008260038111156114db57fe5b146112815760405162461bcd60e51b81526004018080602001828103825260378152602001806148686037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146115655760405162461bcd60e51b81526004018080602001828103825260248152602001806147a46024913960400191505060405180910390fd5b6009541580156115755750600a54155b6115b05760405162461bcd60e51b81526004018080602001828103825260238152602001806147c86023913960400191505060405180910390fd5b6007849055836115f15760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b60006115fc87611133565b90508015611651576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b611659612bbb565b600955670de0b6b3a7640000600a5561167186612bbf565b905080156116b05760405162461bcd60e51b815260040180806020018281038252602281526020018061481b6022913960400191505060405180910390fd5b83516116c390600190602087019061465e565b5082516116d790600290602086019061465e565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080611709612bbb565b6009549091508082141561172257600092505050610fdf565b600061172c6128a5565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561179a57600080fd5b505afa1580156117ae573d6000803e3d6000fd5b505050506040513d60208110156117c457600080fd5b5051905065048c27395000811115611823576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6000806118308989612d34565b9092509050600082600381111561184357fe5b14611895576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b61189d61464b565b6000806000806118bb60405180602001604052808a81525087612d57565b909750945060008760038111156118ce57fe5b14611900576118eb600960068960038111156118e657fe5b612dbf565b9e505050505050505050505050505050610fdf565b61190a858c612852565b9097509350600087600381111561191d57fe5b14611935576118eb600960018960038111156118e657fe5b61193f848c612e25565b9097509250600087600381111561195257fe5b1461196a576118eb600960048960038111156118e657fe5b6119856040518060200160405280600854815250858c612e4b565b9097509150600087600381111561199857fe5b146119b0576118eb600960058960038111156118e657fe5b6119bb858a8b612e4b565b909750905060008760038111156119ce57fe5b146119e6576118eb600960038960038111156118e657fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611a9b576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611ab1333386866125c4565b1490506000805460ff1916600117905592915050565b600a5481565b6000611ada833484612ea7565b509050611b1581604051806040016040528060168152602001751b1a5c5d5a59185d19509bdc9c9bddc819985a5b195960521b815250610b7b565b505050565b6006546000906001600160a01b031663b8168816611b366128a5565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611b8857600080fd5b505afa158015611b9c573d6000803e3d6000fd5b505050506040513d6020811015611bb257600080fd5b5051905090565b6000805460ff16611bfe576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611c1433858585612fd9565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611c5057611159600160456120dd565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611281565b6000805460ff16611cfb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611d0d6116fe565b14611d58576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611d60610f7f565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611d9d89612b07565b935090506000816003811115611daf57fe5b14611dcd5760095b975060009650869550859450611e009350505050565b611dd5612515565b925090506000816003811115611de757fe5b14611df3576009611db7565b5060009650919450925090505b9193509193565b6000610e6f826131b5565b6000610e6f82613234565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6000611e5482346132ae565b509050610d77816040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610b7b565b6004546000906001600160a01b031633141580611eb1575033155b15611ec957611ec2600160006120dd565b9050610fdf565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b600080611fa46116fe565b90508015611fca57611fc2816010811115611fbb57fe5b60406120dd565b91505061111f565b61128183612bbf565b6006546001600160a01b031681565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f240536120126128a5565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611b8857600080fd5b6000805460ff1661209f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556120b16116fe565b905080156120cf576113548160108111156120c857fe5b60466120dd565b61136583613359565b600181565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561210c57fe5b83605081111561211857fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561128157fe5b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b1580156121a457600080fd5b505af11580156121b8573d6000803e3d6000fd5b505050506040513d60208110156121ce57600080fd5b5051905080156121f2576121e56003601f83612dbf565b92506000915061250e9050565b6121fa612bbb565b6009541461220e576121e5600a60226120dd565b6122166146dc565b61221e612515565b604083018190526020830182600381111561223557fe5b600381111561224057fe5b905250600090508160200151600381111561225757fe5b146122815761227360096021836020015160038111156118e657fe5b93506000925061250e915050565b61228b8686613401565b60c08201819052604080516020810182529083015181526122ac919061349d565b60608301819052602083018260038111156122c357fe5b60038111156122ce57fe5b90525060009050816020015160038111156122e557fe5b14612337576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b612347600d548260600151612e25565b608083018190526020830182600381111561235e57fe5b600381111561236957fe5b905250600090508160200151600381111561238057fe5b146123bc5760405162461bcd60e51b81526004018080602001828103825260288152602001806149926028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516123e49190612e25565b60a08301819052602083018260038111156123fb57fe5b600381111561240657fe5b905250600090508160200151600381111561241d57fe5b146124595760405162461bcd60e51b815260040180806020018281038252602b81526020018061483d602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206148d98339815191529181900360200190a360c00151600093509150505b9250929050565b600d54600090819080612530575050600754600091506125c0565b600061253a6128a5565b9050600061254661464b565b600061255784600b54600c546134b4565b93509050600081600381111561256957fe5b1461257e579550600094506125c09350505050565b61258883866134f2565b92509050600081600381111561259a57fe5b146125af579550600094506125c09350505050565b50516000955093506125c092505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b15801561262957600080fd5b505af115801561263d573d6000803e3d6000fd5b505050506040513d602081101561265357600080fd5b5051905080156126725761266a6003604a83612dbf565b91505061284a565b836001600160a01b0316856001600160a01b031614156126985761266a6002604b6120dd565b60006001600160a01b0387811690871614156126b757506000196126df565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b6000806000806126ef8589612d34565b9094509250600084600381111561270257fe5b14612720576127136009604b6120dd565b965050505050505061284a565b6001600160a01b038a166000908152600e60205260409020546127439089612d34565b9094509150600084600381111561275657fe5b14612767576127136009604c6120dd565b6001600160a01b0389166000908152600e602052604090205461278a9089612e25565b9094509050600084600381111561279d57fe5b146127ae576127136009604d6120dd565b6001600160a01b03808b166000908152600e6020526040808220859055918b168152208190556000198514612806576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206148d98339815191528a6040518082815260200191505060405180910390a3600096505050505050505b949350505050565b600080600061285f61464b565b6128698686612d57565b9092509050600082600381111561287c57fe5b1461288d575091506000905061250e565b6000612898826135a2565b9350935050509250929050565b60008060006128b44734612d34565b909250905060008260038111156128c757fe5b14610fdb57600080fd5b60008054819060ff16612918576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561292a6116fe565b9050801561294857610b4a81601081111561294157fe5b60366120dd565b610b613333866135b1565b600354600090819061010090046001600160a01b0316331461297b57611fc2600160316120dd565b612983612bbb565b6009541461299757611fc2600a60336120dd565b826129a06128a5565b10156129b257611fc2600e60326120dd565b600c548311156129c857611fc2600260346120dd565b50600c5482810390811115612a0e5760405162461bcd60e51b81526004018080602001828103825260248152602001806149ee6024913960400191505060405180910390fd5b600c819055600354612a2e9061010090046001600160a01b0316846138ff565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611281565b6000805460ff16612acb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612add6116fe565b90508015612afb57611354816010811115612af457fe5b60276120dd565b61136533600085613935565b6001600160a01b038116600090815260106020526040812080548291829182918291612b3e575060009450849350612bb692505050565b612b4e8160000154600a54613dfc565b90945092506000846003811115612b6157fe5b14612b76575091935060009250612bb6915050565b612b84838260010154613e3b565b90945091506000846003811115612b9757fe5b14612bac575091935060009250612bb6915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b03163314612be757611fc2600160426120dd565b612bef612bbb565b60095414612c0357611fc2600a60416120dd565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612c5457600080fd5b505afa158015612c68573d6000803e3d6000fd5b505050506040513d6020811015612c7e57600080fd5b5051612cd1576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611281565b600080838311612d4b57506000905081830361250e565b5060039050600061250e565b6000612d6161464b565b600080612d72866000015186613dfc565b90925090506000826003811115612d8557fe5b14612da45750604080516020810190915260008152909250905061250e565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612dee57fe5b846050811115612dfa57fe5b604080519283526020830191909152818101859052519081900360600190a183601081111561284a57fe5b600080838301848110612e3d5760009250905061250e565b50600291506000905061250e565b6000806000612e5861464b565b612e628787612d57565b90925090506000826003811115612e7557fe5b14612e865750915060009050612e9f565b612e98612e92826135a2565b86612e25565b9350935050505b935093915050565b60008054819060ff16612eee576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612f006116fe565b90508015612f2b57612f1e816010811115612f1757fe5b600f6120dd565b925060009150612fc29050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612f6657600080fd5b505af1158015612f7a573d6000803e3d6000fd5b505050506040513d6020811015612f9057600080fd5b505190508015612fb057612f1e816010811115612fa957fe5b60106120dd565b612fbc33878787613e66565b92509250505b6000805460ff191660011790559094909350915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b15801561304657600080fd5b505af115801561305a573d6000803e3d6000fd5b505050506040513d602081101561307057600080fd5b5051905080156130875761266a6003601b83612dbf565b846001600160a01b0316846001600160a01b031614156130ad5761266a6006601c6120dd565b6001600160a01b0384166000908152600e6020526040812054819081906130d49087612d34565b909350915060008360038111156130e757fe5b1461310a576130ff6009601a8560038111156118e657fe5b94505050505061284a565b6001600160a01b0388166000908152600e602052604090205461312d9087612e25565b9093509050600083600381111561314057fe5b14613158576130ff600960198560038111156118e657fe5b6001600160a01b038088166000818152600e60209081526040808320879055938c168083529184902085905583518a8152935191936000805160206148d9833981519152929081900390910190a360009998505050505050505050565b6000805460ff166131fa576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561320c6116fe565b9050801561322a5761135481601081111561322357fe5b60086120dd565b6113653384614358565b6000805460ff16613279576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561328b6116fe565b905080156132a257611354816010811115612af457fe5b61136533846000613935565b60008054819060ff166132f5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556133076116fe565b905080156133325761332581601081111561331e57fe5b60356120dd565b9250600091506133439050565b61333d3386866135b1565b92509250505b6000805460ff1916600117905590939092509050565b60035460009061010090046001600160a01b0316331461337f57611159600160476120dd565b613387612bbb565b6009541461339b57611159600a60486120dd565b670de0b6b3a76400008211156133b757611159600260496120dd565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611281565b6000336001600160a01b03841614613452576040805162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b604482015290519081900360640190fd5b813414613497576040805162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b50919050565b60008060006134aa61464b565b61286986866145ec565b6000806000806134c48787612e25565b909250905060008260038111156134d757fe5b146134e85750915060009050612e9f565b612e988186612d34565b60006134fc61464b565b60008061351186670de0b6b3a7640000613dfc565b9092509050600082600381111561352457fe5b146135435750604080516020810190915260008152909250905061250e565b6000806135508388613e3b565b9092509050600082600381111561356357fe5b146135855750604080516020810190915260008152909450925061250e915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561361a57600080fd5b505af115801561362e573d6000803e3d6000fd5b505050506040513d602081101561364457600080fd5b5051905080156136685761365b6003603883612dbf565b925060009150612e9f9050565b613670612bbb565b600954146136845761365b600a60396120dd565b61368c61471a565b6001600160a01b03861660009081526010602052604090206001015460608201526136b686612b07565b60808301819052602083018260038111156136cd57fe5b60038111156136d857fe5b90525060009050816020015160038111156136ef57fe5b146137195761370b60096037836020015160038111156118e657fe5b935060009250612e9f915050565b600019851415613732576080810151604082015261373a565b604081018590525b613748878260400151613401565b60e08201819052608082015161375d91612d34565b60a083018190526020830182600381111561377457fe5b600381111561377f57fe5b905250600090508160200151600381111561379657fe5b146137d25760405162461bcd60e51b815260040180806020018281038252603a81526020018061489f603a913960400191505060405180910390fd5b6137e2600b548260e00151612d34565b60c08301819052602083018260038111156137f957fe5b600381111561380457fe5b905250600090508160200151600381111561381b57fe5b146138575760405162461bcd60e51b81526004018080602001828103825260318152602001806148f96031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611b15573d6000803e3d6000fd5b6000821580613942575081155b61397d5760405162461bcd60e51b81526004018080602001828103825260348152602001806149ba6034913960400191505060405180910390fd5b6139856146dc565b61398d612515565b60408301819052602083018260038111156139a457fe5b60038111156139af57fe5b90525060009050816020015160038111156139c657fe5b146139ea576139e26009602b836020015160038111156118e657fe5b915050611281565b8315613a6b576060810184905260408051602081018252908201518152613a119085612852565b6080830181905260208301826003811115613a2857fe5b6003811115613a3357fe5b9052506000905081602001516003811115613a4a57fe5b14613a66576139e260096029836020015160038111156118e657fe5b613ae4565b613a87836040518060200160405280846040015181525061349d565b6060830181905260208301826003811115613a9e57fe5b6003811115613aa957fe5b9052506000905081602001516003811115613ac057fe5b14613adc576139e26009602a836020015160038111156118e657fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613b4957600080fd5b505af1158015613b5d573d6000803e3d6000fd5b505050506040513d6020811015613b7357600080fd5b505190508015613b9357613b8a6003602883612dbf565b92505050611281565b613b9b612bbb565b60095414613baf57613b8a600a602c6120dd565b613bbf600d548360600151612d34565b60a0840181905260208401826003811115613bd657fe5b6003811115613be157fe5b9052506000905082602001516003811115613bf857fe5b14613c1457613b8a6009602e846020015160038111156118e657fe5b6001600160a01b0386166000908152600e60205260409020546060830151613c3c9190612d34565b60c0840181905260208401826003811115613c5357fe5b6003811115613c5e57fe5b9052506000905082602001516003811115613c7557fe5b14613c9157613b8a6009602d846020015160038111156118e657fe5b8160800151613c9e6128a5565b1015613cb057613b8a600e602f6120dd565b613cbe8683608001516138ff565b60a0820151600d5560c08201516001600160a01b0387166000818152600e60209081526040918290209390935560608501518151908152905130936000805160206148d9833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613dd157600080fd5b505af1158015613de5573d6000803e3d6000fd5b5060009250613df2915050565b9695505050505050565b60008083613e0f5750600090508061250e565b83830283858281613e1c57fe5b0414613e305750600291506000905061250e565b60009250905061250e565b60008082613e4f575060019050600061250e565b6000838581613e5a57fe5b04915091509250929050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b158015613ed757600080fd5b505af1158015613eeb573d6000803e3d6000fd5b505050506040513d6020811015613f0157600080fd5b505190508015613f2557613f186003601283612dbf565b92506000915061434f9050565b613f2d612bbb565b60095414613f4157613f18600a60166120dd565b613f49612bbb565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b158015613f8257600080fd5b505afa158015613f96573d6000803e3d6000fd5b505050506040513d6020811015613fac57600080fd5b505114613fbf57613f18600a60116120dd565b866001600160a01b0316866001600160a01b03161415613fe557613f18600660176120dd565b84613ff657613f18600760156120dd565b60001985141561400c57613f18600760146120dd565b60008061401a8989896135b1565b9092509050811561404a5761403b82601081111561403457fe5b60186120dd565b94506000935061434f92505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b1580156140a457600080fd5b505afa1580156140b8573d6000803e3d6000fd5b505050506040513d60408110156140ce57600080fd5b508051602090910151909250905081156141195760405162461bcd60e51b815260040180806020018281038252603381526020018061492a6033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561417057600080fd5b505afa158015614184573d6000803e3d6000fd5b505050506040513d602081101561419a57600080fd5b505110156141ef576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b0389163014156142155761420e308d8d85612fd9565b905061429f565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b15801561427057600080fd5b505af1158015614284573d6000803e3d6000fd5b505050506040513d602081101561429a57600080fd5b505190505b80156142e9576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a16000975092955050505050505b94509492505050565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156143b557600080fd5b505af11580156143c9573d6000803e3d6000fd5b505050506040513d60208110156143df57600080fd5b5051905080156143fe576143f66003600e83612dbf565b915050610e6f565b614406612bbb565b60095414614419576143f6600a806120dd565b826144226128a5565b1015614434576143f6600e60096120dd565b61443c614760565b61444585612b07565b602083018190528282600381111561445957fe5b600381111561446457fe5b905250600090508151600381111561447857fe5b1461449d5761449460096007836000015160038111156118e657fe5b92505050610e6f565b6144ab816020015185612e25565b60408301819052828260038111156144bf57fe5b60038111156144ca57fe5b90525060009050815160038111156144de57fe5b146144fa576144946009600c836000015160038111156118e657fe5b614506600b5485612e25565b606083018190528282600381111561451a57fe5b600381111561452557fe5b905250600090508151600381111561453957fe5b14614555576144946009600b836000015160038111156118e657fe5b61455f85856138ff565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b60006145f661464b565b60008061460b670de0b6b3a764000087613dfc565b9092509050600082600381111561461e57fe5b1461463d5750604080516020810190915260008152909250905061250e565b6128988186600001516134f2565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061469f57805160ff19168380011785556146cc565b828001600101855582156146cc579182015b828111156146cc5782518255916020019190600101906146b1565b506146d8929150614789565b5090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610fdf91905b808211156146d8576000815560010161478f56fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a7231582088d48522826705bac5d1e1a8b226e460d5ce8acce0973944a1449b378c58a09964736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000f390559f258eb8591c8e31cf0905e97cf36ace20000000000000000000000009d56800b8ae23b79fe9d4822aa3245fa527caf3f000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000080000000000000000000000001001009911e3fe1d5b45ff8efea7732c33a6c012000000000000000000000000000000000000000000000000000000000000000b48756e647265642045544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046845544800000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : comptroller_ (address): 0x0F390559F258eB8591C8e31Cf0905E97cf36ACE2
Arg [1] : interestRateModel_ (address): 0x9d56800b8Ae23b79FE9d4822Aa3245fA527CAF3f
Arg [2] : initialExchangeRateMantissa_ (uint256): 200000000000000000000000000
Arg [3] : name_ (string): Hundred ETH
Arg [4] : symbol_ (string): hETH
Arg [5] : decimals_ (uint8): 8
Arg [6] : admin_ (address): 0x1001009911e3FE1d5B45FF8Efea7732C33a6C012
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000f390559f258eb8591c8e31cf0905e97cf36ace2
Arg [1] : 0000000000000000000000009d56800b8ae23b79fe9d4822aa3245fa527caf3f
Arg [2] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 0000000000000000000000001001009911e3fe1d5b45ff8efea7732c33a6c012
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 48756e6472656420455448000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 6845544800000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
151:6002:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4230:8;4243:23;4256:9;4243:12;:23::i;:::-;4229:37;;;4276:34;4291:3;4276:34;;;;;;;;;;;;;-1:-1:-1;;;4276:34:0;;;:14;:34::i;:::-;4190:127;151:6002;331:18:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;331:18:2;;;:::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;331:18:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6353:232:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6353:232:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6353:232:1;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1475:131:0;;;:::i;:::-;;1583:33:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1583:33:2;;;:::i;:::-;;;;;;;;;;;;;;;;10499:221:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10499:221:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10499:221:1;-1:-1:-1;;;;;10499:221:1;;:::i;2203:23:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2203:23:2;;;:::i;13277:257:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13277:257:1;;;:::i;5700:193::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5700:193:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5700:193:1;;;;;;;;;;;;;;;;;:::i;1027:35:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1027:35:2;;;:::i;:::-;;;;-1:-1:-1;;;;;1027:35:2;;;;;;;;;;;;;;517:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;517:21:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7589:349:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7589:349:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7589:349:1;-1:-1:-1;;;;;7589:349:1;;:::i;15111:86::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15111:86:1;;;:::i;52529:718::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52529:718:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52529:718:1;-1:-1:-1;;;;;52529:718:1;;:::i;1977:24:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1977:24:2;;;:::i;3016:152:0:-;;;:::i;1148:39:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1148:39:2;;;:::i;58356:563:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58356:563:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;58356:563:1;;:::i;1701:30:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1701:30:2;;;:::i;7231:110:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7231:110:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7231:110:1;-1:-1:-1;;;;;7231:110:1;;:::i;10026:189::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10026:189:1;;;:::i;2408:131:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2408:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2408:131:0;;:::i;2102:25:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2102:25:2;;;:::i;422:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;422:20:2;;;:::i;10922:283:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10922:283:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10922:283:1;-1:-1:-1;;;;;10922:283:1;;:::i;829:1498::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;829:1498:1;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;829:1498:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;829:1498:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;829:1498:1;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;829:1498:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;829:1498:1;;;;;;;;-1:-1:-1;829:1498:1;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;829:1498:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;829:1498:1;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;829:1498:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;829:1498:1;;-1:-1:-1;;;829:1498:1;;;;;-1:-1:-1;829:1498:1;;-1:-1:-1;829:1498:1:i;15438:3774::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15438:3774:1;;;:::i;5219:183::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5219:183:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5219:183:1;;;;;;;;:::i;1847:23:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1847:23:2;;;:::i;3891:233:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3891:233:0;;;;;;;;;;:::i;9704:182:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9704:182:1;;;:::i;47271:192::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47271:192:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;47271:192:1;;;;;;;;;;;;;;;;;:::i;50687:631::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50687:631:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50687:631:1;-1:-1:-1;;;;;50687:631:1;;:::i;12839:195::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12839:195:1;;;:::i;8276:685::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8276:685:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8276:685:1;-1:-1:-1;;;;;8276:685:1;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800:111:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2800:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2800:111:0;;:::i;1949:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1949:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1949:111:0;;:::i;6907:141:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6907:141:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6907:141:1;;;;;;;;;;:::i;3352:196:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3352:196:0;-1:-1:-1;;;;;3352:196:0;;:::i;51589:722:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51589:722:1;;;:::i;61255:625::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;61255:625:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;61255:625:1;-1:-1:-1;;;;;61255:625:1;;:::i;1284:42:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1284:42:2;;;:::i;921:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;921:28:2;;;:::i;9375:159:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9375:159:1;;;:::i;53543:599::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53543:599:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53543:599:1;;:::i;3197:36:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3197:36:2;;;:::i;19602:539:1:-;19672:4;64709:11;;19672:4;;64709:11;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;19707:16;:14;:16::i;:::-;19694:29;-1:-1:-1;19737:29:1;;19733:249;;19908:59;19919:5;19913:12;;;;;;;;19927:39;19908:4;:59::i;:::-;19900:71;-1:-1:-1;19969:1:1;;-1:-1:-1;19900:71:1;;-1:-1:-1;19900:71:1;19733:249;20101:33;20111:10;20123;20101:9;:33::i;:::-;20094:40;;;;;64774:1;64785:11;:18;;-1:-1:-1;;64785:18:1;64799:4;64785:18;;;19602:539;;;;-1:-1:-1;19602:539:1:o;5458:693:0:-;5547:31;5543:68;;5594:7;;5543:68;5621:24;5664:7;5658:21;5682:1;5658:25;5648:36;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;5648:36:0;87:34:-1;135:17;;-1:-1;5648:36:0;-1:-1:-1;5621:63:0;-1:-1:-1;5694:6:0;5711:103;5733:7;5727:21;5723:1;:25;5711:103;;;5792:7;5801:1;5786:17;;;;;;;;;;;;;;;;5769:11;5781:1;5769:14;;;;;;;;;;;:34;-1:-1:-1;;;;;5769:34:0;;;;;;;;-1:-1:-1;5750:3:0;;5711:103;;;5824:16;;-1:-1:-1;;;5843:15:0;5824:11;;5836:1;;5824:16;;;;;;;;;:34;-1:-1:-1;;;;;5824:34:0;;;;;;;;;5898:2;5887:15;;5868:11;5880:1;5882;5880:3;5868:16;;;;;;;;;;;:34;-1:-1:-1;;;;;5868:34:0;;;;;;;;-1:-1:-1;5959:2:0;5949:7;:12;5942:2;:21;5931:34;;5912:11;5924:1;5926;5924:3;5912:16;;;;;;;;;;;:53;-1:-1:-1;;;;;5912:53:0;;;;;;;;-1:-1:-1;6022:2:0;6012:7;:12;6005:2;:21;5994:34;;5975:11;5987:1;5989;5987:3;5975:16;;;;;;;;;;;:53;-1:-1:-1;;;;;5975:53:0;;;;;;;;;6068:2;6057:15;;6038:11;6050:1;6052;6050:3;6038:16;;;;;;;;;;;:34;-1:-1:-1;;;;;6038:34:0;;;;;;;;-1:-1:-1;6131:11:0;6091:31;;6083:61;;;;-1:-1:-1;;;6083:61: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;6083:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5458:693;;;;;:::o;331:18:2:-;;;;;;;;;;;;;;;-1:-1:-1;;331:18:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6353:232:1:-;6451:10;6421:4;6471:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;6471:32:1;;;;;;;;;;;:41;;;6527:30;;;;;;;6421:4;;6451:10;6471:32;;6451:10;;6527:30;;;;;;;;;;;6574:4;6567:11;;;6353:232;;;;;:::o;1475:131:0:-;1519:8;1532:23;1545:9;1532:12;:23::i;:::-;1518:37;;;1565:34;1580:3;1565:34;;;;;;;;;;;;;-1:-1:-1;;;1565:34:0;;;:14;:34::i;:::-;1475:131;:::o;1583:33:2:-;;;;:::o;10499:221:1:-;10577:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;10601:16;:14;:16::i;:::-;:40;10593:75;;;;;-1:-1:-1;;;10593:75:1;;;;;;;;;;;;-1:-1:-1;;;10593:75:1;;;;;;;;;;;;;;;10685:28;10705:7;10685:19;:28::i;:::-;10678:35;;64774:1;64785:11;:18;;-1:-1:-1;;64785:18:1;64799:4;64785:18;;;10499:221;;-1:-1:-1;10499:221:1:o;2203:23:2:-;;;;:::o;13277:257:1:-;13328:4;13345:13;13360:11;13375:28;:26;:28::i;:::-;13344:59;;-1:-1:-1;13344:59:1;-1:-1:-1;13428:18:1;13421:3;:25;;;;;;;;;13413:91;;;;-1:-1:-1;;;13413:91:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13521:6;-1:-1:-1;;13277:257:1;;:::o;5700:193::-;5795:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;5818:44;5833:10;5845:3;5850;5855:6;5818:14;:44::i;:::-;:68;5811:75;;64785:11;:18;;-1:-1:-1;;64785:18:1;64799:4;64785:18;;;5700:193;;-1:-1:-1;;;5700:193:1:o;1027:35:2:-;;;-1:-1:-1;;;;;1027:35:2;;:::o;517:21::-;;;;;;:::o;7589:349:1:-;7651:4;7667:23;;:::i;:::-;7693:38;;;;;;;;7708:21;:19;:21::i;:::-;7693:38;;-1:-1:-1;;;;;7806:20:1;;7742:14;7806:20;;;:13;:20;;;;;;7667:64;;-1:-1:-1;7742:14:1;;;7774:53;;7667:64;;7774:17;:53::i;:::-;7741:86;;-1:-1:-1;7741:86:1;-1:-1:-1;7853:18:1;7845:4;:26;;;;;;;;;7837:70;;;;;-1:-1:-1;;;7837:70:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7924:7;-1:-1:-1;;;7589:349:1;;;;:::o;15111:86::-;15153:4;15176:14;:12;:14::i;:::-;15169:21;;15111:86;:::o;52529:718::-;52674:5;;52607:4;;52674:5;;;-1:-1:-1;;;;;52674:5:1;52660:10;:19;52656:122;;52702:65;52707:18;52727:39;52702:4;:65::i;:::-;52695:72;;;;52656:122;52826:11;;52921:30;;;-1:-1:-1;;;52921:30:1;;;;-1:-1:-1;;;;;52826:11:1;;;;52921:28;;;;;:30;;;;;;;;;;;;;;:28;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;52921:30:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52921:30:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52921:30:1;52913:71;;;;;-1:-1:-1;;;52913:71:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;53049:11;:28;;-1:-1:-1;;;;;;53049:28:1;-1:-1:-1;;;;;53049:28:1;;;;;;;;;53156:46;;;;;;;;;;;;;;;;;;;;;;;;;;;53225:14;53220:20;53213:27;52529:718;-1:-1:-1;;;52529:718:1:o;1977:24:2:-;;;;:::o;3016:152:0:-;3067:8;3080:30;3100:9;3080:19;:30::i;:::-;3066:44;;;3120:41;3135:3;3120:41;;;;;;;;;;;;;-1:-1:-1;;;3120:41:0;;;:14;:41::i;1148:39:2:-;;;-1:-1:-1;;;;;1148:39:2;;:::o;58356:563:1:-;58431:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;58460:16;:14;:16::i;:::-;58447:29;-1:-1:-1;58490:29:1;;58486:274;;58679:70;58690:5;58684:12;;;;;;;;58698:50;58679:4;:70::i;:::-;58672:77;;;;;58486:274;58878:34;58899:12;58878:20;:34::i;:::-;58871:41;;;64785:11;:18;;-1:-1:-1;;64785:18:1;64799:4;64785:18;;;58356:563;;-1:-1:-1;58356:563:1:o;1701:30:2:-;;;;:::o;7231:110:1:-;-1:-1:-1;;;;;7314:20:1;7288:7;7314:20;;;:13;:20;;;;;;;7231:110::o;10026:189::-;10088:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;10112:16;:14;:16::i;:::-;:40;10104:75;;;;;-1:-1:-1;;;10104:75:1;;;;;;;;;;;;-1:-1:-1;;;10104:75:1;;;;;;;;;;;;;;;-1:-1:-1;10196:12:1;;64785:11;:18;;-1:-1:-1;;64785:18:1;64799:4;64785:18;;;10026:189;:::o;2408:131:0:-;2471:4;2494:38;2519:12;2494:24;:38::i;2102:25:2:-;;;;:::o;422:20::-;;;;;;;;;;;;;;-1:-1:-1;;422:20:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10922:283:1;10989:4;11006:13;11021:11;11036:36;11064:7;11036:27;:36::i;:::-;11005:67;;-1:-1:-1;11005:67:1;-1:-1:-1;11097:18:1;11090:3;:25;;;;;;;;;11082:93;;;;-1:-1:-1;;;11082:93:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;829:1498;1177:5;;;;;-1:-1:-1;;;;;1177:5:1;1163:10;:19;1155:68;;;;-1:-1:-1;;;1155:68:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1241:18;;:23;:43;;;;-1:-1:-1;1268:11:1;;:16;1241:43;1233:91;;;;-1:-1:-1;;;1233:91:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1372:27;:58;;;1448:31;1440:92;;;;-1:-1:-1;;;1440:92:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1574:8;1585:29;1601:12;1585:15;:29::i;:::-;1574:40;-1:-1:-1;1632:27:1;;1624:66;;;;;-1:-1:-1;;;1624:66:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1827:16;:14;:16::i;:::-;1806:18;:37;410:4:9;1853:11:1;:25;1975:46;2002:18;1975:26;:46::i;:::-;1969:52;-1:-1:-1;2039:27:1;;2031:74;;;;-1:-1:-1;;;2031:74:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2116:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;2138:16:1;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;;2164:8:1;:20;;;;;;-1:-1:-1;;2164:20:1;;;;;;:8;2302:18;;;;;2164:20;2302:18;;;-1:-1:-1;;;;;829:1498:1:o;15438:3774::-;15480:4;15544:23;15570:16;:14;:16::i;:::-;15627:18;;15544:42;;-1:-1:-1;15712:45:1;;;15708:103;;;15785:14;15773:27;;;;;;15708:103;15875:14;15892;:12;:14::i;:::-;15936:12;;15979:13;;16026:11;;16131:17;;:71;;;-1:-1:-1;;;16131:71:1;;;;;;;;;;;;;;;;;;;;;;15875:31;;-1:-1:-1;15936:12:1;;15979:13;;16026:11;;15916:17;;-1:-1:-1;;;;;16131:17:1;;;;:31;;:71;;;;;;;;;;;;;;:17;:71;;;5:2:-1;;;;30:1;27;20:12;5:2;16131:71:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16131:71:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16131:71:1;;-1:-1:-1;686:9:2;16220:43:1;;;16212:84;;;;;-1:-1:-1;;;16212:84:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;16384:17;16403:15;16422:52;16430:18;16450:23;16422:7;:52::i;:::-;16383:91;;-1:-1:-1;16383:91:1;-1:-1:-1;16503:18:1;16492:7;:29;;;;;;;;;16484:73;;;;;-1:-1:-1;;;16484:73:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;17038:31;;:::i;:::-;17079:24;17113:20;17143:21;17174:19;17238:58;17248:35;;;;;;;;17263:18;17248:35;;;17285:10;17238:9;:58::i;:::-;17204:92;;-1:-1:-1;17204:92:1;-1:-1:-1;17321:18:1;17310:7;:29;;;;;;;;;17306:181;;17362:114;17373:16;17391:69;17467:7;17462:13;;;;;;;;17362:10;:114::i;:::-;17355:121;;;;;;;;;;;;;;;;;;17306:181;17530:53;17548:20;17570:12;17530:17;:53::i;:::-;17497:86;;-1:-1:-1;17497:86:1;-1:-1:-1;17608:18:1;17597:7;:29;;;;;;;;;17593:179;;17649:112;17660:16;17678:67;17752:7;17747:13;;;;;;;17593:179;17811:42;17819:19;17840:12;17811:7;:42::i;:::-;17782:71;;-1:-1:-1;17782:71:1;-1:-1:-1;17878:18:1;17867:7;:29;;;;;;;;;17863:176;;17919:109;17930:16;17948:64;18019:7;18014:13;;;;;;;17863:176;18079:100;18104:38;;;;;;;;18119:21;;18104:38;;;18144:19;18165:13;18079:24;:100::i;:::-;18049:130;;-1:-1:-1;18049:130:1;-1:-1:-1;18204:18:1;18193:7;:29;;;;;;;;;18189:177;;18245:110;18256:16;18274:65;18346:7;18341:13;;;;;;;18189:177;18404:82;18429:20;18451:16;18469;18404:24;:82::i;:::-;18376:110;;-1:-1:-1;18376:110:1;-1:-1:-1;18511:18:1;18500:7;:29;;;;;;;;;18496:175;;18552:108;18563:16;18581:63;18651:7;18646:13;;;;;;;18496:175;18867:18;:39;;;18916:11;:28;;;18954:12;:30;;;18994:13;:32;;;19088:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19190:14;19178:27;;;;;;;;;;;;;;;;15438:3774;:::o;5219:183::-;5297:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;5320:51;5335:10;5347;5359:3;5364:6;5320:14;:51::i;:::-;:75;5313:82;;64785:11;:18;;-1:-1:-1;;64785:18:1;64799:4;64785:18;;;5219:183;;-1:-1:-1;;5219:183:1:o;1847:23:2:-;;;;:::o;3891:233:0:-;3987:8;4000:62;4024:8;4034:9;4045:16;4000:23;:62::i;:::-;3986:76;;;4072:45;4087:3;4072:45;;;;;;;;;;;;;-1:-1:-1;;;4072:45:0;;;:14;:45::i;:::-;3891:233;;;:::o;9704:182:1:-;9780:17;;9757:4;;-1:-1:-1;;;;;9780:17:1;:31;9812:14;:12;:14::i;:::-;9828:12;;9842:13;;9857:21;;9780:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9780:99:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9780:99:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9780:99:1;;-1:-1:-1;9704:182:1;:::o;47271:192::-;47373:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;47396:60;47410:10;47422;47434:8;47444:11;47396:13;:60::i;:::-;47389:67;;64785:11;:18;;-1:-1:-1;;64785:18:1;64799:4;64785:18;;;47271:192;;-1:-1:-1;;;47271:192:1:o;50687:631::-;50830:5;;50764:4;;50830:5;;;-1:-1:-1;;;;;50830:5:1;50816:10;:19;50812:124;;50858:67;50863:18;50883:41;50858:4;:67::i;50812:124::-;51032:12;;;-1:-1:-1;;;;;51112:30:1;;;-1:-1:-1;;;;;;51112:30:1;;;;;;;51224:49;;;51032:12;;;;51224:49;;;;;;;;;;;;;;;;;;;;;;;51296:14;51291:20;;12839:195;12899:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;12923:16;:14;:16::i;:::-;:40;12915:75;;;;;-1:-1:-1;;;12915:75:1;;;;;;;;;;;;-1:-1:-1;;;12915:75:1;;;;;;;;;;;;;;;13007:20;:18;:20::i;:::-;13000:27;;64785:11;:18;;-1:-1:-1;;64785:18:1;64799:4;64785:18;;;12839:195;:::o;8276:685::-;-1:-1:-1;;;;;8399:22:1;;8344:4;8399:22;;;:13;:22;;;;;;8344:4;;;;;;;;;8544:36;8413:7;8544:27;:36::i;:::-;8520:60;-1:-1:-1;8520:60:1;-1:-1:-1;8602:18:1;8594:4;:26;;;;;;;;;8590:97;;8649:16;8644:22;8636:40;-1:-1:-1;8668:1:1;;-1:-1:-1;8668:1:1;;-1:-1:-1;8668:1:1;;-1:-1:-1;8636:40:1;;-1:-1:-1;;;;8636:40:1;8590:97;8728:28;:26;:28::i;:::-;8697:59;-1:-1:-1;8697:59:1;-1:-1:-1;8778:18:1;8770:4;:26;;;;;;;;;8766:97;;8825:16;8820:22;;8766:97;-1:-1:-1;8886:14:1;;-1:-1:-1;8903:13:1;;-1:-1:-1;8918:13:1;-1:-1:-1;8918:13:1;-1:-1:-1;8276:685:1;;;;;;:::o;2800:111:0:-;2853:4;2876:28;2891:12;2876:14;:28::i;1949:111::-;2002:4;2025:28;2040:12;2025:14;:28::i;6907:141:1:-;-1:-1:-1;;;;;7007:25:1;;;6981:7;7007:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;6907:141::o;3352:196:0:-;3425:8;3438:46;3464:8;3474:9;3438:25;:46::i;:::-;3424:60;;;3494:47;3509:3;3494:47;;;;;;;;;;;;;;;;;:14;:47::i;51589:722:1:-;51737:12;;51631:4;;-1:-1:-1;;;;;51737:12:1;51723:10;:26;;;:54;;-1:-1:-1;51753:10:1;:24;51723:54;51719:162;;;51800:70;51805:18;51825:44;51800:4;:70::i;:::-;51793:77;;;;51719:162;51962:5;;;52003:12;;;-1:-1:-1;;;;;52003:12:1;;;51962:5;52073:20;;;-1:-1:-1;;;;;;52073:20:1;;;;;;;-1:-1:-1;;;;;;52139:25:1;;;;;;52180;;;51962:5;;;;;;52180:25;;;52199:5;;;;;52180:25;;;;;;51962:5;;52003:12;;52180:25;;;;;;;;;52253:12;;52220:46;;;-1:-1:-1;;;;;52220:46:1;;;;;52253:12;;;52220:46;;;;;;;;;;;;;;;;52289:14;52277:27;;;;51589:722;:::o;61255:625::-;61342:4;61358:10;61371:16;:14;:16::i;:::-;61358:29;-1:-1:-1;61401:29:1;;61397:295;;61603:78;61614:5;61608:12;;;;;;;;61622:58;61603:4;:78::i;:::-;61596:85;;;;;61397:295;61825:48;61852:20;61825:26;:48::i;1284:42:2:-;;;-1:-1:-1;;;;;1284:42:2;;:::o;921:28::-;;;;;;-1:-1:-1;;;;;921:28:2;;:::o;9375:159:1:-;9451:17;;9428:4;;-1:-1:-1;;;;;9451:17:1;:31;9483:14;:12;:14::i;:::-;9499:12;;9513:13;;9451:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;53543:599:1;53632:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;53661:16;:14;:16::i;:::-;53648:29;-1:-1:-1;53691:29:1;;53687:283;;53886:73;53897:5;53891:12;;;;;;;;53905:53;53886:4;:73::i;53687:283::-;54087:48;54110:24;54087:22;:48::i;3197:36:2:-;3229:4;3197:36;:::o;7233:149:7:-;7294:4;7315:33;7328:3;7323:9;;;;;;;;7339:4;7334:10;;;;;;;;7315:33;;;;;;;;;;;;;7346:1;7315:33;;;;;;;;;;;;;7371:3;7366:9;;;;;;;20832:3142:1;20978:11;;:58;;;-1:-1:-1;;;20978:58:1;;21010:4;20978:58;;;;-1:-1:-1;;;;;20978:58:1;;;;;;;;;;;;;;;20902:4;;;;;;20978:11;;;:23;;:58;;;;;;;;;;;;;;;20902:4;20978:11;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;20978:58:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20978:58:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20978:58:1;;-1:-1:-1;21050:12:1;;21046:143;;21086:88;21097:27;21126:38;21166:7;21086:10;:88::i;:::-;21078:100;-1:-1:-1;21176:1:1;;-1:-1:-1;21078:100:1;;-1:-1:-1;21078:100:1;21046:143;21296:16;:14;:16::i;:::-;21274:18;;:38;21270:143;;21336:62;21341:22;21365:32;21336:4;:62::i;21270:143::-;21423:25;;:::i;:::-;21503:28;:26;:28::i;:::-;21474:25;;;21459:72;;;21460:12;;;21459:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;21561:18:1;;-1:-1:-1;21545:4:1;:12;;;:34;;;;;;;;;21541:169;;21603:92;21614:16;21632:42;21681:4;:12;;;21676:18;;;;;;;21603:92;21595:104;-1:-1:-1;21697:1:1;;-1:-1:-1;21595:104:1;;-1:-1:-1;;21595:104:1;21541:169;22328:32;22341:6;22349:10;22328:12;:32::i;:::-;22304:21;;;:56;;;22626:42;;;;;;;;22641:25;;;;22626:42;;22580:89;;22304:56;22580:22;:89::i;:::-;22561:15;;;22546:123;;;22547:12;;;22546:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;22703:18:1;;-1:-1:-1;22687:4:1;:12;;;:34;;;;;;;;;22679:79;;;;;-1:-1:-1;;;22679:79:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23055:37;23063:11;;23076:4;:15;;;23055:7;:37::i;:::-;23032:19;;;23017:75;;;23018:12;;;23017:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;23126:18:1;;-1:-1:-1;23110:4:1;:12;;;:34;;;;;;;;;23102:87;;;;-1:-1:-1;;;23102:87:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23248:21:1;;;;;;:13;:21;;;;;;23271:15;;;;23240:47;;23248:21;23240:7;:47::i;:::-;23215:21;;;23200:87;;;23201:12;;;23200:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;23321:18:1;;-1:-1:-1;23305:4:1;:12;;;:34;;;;;;;;;23297:90;;;;-1:-1:-1;;;23297:90:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23477:19;;;;23463:11;:33;23530:21;;;;-1:-1:-1;;;;;23506:21:1;;;;;;:13;:21;;;;;;;;;:45;;;;23637:21;;;;23660:15;;;;;23624:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23723:15;;;;23691:48;;;;;;;-1:-1:-1;;;;;23691:48:1;;;23708:4;;-1:-1:-1;;;;;;;;;;;23691:48:1;;;;;;;;23945:21;;;23928:14;;-1:-1:-1;23945:21:1;-1:-1:-1;;20832:3142:1;;;;;;:::o;13791:1156::-;13899:11;;13852:9;;;;13924:17;13920:1021;;-1:-1:-1;;14113:27:1;;14093:18;;-1:-1:-1;14085:56:1;;13920:1021;14317:14;14334;:12;:14::i;:::-;14317:31;;14362:33;14409:23;;:::i;:::-;14446:17;14520:54;14535:9;14546:12;;14560:13;;14520:14;:54::i;:::-;14478:96;-1:-1:-1;14478:96:1;-1:-1:-1;14603:18:1;14592:7;:29;;;;;;;;;14588:87;;14649:7;-1:-1:-1;14658:1:1;;-1:-1:-1;14641:19:1;;-1:-1:-1;;;;14641:19:1;14588:87;14715:50;14722:28;14752:12;14715:6;:50::i;:::-;14689:76;-1:-1:-1;14689:76:1;-1:-1:-1;14794:18:1;14783:7;:29;;;;;;;;;14779:87;;14840:7;-1:-1:-1;14849:1:1;;-1:-1:-1;14832:19:1;;-1:-1:-1;;;;14832:19:1;14779:87;-1:-1:-1;14908:21:1;14888:18;;-1:-1:-1;14908:21:1;-1:-1:-1;14880:50:1;;-1:-1:-1;;;14880:50:1;13791:1156;;;:::o;2779:2187::-;2951:11;;:60;;;-1:-1:-1;;;2951:60:1;;2987:4;2951:60;;;;-1:-1:-1;;;;;2951:60:1;;;;;;;;;;;;;;;;;;;;;;2877:4;;;;2951:11;;:27;;:60;;;;;;;;;;;;;;2877:4;2951:11;:60;;;5:2:-1;;;;30:1;27;20:12;5:2;2951:60:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2951:60:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2951:60:1;;-1:-1:-1;3025:12:1;;3021:142;;3060:92;3071:27;3100:42;3144:7;3060:10;:92::i;:::-;3053:99;;;;;3021:142;3226:3;-1:-1:-1;;;;;3219:10:1;:3;-1:-1:-1;;;;;3219:10:1;;3215:103;;;3252:55;3257:15;3274:32;3252:4;:55::i;3215:103::-;3392:22;-1:-1:-1;;;;;3432:14:1;;;;;;;3428:156;;;-1:-1:-1;;;3428:156:1;;;-1:-1:-1;;;;;;3541:23:1;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;3428:156;3659:17;3686;3713;3740;3794:34;3802:17;3821:6;3794:7;:34::i;:::-;3768:60;;-1:-1:-1;3768:60:1;-1:-1:-1;3853:18:1;3842:7;:29;;;;;;;;;3838:123;;3894:56;3899:16;3917:32;3894:4;:56::i;:::-;3887:63;;;;;;;;;;3838:123;-1:-1:-1;;;;;4005:18:1;;;;;;:13;:18;;;;;;3997:35;;4025:6;3997:7;:35::i;:::-;3971:61;;-1:-1:-1;3971:61:1;-1:-1:-1;4057:18:1;4046:7;:29;;;;;;;;;4042:122;;4098:55;4103:16;4121:31;4098:4;:55::i;4042:122::-;-1:-1:-1;;;;;4208:18:1;;;;;;:13;:18;;;;;;4200:35;;4228:6;4200:7;:35::i;:::-;4174:61;;-1:-1:-1;4174:61:1;-1:-1:-1;4260:18:1;4249:7;:29;;;;;;;;;4245:120;;4301:53;4306:16;4324:29;4301:4;:53::i;4245:120::-;-1:-1:-1;;;;;4492:18:1;;;;;;;:13;:18;;;;;;:33;;;4535:18;;;;;;:33;;;-1:-1:-1;;4638:29:1;;4634:107;;-1:-1:-1;;;;;4683:23:1;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;4634:107;4809:3;-1:-1:-1;;;;;4795:26:1;4804:3;-1:-1:-1;;;;;4795:26:1;-1:-1:-1;;;;;;;;;;;4814:6:1;4795:26;;;;;;;;;;;;;;;;;;4944:14;4932:27;;;;;;;;2779:2187;;;;;;;:::o;2432:306:8:-;2509:9;2520:4;2537:13;2552:18;;:::i;:::-;2574:20;2584:1;2587:6;2574:9;:20::i;:::-;2536:58;;-1:-1:-1;2536:58:8;-1:-1:-1;2615:18:8;2608:3;:25;;;;;;;;;2604:71;;-1:-1:-1;2657:3:8;-1:-1:-1;2662:1:8;;-1:-1:-1;2649:15:8;;2604:71;2693:18;2713:17;2722:7;2713:8;:17::i;:::-;2685:46;;;;;;2432:306;;;;;:::o;4576:227:0:-;4623:4;4640:13;4655:20;4679:41;4687:21;4710:9;4679:7;:41::i;:::-;4639:81;;-1:-1:-1;4639:81:0;-1:-1:-1;4745:18:0;4738:3;:25;;;;;;;;;4730:34;;;;;35547:564:1;35625:4;64709:11;;35625:4;;64709:11;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;35660:16;:14;:16::i;:::-;35647:29;-1:-1:-1;35690:29:1;;35686:257;;35861:67;35872:5;35866:12;;;;;;;;35880:47;35861:4;:67::i;35686:257::-;36051:53;36068:10;36080;36092:11;36051:16;:53::i;59188:1706::-;59394:5;;59255:4;;;;59394:5;;;-1:-1:-1;;;;;59394:5:1;59380:10;:19;59376:122;;59422:65;59427:18;59447:39;59422:4;:65::i;59376:122::-;59621:16;:14;:16::i;:::-;59599:18;;:38;59595:145;;59660:69;59665:22;59689:39;59660:4;:69::i;59595:145::-;59843:12;59826:14;:12;:14::i;:::-;:29;59822:150;;;59878:83;59883:29;59914:46;59878:4;:83::i;59822:150::-;60063:13;;60048:12;:28;60044:127;;;60099:61;60104:15;60121:38;60099:4;:61::i;60044:127::-;-1:-1:-1;60317:13:1;;:28;;;;60451:33;;;60443:82;;;;-1:-1:-1;;;60443:82:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60596:13;:32;;;60759:5;;60745:34;;60759:5;;;-1:-1:-1;;;;;60759:5:1;60766:12;60745:13;:34::i;:::-;60811:5;;60795:54;;;60811:5;;;;-1:-1:-1;;;;;60811:5:1;60795:54;;;;;;;;;;;;;;;;;;;;;;;;;60872:14;60867:20;;25208:529;25292:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;25321:16;:14;:16::i;:::-;25308:29;-1:-1:-1;25351:29:1;;25347:246;;25521:61;25532:5;25526:12;;;;;;;;25540:41;25521:4;:61::i;25347:246::-;25690:40;25702:10;25714:1;25717:12;25690:11;:40::i;11452:1238::-;-1:-1:-1;;;;;11794:23:1;;11529:9;11794:23;;;:14;:23;;;;;12018:24;;11529:9;;;;;;;;12014:90;;-1:-1:-1;12071:18:1;;-1:-1:-1;12071:18:1;;-1:-1:-1;12063:30:1;;-1:-1:-1;;;12063:30:1;12014:90;12326:46;12334:14;:24;;;12360:11;;12326:7;:46::i;:::-;12293:79;;-1:-1:-1;12293:79:1;-1:-1:-1;12397:18:1;12386:7;:29;;;;;;;;;12382:79;;-1:-1:-1;12439:7:1;;-1:-1:-1;12448:1:1;;-1:-1:-1;12431:19:1;;-1:-1:-1;;12431:19:1;12382:79;12491:58;12499:19;12520:14;:28;;;12491:7;:58::i;:::-;12471:78;;-1:-1:-1;12471:78:1;-1:-1:-1;12574:18:1;12563:7;:29;;;;;;;;;12559:79;;-1:-1:-1;12616:7:1;;-1:-1:-1;12625:1:1;;-1:-1:-1;12608:19:1;;-1:-1:-1;;12608:19:1;12559:79;-1:-1:-1;12656:18:1;;-1:-1:-1;12676:6:1;-1:-1:-1;;;11452:1238:1;;;;:::o;9114:91::-;9186:12;9114:91;:::o;62202:1271::-;62496:5;;62296:4;;;;62496:5;;;-1:-1:-1;;;;;62496:5:1;62482:10;:19;62478:130;;62524:73;62529:18;62549:47;62524:4;:73::i;62478:130::-;62731:16;:14;:16::i;:::-;62709:18;;:38;62705:153;;62770:77;62775:22;62799:47;62770:4;:77::i;62705:153::-;62949:17;;;;;;;;;-1:-1:-1;;;;;62949:17:1;62926:40;;63066:20;-1:-1:-1;;;;;63066:40:1;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;63066:42:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;63066:42:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;63066:42:1;63058:83;;;;;-1:-1:-1;;;63058:83:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;63215:17;:40;;-1:-1:-1;;;;;;63215:40:1;-1:-1:-1;;;;;63215:40:1;;;;;;;;;63358:70;;;;;;;;;;;;;;;;;;;;;;;;;;;63451:14;63446:20;;1303:230:3;1359:9;1370:4;1395:1;1390;:6;1386:141;;-1:-1:-1;1420:18:3;;-1:-1:-1;1440:5:3;;;1412:34;;1386:141;-1:-1:-1;1485:27:3;;-1:-1:-1;1514:1:3;1477:39;;1978:346:8;2047:9;2058:10;;:::i;:::-;2081:14;2097:19;2120:27;2128:1;:10;;;2140:6;2120:7;:27::i;:::-;2080:67;;-1:-1:-1;2080:67:8;-1:-1:-1;2169:18:8;2161:4;:26;;;;;;;;;2157:90;;-1:-1:-1;2217:18:8;;;;;;;;;-1:-1:-1;2217:18:8;;2211:4;;-1:-1:-1;2217:18:8;-1:-1:-1;2203:33:8;;2157:90;2285:31;;;;;;;;;;;;-1:-1:-1;;2285:31:8;;-1:-1:-1;1978:346:8;-1:-1:-1;;;;1978:346:8:o;7500:183:7:-;7585:4;7606:43;7619:3;7614:9;;;;;;;;7630:4;7625:10;;;;;;;;7606:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;7672:3;7667:9;;;;;;;1613:250:3;1669:9;;1705:5;;;1725:6;;;1721:136;;1755:18;;-1:-1:-1;1775:1:3;-1:-1:-1;1747:30:3;;1721:136;-1:-1:-1;1816:26:3;;-1:-1:-1;1844:1:3;;-1:-1:-1;1808:38:3;;2878:321:8;2975:9;2986:4;3003:13;3018:18;;:::i;:::-;3040:20;3050:1;3053:6;3040:9;:20::i;:::-;3002:58;;-1:-1:-1;3002:58:8;-1:-1:-1;3081:18:8;3074:3;:25;;;;;;;;;3070:71;;-1:-1:-1;3123:3:8;-1:-1:-1;3128:1:8;;-1:-1:-1;3115:15:8;;3070:71;3158:34;3166:17;3175:7;3166:8;:17::i;:::-;3185:6;3158:7;:34::i;:::-;3151:41;;;;;;2878:321;;;;;;;:::o;41597:979:1:-;41731:4;64709:11;;41731:4;;64709:11;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;41766:16;:14;:16::i;:::-;41753:29;-1:-1:-1;41796:29:1;;41792:266;;41972:71;41983:5;41977:12;;;;;;;;41991:51;41972:4;:71::i;:::-;41964:83;-1:-1:-1;42045:1:1;;-1:-1:-1;41964:83:1;;-1:-1:-1;41964:83:1;41792:266;42076:16;-1:-1:-1;;;;;42076:31:1;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42076:33:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42076:33:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42076:33:1;;-1:-1:-1;42123:29:1;;42119:270;;42299:75;42310:5;42304:12;;;;;;;;42318:55;42299:4;:75::i;42119:270::-;42496:73;42517:10;42529:8;42539:11;42552:16;42496:20;:73::i;:::-;42489:80;;;;;64774:1;64785:11;:18;;-1:-1:-1;;64785:18:1;64799:4;64785:18;;;41597:979;;;;-1:-1:-1;41597:979:1;-1:-1:-1;;41597:979:1:o;48126:2123::-;48315:11;;:87;;;-1:-1:-1;;;48315:87:1;;48348:4;48315:87;;;;-1:-1:-1;;;;;48315:87:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48244:4;;;;48315:11;;:24;;:87;;;;;;;;;;;;;;48244:4;48315:11;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;48315:87:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48315:87:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48315:87:1;;-1:-1:-1;48416:12:1;;48412:149;;48451:99;48462:27;48491:49;48542:7;48451:10;:99::i;48412:149::-;48631:10;-1:-1:-1;;;;;48619:22:1;:8;-1:-1:-1;;;;;48619:22:1;;48615:144;;;48664:84;48669:26;48697:50;48664:4;:84::i;48615:144::-;-1:-1:-1;;;;;49172:23:1;;48769:17;49172:23;;;:13;:23;;;;;;48769:17;;;;49164:45;;49197:11;49164:7;:45::i;:::-;49133:76;;-1:-1:-1;49133:76:1;-1:-1:-1;49234:18:1;49223:7;:29;;;;;;;;;49219:164;;49275:97;49286:16;49304:52;49363:7;49358:13;;;;;;;49275:97;49268:104;;;;;;;;49219:164;-1:-1:-1;;;;;49434:25:1;;;;;;:13;:25;;;;;;49426:47;;49461:11;49426:7;:47::i;:::-;49393:80;;-1:-1:-1;49393:80:1;-1:-1:-1;49498:18:1;49487:7;:29;;;;;;;;;49483:164;;49539:97;49550:16;49568:52;49627:7;49622:13;;;;;;;49483:164;-1:-1:-1;;;;;49843:23:1;;;;;;;:13;:23;;;;;;;;:43;;;49896:25;;;;;;;;;;:47;;;49995:43;;;;;;;49896:25;;-1:-1:-1;;;;;;;;;;;49995:43:1;;;;;;;;;;50227:14;50215:27;48126:2123;-1:-1:-1;;;;;;;;;48126:2123:1:o;31371:516::-;31445:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;31474:16;:14;:16::i;:::-;31461:29;-1:-1:-1;31504:29:1;;31500:246;;31674:61;31685:5;31679:12;;;;;;;;31693:41;31674:4;:61::i;31500:246::-;31843:37;31855:10;31867:12;31843:11;:37::i;24317:519::-;24391:4;64709:11;;;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;24420:16;:14;:16::i;:::-;24407:29;-1:-1:-1;24450:29:1;;24446:246;;24620:61;24631:5;24625:12;;;;;;;24446:246;24789:40;24801:10;24813:12;24827:1;24789:11;:40::i;36436:586::-;36538:4;64709:11;;36538:4;;64709:11;;64701:34;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;-1:-1:-1;;;64701:34:1;;;;;;;;;;;;;;;64759:5;64745:19;;-1:-1:-1;;64745:19:1;;;36573:16;:14;:16::i;:::-;36560:29;-1:-1:-1;36603:29:1;;36599:257;;36774:67;36785:5;36779:12;;;;;;;;36793:47;36774:4;:67::i;:::-;36766:79;-1:-1:-1;36843:1:1;;-1:-1:-1;36766:79:1;;-1:-1:-1;36766:79:1;36599:257;36964:51;36981:10;36993:8;37003:11;36964:16;:51::i;:::-;36957:58;;;;;64774:1;64785:11;:18;;-1:-1:-1;;64785:18:1;64799:4;64785:18;;;36436:586;;;;-1:-1:-1;36436:586:1;-1:-1:-1;36436:586:1:o;54403:951::-;54551:5;;54484:4;;54551:5;;;-1:-1:-1;;;;;54551:5:1;54537:10;:19;54533:125;;54579:68;54584:18;54604:42;54579:4;:68::i;54533:125::-;54762:16;:14;:16::i;:::-;54740:18;;:38;54736:148;;54801:72;54806:22;54830:42;54801:4;:72::i;54736:148::-;847:4:2;54953:24:1;:51;54949:155;;;55027:66;55032:15;55049:43;55027:4;:66::i;54949:155::-;55146:21;;;55177:48;;;;55241:68;;;;;;;;;;;;;;;;;;;;;;;;;55332:14;55327:20;;5036:240:0;5103:4;5152:10;-1:-1:-1;;;;;5152:18:0;;;5144:46;;;;;-1:-1:-1;;;5144:46:0;;;;;;;;;;;;-1:-1:-1;;;5144:46:0;;;;;;;;;;;;;;;5221:6;5208:9;:19;5200:46;;;;;-1:-1:-1;;;5200:46:0;;;;;;;;;;;;-1:-1:-1;;;5200:46:0;;;;;;;;;;;;;;;-1:-1:-1;5263:6:0;5036:240;-1:-1:-1;5036:240:0:o;4424:330:8:-;4512:9;4523:4;4540:13;4555:19;;:::i;:::-;4578:31;4593:6;4601:7;4578:14;:31::i;1927:263:3:-;1998:9;2009:4;2026:14;2042:8;2054:13;2062:1;2065;2054:7;:13::i;:::-;2025:42;;-1:-1:-1;2025:42:3;-1:-1:-1;2090:18:3;2082:4;:26;;;;;;;;;2078:73;;-1:-1:-1;2132:4:3;-1:-1:-1;2138:1:3;;-1:-1:-1;2124:16:3;;2078:73;2168:15;2176:3;2181:1;2168:7;:15::i;772:503:8:-;833:9;844:10;;:::i;:::-;867:14;883:20;907:22;915:3;410:4:9;907:7:8;:22::i;:::-;866:63;;-1:-1:-1;866:63:8;-1:-1:-1;951:18:8;943:4;:26;;;;;;;;;939:90;;-1:-1:-1;999:18:8;;;;;;;;;-1:-1:-1;999:18:8;;993:4;;-1:-1:-1;999:18:8;-1:-1:-1;985:33:8;;939:90;1040:14;1056:13;1073:31;1081:15;1098:5;1073:7;:31::i;:::-;1039:65;;-1:-1:-1;1039:65:8;-1:-1:-1;1126:18:8;1118:4;:26;;;;;;;;;1114:90;;-1:-1:-1;1174:18:8;;;;;;;;;-1:-1:-1;1174:18:8;;1168:4;;-1:-1:-1;1174:18:8;-1:-1:-1;1160:33:8;;-1:-1:-1;;1160:33:8;1114:90;1242:25;;;;;;;;;;;;-1:-1:-1;;1242:25:8;;-1:-1:-1;772:503:8;-1:-1:-1;;;;;;772:503:8:o;789:210:9:-;969:12;410:4;969:23;;;789:210::o;37707:3373:1:-;37885:11;;:75;;;-1:-1:-1;;;37885:75:1;;37924:4;37885:75;;;;-1:-1:-1;;;;;37885:75:1;;;;;;;;;;;;;;;;;;;;;;37802:4;;;;;;37885:11;;;:30;;:75;;;;;;;;;;;;;;;37802:4;37885:11;:75;;;5:2:-1;;;;30:1;27;20:12;5:2;37885:75:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37885:75:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37885:75:1;;-1:-1:-1;37974:12:1;;37970:151;;38010:96;38021:27;38050:46;38098:7;38010:10;:96::i;:::-;38002:108;-1:-1:-1;38108:1:1;;-1:-1:-1;38002:108:1;;-1:-1:-1;38002:108:1;37970:151;38228:16;:14;:16::i;:::-;38206:18;;:38;38202:151;;38268:70;38273:22;38297:40;38268:4;:70::i;38202:151::-;38363:32;;:::i;:::-;-1:-1:-1;;;;;38506:24:1;;;;;;:14;:24;;;;;:38;;;38485:18;;;:59;38672:37;38521:8;38672:27;:37::i;:::-;38649:19;;;38634:75;;;38635:12;;;38634:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;38739:18:1;;-1:-1:-1;38723:4:1;:12;;;:34;;;;;;;;;38719:190;;38781:113;38792:16;38810:63;38880:4;:12;;;38875:18;;;;;;;38781:113;38773:125;-1:-1:-1;38896:1:1;;-1:-1:-1;38773:125:1;;-1:-1:-1;;38773:125:1;38719:190;-1:-1:-1;;38988:11:1;:23;38984:153;;;39046:19;;;;39027:16;;;:38;38984:153;;;39096:16;;;:30;;;38984:153;39722:37;39735:5;39742:4;:16;;;39722:12;:37::i;:::-;39697:22;;;:62;;;40062:19;;;;40054:52;;:7;:52::i;:::-;40028:22;;;40013:93;;;40014:12;;;40013:93;;;;;;;;;;;;;;;;;;;-1:-1:-1;40140:18:1;;-1:-1:-1;40124:4:1;:12;;;:34;;;;;;;;;40116:105;;;;-1:-1:-1;;;40116:105:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40271:45;40279:12;;40293:4;:22;;;40271:7;:45::i;:::-;40247:20;;;40232:84;;;40233:12;;;40232:84;;;;;;;;;;;;;;;;;;;-1:-1:-1;40350:18:1;;-1:-1:-1;40334:4:1;:12;;;:34;;;;;;;;;40326:96;;;;-1:-1:-1;;;40326:96:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40539:22;;;;;;-1:-1:-1;;;;;40502:24:1;;;;;;;:14;:24;;;;;;;;;:59;;;40612:11;;40571:38;;;;:52;;;;40648:20;;;;40633:12;:35;;;40755:22;;;;40779;;40726:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41050:22;;;41033:14;;41050:22;;-1:-1:-1;37707:3373:1;-1:-1:-1;;;;;37707:3373:1:o;5282:170:0:-;5426:19;;-1:-1:-1;;;;;5426:11:0;;;:19;;;;;5438:6;;5426:19;;;;5438:6;5426:11;:19;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;26606:4504:1;26713:4;26737:19;;;:42;;-1:-1:-1;26760:19:1;;26737:42;26729:107;;;;-1:-1:-1;;;26729:107:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26847:27;;:::i;:::-;26988:28;:26;:28::i;:::-;26959:25;;;26944:72;;;26945:12;;;26944:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;27046:18:1;;-1:-1:-1;27030:4:1;:12;;;:34;;;;;;;;;27026:166;;27087:94;27098:16;27116:44;27167:4;:12;;;27162:18;;;;;;;27087:94;27080:101;;;;;27026:166;27243:18;;27239:1265;;27513:17;;;:34;;;27616:42;;;;;;;;27631:25;;;;27616:42;;27598:77;;27533:14;27598:17;:77::i;:::-;27577:17;;;27562:113;;;27563:12;;;27562:113;;;;;;;;;;;;;;;;;;;-1:-1:-1;27709:18:1;;-1:-1:-1;27693:4:1;:12;;;:34;;;;;;;;;27689:183;;27754:103;27765:16;27783:53;27843:4;:12;;;27838:18;;;;;;;27689:183;27239:1265;;;28166:82;28189:14;28205:42;;;;;;;;28220:4;:25;;;28205:42;;;28166:22;:82::i;:::-;28145:17;;;28130:118;;;28131:12;;;28130:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;28282:18:1;;-1:-1:-1;28266:4:1;:12;;;:34;;;;;;;;;28262:183;;28327:103;28338:16;28356:53;28416:4;:12;;;28411:18;;;;;;;28262:183;28459:17;;;:34;;;27239:1265;28570:11;;28621:17;;;;28570:69;;;-1:-1:-1;;;28570:69:1;;28604:4;28570:69;;;;-1:-1:-1;;;;;28570:69:1;;;;;;;;;;;;;;;;28555:12;;28570:11;;;;;:25;;:69;;;;;;;;;;;;;;;28555:12;28570:11;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;28570:69:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28570:69:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28570:69:1;;-1:-1:-1;28653:12:1;;28649:140;;28688:90;28699:27;28728:40;28770:7;28688:10;:90::i;:::-;28681:97;;;;;;28649:140;28896:16;:14;:16::i;:::-;28874:18;;:38;28870:140;;28935:64;28940:22;28964:34;28935:4;:64::i;28870:140::-;29298:39;29306:11;;29319:4;:17;;;29298:7;:39::i;:::-;29275:19;;;29260:77;;;29261:12;;;29260:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;29367:18:1;;-1:-1:-1;29351:4:1;:12;;;:34;;;;;;;;;29347:176;;29408:104;29419:16;29437:54;29498:4;:12;;;29493:18;;;;;;;29347:176;-1:-1:-1;;;;;29581:23:1;;;;;;:13;:23;;;;;;29606:17;;;;29573:51;;29581:23;29573:7;:51::i;:::-;29548:21;;;29533:91;;;29534:12;;;29533:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;29654:18:1;;-1:-1:-1;29638:4:1;:12;;;:34;;;;;;;;;29634:179;;29695:107;29706:16;29724:57;29788:4;:12;;;29783:18;;;;;;;29634:179;29908:4;:17;;;29891:14;:12;:14::i;:::-;:34;29887:153;;;29948:81;29953:29;29984:44;29948:4;:81::i;29887:153::-;30524:42;30538:8;30548:4;:17;;;30524:13;:42::i;:::-;30656:19;;;;30642:11;:33;30711:21;;;;-1:-1:-1;;;;;30685:23:1;;;;;;:13;:23;;;;;;;;;:47;;;;30841:17;;;;30807:52;;;;;;;30834:4;;-1:-1:-1;;;;;;;;;;;30807:52:1;;;;;;;30891:17;;;;30910;;;;;30874:54;;;-1:-1:-1;;;;;30874:54:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30978:11;;31028:17;;;;31047;;;;30978:87;;;-1:-1:-1;;;30978:87:1;;31011:4;30978:87;;;;-1:-1:-1;;;;;30978:87:1;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:24;;:87;;;;;:11;;:87;;;;;;;:11;;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;30978:87:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;31088:14:1;;-1:-1:-1;31083:20:1;;-1:-1:-1;;31083:20:1;;31076:27;26606:4504;-1:-1:-1;;;;;;26606:4504:1:o;543:331:3:-;599:9;;630:6;626:67;;-1:-1:-1;660:18:3;;-1:-1:-1;660:18:3;652:30;;626:67;712:5;;;716:1;712;:5;:1;732:5;;;;;:10;728:140;;-1:-1:-1;766:26:3;;-1:-1:-1;794:1:3;;-1:-1:-1;758:38:3;;728:140;835:18;;-1:-1:-1;855:1:3;-1:-1:-1;827:30:3;;964:209;1020:9;;1051:6;1047:75;;-1:-1:-1;1081:26:3;;-1:-1:-1;1109:1:3;1073:38;;1047:75;1140:18;1164:1;1160;:5;;;;;;1132:34;;;;964:209;;;;;:::o;43177:3544:1:-;43396:11;;:111;;;-1:-1:-1;;;43396:111:1;;43439:4;43396:111;;;;-1:-1:-1;;;;;43396:111:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43315:4;;;;;;43396:11;;;:34;;:111;;;;;;;;;;;;;;;43315:4;43396:11;:111;;;5:2:-1;;;;30:1;27;20:12;5:2;43396:111:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43396:111:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43396:111:1;;-1:-1:-1;43521:12:1;;43517:148;;43557:93;43568:27;43597:43;43642:7;43557:10;:93::i;:::-;43549:105;-1:-1:-1;43652:1:1;;-1:-1:-1;43549:105:1;;-1:-1:-1;43549:105:1;43517:148;43772:16;:14;:16::i;:::-;43750:18;;:38;43746:148;;43812:67;43817:22;43841:37;43812:4;:67::i;43746:148::-;44037:16;:14;:16::i;:::-;43996;-1:-1:-1;;;;;43996:35:1;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43996:37:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43996:37:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43996:37:1;:57;43992:178;;44077:78;44082:22;44106:48;44077:4;:78::i;43992:178::-;44240:10;-1:-1:-1;;;;;44228:22:1;:8;-1:-1:-1;;;;;44228:22:1;;44224:143;;;44274:78;44279:26;44307:44;44274:4;:78::i;44224:143::-;44419:16;44415:145;;44459:86;44464:36;44502:42;44459:4;:86::i;44415:145::-;-1:-1:-1;;44613:11:1;:23;44609:156;;;44660:90;44665:36;44703:46;44660:4;:90::i;44609:156::-;44817:21;44840:22;44866:51;44883:10;44895:8;44905:11;44866:16;:51::i;:::-;44816:101;;-1:-1:-1;44816:101:1;-1:-1:-1;44931:40:1;;44927:161;;44995:78;45006:16;45000:23;;;;;;;;45025:47;44995:4;:78::i;:::-;44987:90;-1:-1:-1;45075:1:1;;-1:-1:-1;44987:90:1;;-1:-1:-1;;;44987:90:1;44927:161;45338:11;;:102;;;-1:-1:-1;;;45338:102:1;;45388:4;45338:102;;;;-1:-1:-1;;;;;45338:102:1;;;;;;;;;;;;;;;45295:21;;;;45338:11;;;:41;;:102;;;;;;;;;;;;:11;:102;;;5:2:-1;;;;30:1;27;20:12;5:2;45338:102:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45338:102:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45338:102:1;;;;;;;;;-1:-1:-1;45338:102:1;-1:-1:-1;45458:40:1;;45450:104;;;;-1:-1:-1;;;45450:104:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45685:11;45645:16;-1:-1:-1;;;;;45645:26:1;;45672:8;45645:36;;;;;;;;;;;;;-1:-1:-1;;;;;45645:36:1;-1:-1:-1;;;;;45645:36:1;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45645:36:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45645:36:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45645:36:1;:51;;45637:88;;;;;-1:-1:-1;;;45637:88:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;45851:15;-1:-1:-1;;;;;45880:42:1;;45917:4;45880:42;45876:250;;;45951:63;45973:4;45980:10;45992:8;46002:11;45951:13;:63::i;:::-;45938:76;;45876:250;;;46058:57;;;-1:-1:-1;;;46058:57:1;;-1:-1:-1;;;;;46058:57:1;;;;;;;;;;;;;;;;;;;;;;:22;;;;;;:57;;;;;;;;;;;;;;;-1:-1:-1;46058:22:1;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;46058:57:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46058:57:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46058:57:1;;-1:-1:-1;45876:250:1;46229:34;;46221:67;;;;;-1:-1:-1;;;46221:67:1;;;;;;;;;;;;-1:-1:-1;;;46221:67:1;;;;;;;;;;;;;;;46350:96;;;-1:-1:-1;;;;;46350:96:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46679:14;46666:48;-1:-1:-1;46696:17:1;;-1:-1:-1;;;;;;43177:3544:1;;;;;;;;:::o;32300:3001::-;32456:11;;:64;;;-1:-1:-1;;;32456:64:1;;32490:4;32456:64;;;;-1:-1:-1;;;;;32456:64:1;;;;;;;;;;;;;;;32384:4;;;;32456:11;;:25;;:64;;;;;;;;;;;;;;32384:4;32456:11;:64;;;5:2:-1;;;;30:1;27;20:12;5:2;32456:64:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32456:64:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32456:64:1;;-1:-1:-1;32534:12:1;;32530:140;;32569:90;32580:27;32609:40;32651:7;32569:10;:90::i;:::-;32562:97;;;;;32530:140;32777:16;:14;:16::i;:::-;32755:18;;:38;32751:140;;32816:64;32821:22;32845:34;32816:4;:64::i;32751:140::-;32997:12;32980:14;:12;:14::i;:::-;:29;32976:141;;;33032:74;33037:29;33068:37;33032:4;:74::i;32976:141::-;33127:27;;:::i;:::-;33435:37;33463:8;33435:27;:37::i;:::-;33412:19;;;33397:75;;;33398:4;33397:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;33502:18:1;;-1:-1:-1;33486:12:1;;:34;;;;;;;;;33482:179;;33543:107;33554:16;33572:57;33636:4;:12;;;33631:18;;;;;;;33543:107;33536:114;;;;;;33482:179;33712:42;33720:4;:19;;;33741:12;33712:7;:42::i;:::-;33686:22;;;33671:83;;;33672:4;33671:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;33784:18:1;;-1:-1:-1;33768:12:1;;:34;;;;;;;;;33764:186;;33825:114;33836:16;33854:64;33925:4;:12;;;33920:18;;;;;;;33764:186;33999:35;34007:12;;34021;33999:7;:35::i;:::-;33975:20;;;33960:74;;;33961:4;33960:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;34064:18:1;;-1:-1:-1;34048:12:1;;:34;;;;;;;;;34044:177;;34105:105;34116:16;34134:55;34196:4;:12;;;34191:18;;;;;;;34044:177;34701:37;34715:8;34725:12;34701:13;:37::i;:::-;34855:22;;;;;;-1:-1:-1;;;;;34818:24:1;;;;;;:14;:24;;;;;;;;:59;;;34928:11;;34887:38;;;;:52;;;;34964:20;;;;;34949:12;:35;;;35068:22;;35037:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35279:14;35267:27;32300:3001;-1:-1:-1;;;;;32300:3001:1:o;3713:605:8:-;3793:9;3804:10;;:::i;:::-;4101:14;4117;4135:25;410:4:9;4153:6:8;4135:7;:25::i;:::-;4100:60;;-1:-1:-1;4100:60:8;-1:-1:-1;4182:18:8;4174:4;:26;;;;;;;;;4170:90;;-1:-1:-1;4230:18:8;;;;;;;;;-1:-1:-1;4230:18:8;;4224:4;;-1:-1:-1;4230:18:8;-1:-1:-1;4216:33:8;;4170:90;4276:35;4283:9;4294:7;:16;;;4276:6;:35::i;151:6002:0:-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;151:6002:0;;;-1:-1:-1;151:6002:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;151:6002:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;151:6002:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;151:6002:0;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://88d48522826705bac5d1e1a8b226e460d5ce8acce0973944a1449b378c58a099
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ARB | 100.00% | $1,793.96 | 1.6986 | $3,047.27 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.