This script estimates CAPM for individual stocks and shows an example of 2-pass CAPM.

Time Series CAPM

CAPM states the expected risk premiums on individual assets are the product of \(\beta\) and the equity risk premium (ERP).

ERP here refers to the risk premium of the market portfolio, also called market risk premium.

\(\beta\) measures the sensitivity to market risk.

The model is formulated by

\[ E[r_i-r_f] = \beta_i E[r_m-r_f] \]

  • where \(r_i\) is the return of asset \(i\);
  • \(r_f\) is the riskless rate of interest;
  • \(r_m\) is the return of the market portfolio.

CAPM as a regression can be expressed as

\[ r_{i,\color{red}{t}} - r_{f,\color{red}{t}} = \alpha_i + \beta_i (r_{m,\color{red}{t}}-r_{f,\color{red}{t}}) + \varepsilon_{i,\color{red}{t}} \] where \(\alpha_i\) (intercept) and \(\beta_i\) (slope) are the parameters to estimate.

\(\alpha_i\) is a nonmarket premium.

  • \(\alpha_i>0\) means positive abnormal return, this could be caused, for example, by positive estimate of the security’s prospect, or you think the security is underpriced based on private information you are aware of, and given time, the price will converge to its “fair value” and therefore offers an attractive expected return.

If CAPM holds, then when security prices are in equilibrium, \(\alpha_i=0\), i.e., any positive/negative alpha’s will be driven to zero in the end.

## read in .csv data
# put the data in a folder called "data"
# the code below works on macos, if using Windows, need to 
# replace the forward slash ("/") with backslash ("\")
f_name <- "data/NO_capm_2015-2022_monthly.csv"
data_return <- read_csv(f_name)
data_group <- data_return %>% 
    group_by(ISIN) 
data_group %>% group_keys()
## # A tibble: 142 × 1
##    ISIN        
##    <chr>       
##  1 BMG0451H1170
##  2 BMG067231032
##  3 BMG173841013
##  4 BMG1738J1247
##  5 BMG359472021
##  6 BMG3682E1921
##  7 BMG5137R1088
##  8 BMG671801022
##  9 BMG763301022
## 10 BMG850801025
## # ℹ 132 more rows
groups <- data_group %>% group_split()
the_group <- groups[[1]] 
# inspect data structure
the_group %>% str()
## tibble [96 × 9] (S3: tbl_df/tbl/data.frame)
##  $ ISIN              : chr [1:96] "BMG0451H1170" "BMG0451H1170" "BMG0451H1170" "BMG0451H1170" ...
##  $ Date              : Date[1:96], format: "2015-01-30" "2015-02-27" ...
##  $ Symbol            : chr [1:96] "ARCHER" "ARCHER" "ARCHER" "ARCHER" ...
##  $ Name              : chr [1:96] "Archer" "Archer" "Archer" "Archer" ...
##  $ Sector            : chr [1:96] "Energy" "Energy" "Energy" "Energy" ...
##  $ Return_monthly    : num [1:96] -0.2401 -0.22801 0.00844 0.16736 -0.03943 ...
##  $ mkt_return_monthly: num [1:96] 0.03498 0.03262 0.00578 0.03256 0.00988 ...
##  $ rf_1month         : num [1:96] 0.0012 0.00113 0.00127 0.00123 0.00117 0.00102 0.00097 0.00095 0.00083 0.0008 ...
##  $ rf_annualized     : num [1:96] 0.0145 0.0136 0.0153 0.0149 0.0141 ...

We use monthly data of Archer over the period 2015-01 to 2022-12.

# glimpse of data for one equity
the_group %>%
    select(-rf_annualized) %>% 
    knitr::kable(floating.environment="sidewaystable", digits = 5, escape=F) %>%
    kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, latex_options="scale_down") %>% 
    scroll_box(width = "100%", height = "500px")
ISIN Date Symbol Name Sector Return_monthly mkt_return_monthly rf_1month
BMG0451H1170 2015-01-30 ARCHER Archer Energy -0.24010 0.03498 0.00120
BMG0451H1170 2015-02-27 ARCHER Archer Energy -0.22801 0.03262 0.00113
BMG0451H1170 2015-03-31 ARCHER Archer Energy 0.00844 0.00578 0.00127
BMG0451H1170 2015-04-30 ARCHER Archer Energy 0.16736 0.03256 0.00123
BMG0451H1170 2015-05-29 ARCHER Archer Energy -0.03943 0.00988 0.00117
BMG0451H1170 2015-06-30 ARCHER Archer Energy 0.00746 -0.02566 0.00102
BMG0451H1170 2015-07-31 ARCHER Archer Energy -0.21481 0.01561 0.00097
BMG0451H1170 2015-08-31 ARCHER Archer Energy -0.40094 -0.07016 0.00095
BMG0451H1170 2015-09-30 ARCHER Archer Energy -0.12992 -0.02072 0.00083
BMG0451H1170 2015-10-30 ARCHER Archer Energy -0.07692 0.05749 0.00080
BMG0451H1170 2015-11-30 ARCHER Archer Energy -0.16176 0.02198 0.00108
BMG0451H1170 2015-12-30 ARCHER Archer Energy -0.27485 -0.02942 0.00087
BMG0451H1170 2016-01-29 ARCHER Archer Energy -0.27419 -0.08083 0.00085
BMG0451H1170 2016-02-29 ARCHER Archer Energy -0.40667 0.02063 0.00080
BMG0451H1170 2016-03-31 ARCHER Archer Energy 0.80899 0.00917 0.00070
BMG0451H1170 2016-04-29 ARCHER Archer Energy 0.46998 0.04938 0.00069
BMG0451H1170 2016-05-31 ARCHER Archer Energy -0.09296 0.01819 0.00068
BMG0451H1170 2016-06-30 ARCHER Archer Energy -0.16149 -0.02341 0.00073
BMG0451H1170 2016-07-29 ARCHER Archer Energy -0.11111 0.01621 0.00068
BMG0451H1170 2016-08-31 ARCHER Archer Energy -0.17292 0.01028 0.00073
BMG0451H1170 2016-09-30 ARCHER Archer Energy 0.20907 0.00608 0.00082
BMG0451H1170 2016-10-31 ARCHER Archer Energy 0.40000 0.02491 0.00078
BMG0451H1170 2016-11-30 ARCHER Archer Energy -0.04167 0.02888 0.00107
BMG0451H1170 2016-12-30 ARCHER Archer Energy 0.95652 0.04148 0.00087
BMG0451H1170 2017-01-31 ARCHER Archer Energy 0.30159 0.01353 0.00059
BMG0451H1170 2017-02-28 ARCHER Archer Energy -0.29878 -0.00411 0.00076
BMG0451H1170 2017-03-31 ARCHER Archer Energy 0.18261 -0.00351 0.00068
BMG0451H1170 2017-04-28 ARCHER Archer Energy -0.04412 0.01426 0.00069
BMG0451H1170 2017-05-31 ARCHER Archer Energy -0.12692 0.01818 0.00072
BMG0451H1170 2017-06-30 ARCHER Archer Energy -0.13833 -0.01656 0.00060
BMG0451H1170 2017-07-31 ARCHER Archer Energy 0.18098 0.04857 0.00056
BMG0451H1170 2017-08-31 ARCHER Archer Energy -0.14545 0.01005 0.00057
BMG0451H1170 2017-09-29 ARCHER Archer Energy 0.21581 0.05842 0.00056
BMG0451H1170 2017-10-31 ARCHER Archer Energy -0.18833 0.03047 0.00052
BMG0451H1170 2017-11-30 ARCHER Archer Energy -0.13860 -0.01254 0.00056
BMG0451H1170 2017-12-29 ARCHER Archer Energy 0.19785 0.02211 0.00056
BMG0451H1170 2018-01-31 ARCHER Archer Energy 0.04876 -0.00422 0.00063
BMG0451H1170 2018-02-28 ARCHER Archer Energy -0.12334 0.01080 0.00078
BMG0451H1170 2018-03-28 ARCHER Archer Energy -0.12662 -0.01763 0.00079
BMG0451H1170 2018-04-30 ARCHER Archer Energy 0.16481 0.06785 0.00076
BMG0451H1170 2018-05-31 ARCHER Archer Energy 0.15319 0.01809 0.00068
BMG0451H1170 2018-06-29 ARCHER Archer Energy -0.01292 0.00413 0.00064
BMG0451H1170 2018-07-31 ARCHER Archer Energy -0.14486 0.01963 0.00065
BMG0451H1170 2018-08-31 ARCHER Archer Energy -0.21749 0.01148 0.00068
BMG0451H1170 2018-09-28 ARCHER Archer Energy 0.06145 0.03482 0.00082
BMG0451H1170 2018-10-31 ARCHER Archer Energy -0.07895 -0.05180 0.00082
BMG0451H1170 2018-11-30 ARCHER Archer Energy -0.12286 -0.03224 0.00095
BMG0451H1170 2018-12-28 ARCHER Archer Energy -0.29235 -0.07145 0.00089
BMG0451H1170 2019-01-31 ARCHER Archer Energy 0.08631 0.04484 0.00084
BMG0451H1170 2019-02-28 ARCHER Archer Energy 0.17797 0.03588 0.00086
BMG0451H1170 2019-03-29 ARCHER Archer Energy -0.11151 -0.00251 0.00104
BMG0451H1170 2019-04-30 ARCHER Archer Energy 0.12348 0.02062 0.00103
BMG0451H1170 2019-05-31 ARCHER Archer Energy -0.28649 -0.03272 0.00105
BMG0451H1170 2019-06-28 ARCHER Archer Energy 0.14394 0.01472 0.00114
BMG0451H1170 2019-07-31 ARCHER Archer Energy 0.02980 -0.00635 0.00114
BMG0451H1170 2019-08-30 ARCHER Archer Energy -0.10825 0.00250 0.00117
BMG0451H1170 2019-09-30 ARCHER Archer Energy -0.05529 0.02939 0.00130
BMG0451H1170 2019-10-31 ARCHER Archer Energy -0.11832 0.01291 0.00140
BMG0451H1170 2019-11-29 ARCHER Archer Energy -0.16883 0.00490 0.00143
BMG0451H1170 2019-12-30 ARCHER Archer Energy 0.10417 0.03213 0.00141
BMG0451H1170 2020-01-31 ARCHER Archer Energy -0.09119 -0.01894 0.00137
BMG0451H1170 2020-02-28 ARCHER Archer Energy -0.01557 -0.09143 0.00135
BMG0451H1170 2020-03-31 ARCHER Archer Energy -0.36801 -0.14830 0.00052
BMG0451H1170 2020-04-30 ARCHER Archer Energy -0.07119 0.09614 0.00023
BMG0451H1170 2020-05-29 ARCHER Archer Energy 0.23653 0.02794 0.00008
BMG0451H1170 2020-06-30 ARCHER Archer Energy 0.04116 -0.00195 0.00018
BMG0451H1170 2020-07-31 ARCHER Archer Energy -0.02791 0.03900 0.00014
BMG0451H1170 2020-08-31 ARCHER Archer Energy 0.13636 0.03998 0.00008
BMG0451H1170 2020-09-30 ARCHER Archer Energy -0.10947 -0.00369 0.00020
BMG0451H1170 2020-10-30 ARCHER Archer Energy 0.01182 -0.05168 0.00036
BMG0451H1170 2020-11-30 ARCHER Archer Energy 0.44626 0.14601 0.00023
BMG0451H1170 2020-12-30 ARCHER Archer Energy -0.00646 0.04684 0.00029
BMG0451H1170 2021-01-29 ARCHER Archer Energy 0.36098 -0.00726 0.00026
BMG0451H1170 2021-02-26 ARCHER Archer Energy -0.06810 0.04155 0.00026
BMG0451H1170 2021-03-31 ARCHER Archer Energy 0.11923 0.05143 0.00020
BMG0451H1170 2021-04-30 ARCHER Archer Energy 0.19817 0.01661 0.00017
BMG0451H1170 2021-05-31 ARCHER Archer Energy -0.13193 0.03382 0.00015
BMG0451H1170 2021-06-30 ARCHER Archer Energy 0.02423 0.00728 0.00011
BMG0451H1170 2021-07-30 ARCHER Archer Energy -0.05699 0.01188 0.00012
BMG0451H1170 2021-08-31 ARCHER Archer Energy -0.09920 0.00668 0.00017
BMG0451H1170 2021-09-30 ARCHER Archer Energy 0.24051 0.01879 0.00037
BMG0451H1170 2021-10-29 ARCHER Archer Energy -0.01020 0.02532 0.00040
BMG0451H1170 2021-11-30 ARCHER Archer Energy -0.21237 -0.00965 0.00057
BMG0451H1170 2021-12-30 ARCHER Archer Energy 0.00000 0.01707 0.00067
BMG0451H1170 2022-01-31 ARCHER Archer Energy 0.11257 -0.02212 0.00073
BMG0451H1170 2022-02-28 ARCHER Archer Energy -0.23294 0.02325 0.00074
BMG0451H1170 2022-03-31 ARCHER Archer Energy 0.01227 0.04923 0.00087
BMG0451H1170 2022-04-29 ARCHER Archer Energy -0.10606 -0.01707 0.00081
BMG0451H1170 2022-05-31 ARCHER Archer Energy 0.36441 0.03837 0.00083
BMG0451H1170 2022-06-30 ARCHER Archer Energy -0.13043 -0.09097 0.00114
BMG0451H1170 2022-07-29 ARCHER Archer Energy 0.01429 0.07084 0.00135
BMG0451H1170 2022-08-31 ARCHER Archer Energy 0.08310 -0.00360 0.00169
BMG0451H1170 2022-09-30 ARCHER Archer Energy -0.14174 -0.11683 0.00225
BMG0451H1170 2022-10-31 ARCHER Archer Energy 0.11515 0.06589 0.00228
BMG0451H1170 2022-11-30 ARCHER Archer Energy 0.00136 0.03855 0.00270
BMG0451H1170 2022-12-30 ARCHER Archer Energy -0.06649 -0.02602 0.00253

Conduct the linear regression for one equity

reg_data <- the_group %>%
    select(Return_monthly, mkt_return_monthly, rf_1month) %>%
    rename(r_i = Return_monthly,
           r_m = mkt_return_monthly,
           r_f = rf_1month) %>%
    mutate(rmrf = r_m-r_f,
           eRi = r_i-r_f)

Visualize excess returns of Archer and the market index

plot_data <- reg_data %>% 
    select(eRi, rmrf) %>% 
    xts(order.by = the_group$Date)
col_vec <- c("black", "red")
plot.xts(plot_data, col = col_vec, main = "Excess Returns on Asset and Market")
addLegend("topright", 
          legend.names = c("Archer", "Equity Risk Premium"), 
          lty = c(1, 1), 
          lwd = c(2, 2),
          col = col_vec,
          bg = "white",
          box.col = "white")

capm_ml <- lm(eRi~rmrf, data=reg_data)
summary(capm_ml)
## 
## Call:
## lm(formula = eRi ~ rmrf, data = reg_data)
## 
## Residuals:
##      Min       1Q   Median       3Q      Max 
## -0.43068 -0.12462 -0.04209  0.10159  0.88599 
## 
## Coefficients:
##             Estimate Std. Error t value Pr(>|t|)    
## (Intercept) -0.02109    0.02118  -0.996    0.322    
## rmrf         2.23429    0.49514   4.512 1.85e-05 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 0.2041 on 94 degrees of freedom
## Multiple R-squared:  0.1781, Adjusted R-squared:  0.1693 
## F-statistic: 20.36 on 1 and 94 DF,  p-value: 1.853e-05

stargazer tabulates regression results neatly.

stargazer(capm_ml, type="html", title="Regression Results for Archer")
Regression Results for Archer
Dependent variable:
eRi
rmrf 2.234***
(0.495)
Constant -0.021
(0.021)
Observations 96
R2 0.178
Adjusted R2 0.169
Residual Std. Error 0.204 (df = 94)
F Statistic 20.362*** (df = 1; 94)
Note: p<0.1; p<0.05; p<0.01


Several things worth looking at:

  • Explanatory power: the \(R^2\) (\(.178\)) tells us that variation in the excess returns of the market index explains about 17.8% of the variation in Archer’s returns. The adjusted \(R^2\) (which is slightly smaller) imposes a penalty for extra number of predictors.

  • The intercept (\(-.021\)) is the estimate of Archer’s alpha. The number in parentheses is the standard error (SE). T-statistic is about \(1\), lower than the conventional cutoff for statistical significance is a probability of less than \(5\%\), which requires a t-statistic of about \(2.0\).

    • We fail to reject \(H_0: \alpha=0\).

    • Here, we approximate the t-distribution to a standard normal distribution when the degrees of freedom are high. In our case, with \(94\) (\(n-K=96-2\)) degrees of freedom, we use the critical value of the standard normal distribution for simplification. This applies to the hypothesis tests in what follows too.

  • The slope (\(2.234\)) is the estimate of beta, meaning that its share price tended to move 2.234% for every 1% move in the market index.

    • \(\beta>1\) means above-average sensitivity to economy, high exposure to the state of macroeconomy, high-risk equities.

    • The SE is \(.495\). P-value in the table provides the significance level for \(H_0: \beta=0\).

    • An alternative t-test would be \(H_0: \beta=1\).

      \[ t = \frac{\hat{\beta}-\beta}{se_{\hat{\beta}}} = \frac{2.234-1}{0.495} = 2.493 \]

      The p-value (\(1.27\%\)) can be obtained by

      pnorm(q = -2.493) * 2.
      ## [1] 0.01266688

      Therefore, we reject \(H_0: \hat{\beta}=1\) at 5% significance level.

    • Sometimes we are interested in the \(95\%\) Confidence Interval (CI) that includes the true but unobserved value of beta with 95% probability.

      We would take the estimated value as the center of the interval, and then add and subtract about two standard errors.

      More precisely, the \(95\%\) CI is given as \([\hat{\beta}-1.96 \cdot se_{\hat{\beta}}, \hat{\beta}+1.96 \cdot se_{\hat{\beta}}]\).

      qnorm(p = 0.025) # critical value of 1.96
      ## [1] -1.959964
      c("lower bound"=2.234-1.96*0.495, "upper bound"=2.234+1.96*0.495) # 95% CI
      ## lower bound upper bound 
      ##      1.2638      3.2042
    • The standard deviation of the residual is \(20.4\%\) per month, or \(20.4\% \times \sqrt{12}=70.67\%\). This stands for firm-specific risk.

      The standard deviation of systematic risk is \(\beta\times \sigma(r_m-r_f)\)

      capm_ml$coefficients[2] * sd(reg_data$rmrf)
      ##       rmrf 
      ## 0.09450784

      which is \(9.45\%\), much smaller than the firm-specific risk.

      In other words, more of the fluctuation in Archer’s monthly return derives from firm-specific factors than from marketwide systematic factors.

Industry version of CAPM

  • They often use total return than excess return in the regressions. This makes sense when \(r_f\) is low, but could make a difference if \(r_f\) is high and volatile.

  • Notice that when \(r_f\) is constant, the\[ \hat{\beta}_i=\frac{\text{Cov}(R^e_i, R^e_m)}{\text{Var}(R^e_m)} \]where

            \(R^e_i=r_i-r_f\) stands for the excess return on asset \(i\), and

            \(R^e_m=r_m-r_f\) stands for the excess return on the market index.

    is not affected by the value of \(r_f\).


2-pass CAPM

Early tests of CAPM focused on the cross-section of stock returns. \(\rightarrow\) Test Security Market Line.

\[ E_T[R^e_i] = \gamma_0 + \gamma_1 \hat{\beta}_i + u_i \;\;\;\; (SML) \]

Regressing the mean excess return over a time interval, \(E_T[R^e_i]=\frac{1}{T}\sum_{t=1}^TR^e_{i,t}\), on estimates of the systematic risk, \(\hat{\beta}_i\).

\(\gamma_0\) and \(\gamma_1\) are parameters of interest here.

If CAPM holds,

  • \(\gamma_0\) should be equal to zero, and

  • \(\gamma_1\) should be equal to the mean excess return on the market.

We call the time series estimation using individual assets the First Pass CAPM. We use the beta estimates from the first pass as the independent variable in the Second Pass and the average excess return for a set of securities as the dependent variable.

  • Main problem:

    \(\hat{\beta}_i\) has measurement error from the first pass, which causes the Errors-in-Variable (EIV) problem in the second pass.

    The main consequence of EIV is attenuation bias. In short, \(\gamma_1\) will be biased towards zero, assuming \(\gamma_1>0\).

  • Solution:

    \(\beta_p\) estimates based on portfolios will be less affected by the measurement error than individual \(\beta_i\) due to aggregation.

Here we demonstrate an example using individual \(\beta_i\)’s.

Get the matrix of excess returns

## matrix of excess returns
library(quantmod)
f_name <- "data/NO_Rf-OSEBX_2015-2023_monthly.csv"
mkt_idx_rets <- read_csv(f_name)
mkt_idx_rets <- mkt_idx_rets %>% mutate(yrmon=as.yearmon(Date))

## convert to wide table, each row stands for time points; 
#    each col stands for equities.
data_wide <- data_return %>% 
    mutate(excess_return=Return_monthly-rf_1month) %>% 
    select(ISIN, Date, excess_return) %>% 
    spread(ISIN, excess_return) 

# merge with market index and risk-free
data_wide <- data_wide %>% 
    mutate(yrmon=as.yearmon(Date)) %>% 
    left_join(mkt_idx_rets %>% select(-Date), by="yrmon") %>% 
    select(-yrmon)

data_wide <- data_wide %>% 
    mutate(rmrf=mkt_return_monthly-rf_1month)

Inspect the data structure

data_wide %>% str()
## tibble [96 × 147] (S3: tbl_df/tbl/data.frame)
##  $ Date              : Date[1:96], format: "2015-01-30" "2015-02-27" ...
##  $ BMG0451H1170      : num [1:96] -0.2413 -0.22914 0.00717 0.16613 -0.0406 ...
##  $ BMG067231032      : num [1:96] -0.02816 0.26839 -0.11256 0.07084 -0.00784 ...
##  $ BMG173841013      : num [1:96] -0.0854 0.2596 0.0723 0.0249 -0.019 ...
##  $ BMG1738J1247      : num [1:96] -0.01452 -0.17117 -0.09258 0.00416 0.07026 ...
##  $ BMG359472021      : num [1:96] 0.09255 -0.00113 0.06159 0.00952 0.00947 ...
##  $ BMG3682E1921      : num [1:96] -0.0225 0.0587 -0.0731 0.0706 0.0761 ...
##  $ BMG5137R1088      : num [1:96] 0.032 -0.0574 0.2072 -0.0893 -0.0205 ...
##  $ BMG671801022      : num [1:96] -0.326 -0.0123 -0.2693 0.0295 -0.0101 ...
...

Have a preview of Excess Return

No_equity <- 142
ER <- data_wide[,(1:No_equity)+1] %>% as.matrix()
data_wide %>%
    knitr::kable(floating.environment="sidewaystable", digits = 5, escape=F) %>%
    kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, latex_options="scale_down") %>% 
    scroll_box(width = "100%", height = "500px")
Date BMG0451H1170 BMG067231032 BMG173841013 BMG1738J1247 BMG359472021 BMG3682E1921 BMG5137R1088 BMG671801022 BMG763301022 BMG850801025 CA74836K1003 CY0101162119 CY0101550917 CY0102630916 DK0060477263 DK0060520450 FO0000000179 GB00B5LJSC86 LU0075646355 NO0003021909 NO0003025009 NO0003028904 NO0003033102 NO0003043309 NO0003049405 NO0003053308 NO0003053605 NO0003054108 NO0003055501 NO0003055808 NO0003067902 NO0003070609 NO0003078107 NO0003078800 NO0003079709 NO0003080608 NO0003087603 NO0003094104 NO0003095309 NO0003096208 NO0003097503 NO0003103103 NO0003108102 NO0003110603 NO0003111700 NO0003117202 NO0003399909 NO0003399917 NO0003572802 NO0003679102 NO0003733800 NO0003921009 NO0004822503 NO0004895103 NO0004913609 NO0005052605 NO0005638858 NO0005806802 NO0006000207 NO0006000603 NO0006000801 NO0006000900 NO0006001007 NO0006001205 NO0006001502 NO0006001601 NO0006001809 NO0006001908 NO0006222009 NO0006390301 NO0006390400 NO0010000045 NO0010001118 NO0010012636 NO0010014632 NO0010029804 NO0010040611 NO0010063308 NO0010070063 NO0010073489 NO0010081235 NO0010096985 NO0010098247 NO0010112675 NO0010123060 NO0010159684 NO0010187032 NO0010196140 NO0010199151 NO0010205966 NO0010208051 NO0010209331 NO0010215684 NO0010234552 NO0010257728 NO0010262686 NO0010263023 NO0010272065 NO0010283211 NO0010284318 NO0010285562 NO0010307135 NO0010310956 NO0010317340 NO0010345853 NO0010358484 NO0010359433 NO0010360175 NO0010360266 NO0010365521 NO0010395577 NO0010405640 NO0010466022 NO0010550056 NO0010564701 NO0010571680 NO0010571698 NO0010572589 NO0010576010 NO0010582521 NO0010598683 NO0010607781 NO0010607971 NO0010612450 NO0010626559 NO0010629108 NO0010631567 NO0010657505 NO0010663669 NO0010708068 NO0010708605 NO0010708910 NO0010715139 NO0010715394 NO0010716418 NO0010716582 NO0010716863 NO0010840515 NO0010861990 SE0003366871 SE0014731154 US36467X2062 mkt_return_monthly rf_1month rf_annualized rmrf
2015-01-30 -0.24130 -0.02816 -0.08536 -0.01452 0.09255 -0.02248 0.03200 -0.32601 0.05649 -0.02519 -0.27788 -0.70646 0.01749 0.31267 -0.00646 -0.06213 -0.04001 0.05008 -0.14032 -0.01357 0.10804 0.05432 0.05609 0.06384 -0.03278 0.17322 -0.19983 -0.01481 0.13227 -0.25120 -0.17225 0.52588 0.06842 0.10889 -0.00708 -0.21639 0.10991 -0.01370 0.07197 -0.00486 -0.04120 -0.08420 -0.00120 -0.02168 -0.00120 -0.00120 -0.25120 -0.23402 -0.02752 -0.11231 0.11512 0.06263 0.11244 -0.02823 -0.08453 0.07326 0.24183 0.08016 0.04314 0.02354 -0.06135 -0.00615 -0.02043 -0.00120 0.01921 0.05436 0.01569 0.01493 0.06253 -0.06103 -0.00120 0.38062 -0.05120 0.08501 -0.13679 0.03516 0.07775 0.09649 -0.29886 -0.02700 0.09255 -0.02254 0.14225 -0.06903 -0.05358 0.05334 -0.03620 0.09945 -0.00876 -0.11787 0.20521 0.18274 -0.12157 0.00184 -0.23574 -0.06571 -0.22161 -0.20120 0.06130 0.99880 0.02017 0.31677 -0.06395 -0.03454 -0.19358 0.00378 0.04047 -0.02120 -0.01436 -0.01874 -0.08517 0.07289 0.01784 -0.39919 -0.16787 -0.05990 -0.11885 0.41724 -0.08047 0.06847 -0.03824 -0.12818 0.00380 0.03860 0.52054 -0.05171 -0.07739 -0.01922 0.03896 -0.00726 -0.02384 0.09404 -0.01759 -0.12835 0.08703 -0.09049 0.01245 -0.09275 -0.10120 0.08971 -0.03316 0.17164 0.03498 0.00120 0.01450 0.03378
2015-02-27 -0.22914 0.26839 0.25955 -0.17117 -0.00113 0.05865 -0.05736 -0.01227 0.21099 0.02345 0.25570 -0.21542 0.17318 -0.05669 -0.35231 -0.04693 0.10446 -0.06352 0.15213 0.26401 -0.05416 -0.08853 -0.06681 0.10574 0.08583 -0.19915 0.16511 -0.03603 -0.00580 -0.15498 0.21051 0.23055 0.06988 0.04009 0.14088 -0.08178 0.12387 -0.04164 -0.15454 -0.03422 0.12804 0.36201 -0.04113 -0.08127 -0.06341 -0.09488 0.00350 0.01877 0.07995 0.04887 0.05316 -0.11996 0.00762 -0.00113 -0.07386 -0.04060 0.11425 0.14621 0.10264 0.07818 0.06553 0.10335 0.00377 0.10277 -0.01863 -0.01692 0.08857 0.02665 0.03113 0.08978 0.08920 -0.10376 -0.08534 0.13379 0.02501 0.01641 -0.42406 -0.07629 -0.06780 0.02315 -0.08684 0.13797 0.06039 0.33140 0.00390 0.22646 -0.02704 -0.23403 0.02790 0.04604 0.04680 0.21878 -0.05587 0.06554 -0.07184 -0.05285 0.04075 0.14867 0.33769 -0.09488 0.12858 -0.07805 0.04908 0.06784 0.21191 0.02115 0.00887 -0.06236 0.09220 -0.04399 0.49887 0.06137 -0.11328 -0.16780 -0.06039 0.01042 0.04221 -0.15113 0.02536 0.02263 -0.07421 -0.18295 -0.11556 0.32423 0.14173 0.06270 0.14835 -0.11122 -0.02044 -0.02552 -0.23665 0.10255 0.14887 0.05350 0.02289 0.13523 0.02244 -0.07090 0.14103 0.06938 -0.01056 -0.35902 0.03262 0.00113 0.01364 0.03149
2015-03-31 0.00717 -0.11256 0.07228 -0.09258 0.06159 -0.07306 0.20724 -0.26929 -0.15127 -0.00927 -0.17084 -0.27400 -0.06377 -0.22480 -0.12627 -0.20127 -0.02093 -0.18548 -0.08877 0.04989 -0.00927 0.02262 0.04267 0.10563 -0.00127 -0.07534 0.07385 -0.04468 -0.02944 -0.09218 0.09043 0.25401 0.09265 -0.04461 0.03500 -0.15916 0.48762 -0.02502 -0.22946 -0.10774 -0.04555 -0.01727 -0.06377 -0.09976 -0.00496 -0.00472 -0.01049 -0.01590 -0.01127 -0.17587 0.01119 -0.29699 0.04786 -0.02905 -0.02088 -0.03346 -0.08461 0.03152 -0.05234 -0.06460 0.06682 0.07350 0.00451 0.09439 0.04708 0.02075 -0.00447 0.02218 0.03403 0.02903 -0.02801 -0.10684 -0.08556 -0.02543 0.08153 0.01486 0.09340 0.05789 -0.15433 -0.07239 -0.07158 -0.01303 -0.02400 0.05920 -0.10628 0.12232 -0.01191 0.02789 -0.04220 -0.11839 -0.02971 0.19604 -0.09871 0.00157 -0.27663 -0.05582 -0.18217 -0.00424 0.05321 -0.00127 0.03156 -0.05809 -0.07697 -0.02278 0.13724 -0.17802 0.01061 0.02917 0.00788 -0.13560 0.09758 0.01834 -0.05390 -0.00127 -0.12725 0.09234 0.00831 0.08108 0.00841 0.04065 -0.17139 -0.05683 0.01558 0.00595 -0.37627 -0.02527 0.00770 0.22553 -0.04851 -0.01377 -0.11801 -0.05885 0.04221 0.12103 -0.01886 -0.02523 -0.04074 -0.24294 -0.06059 -0.09708 0.00825 -0.20619 0.00578 0.00127 0.01535 0.00451
2015-04-30 0.16613 0.07084 0.02494 0.00416 0.00952 0.07059 -0.08925 0.02954 0.22818 0.13599 0.02495 0.49877 0.07377 -0.01638 -0.04409 0.13377 0.04672 -0.00526 0.20497 0.00348 0.06344 0.00326 0.05433 0.00811 0.00277 -0.09456 -0.09257 -0.00663 0.10988 0.13877 -0.00412 -0.11438 0.04928 0.06924 0.32596 0.00710 -0.09078 0.00147 -0.05340 0.06260 -0.03598 0.07194 0.13210 0.12062 0.00618 -0.04967 -0.01983 0.01857 -0.01133 0.53724 0.00793 0.34000 -0.04063 0.02734 0.08877 -0.16165 0.03325 -0.02239 0.05646 -0.01191 0.08210 0.07534 -0.05123 -0.00123 -0.00633 0.01262 0.00842 0.04330 0.01764 0.12902 0.10845 0.14631 0.04061 -0.02431 -0.06005 0.09169 0.13236 0.04420 0.05299 0.01501 0.13322 0.11221 0.04528 -0.10336 0.02112 0.06102 0.06329 0.31544 0.20157 0.17224 -0.05879 0.10239 -0.09438 0.01261 0.02877 -0.10352 0.03558 -0.05198 -0.06123 -0.03571 0.00248 0.20359 0.05480 0.24053 0.23443 -0.11888 -0.00123 0.03252 0.00179 0.20998 -0.02520 -0.12431 0.03210 0.09211 0.05283 0.04261 0.16708 -0.07732 0.15560 -0.01780 0.17377 -0.03652 -0.01780 0.05970 0.47877 -0.01967 0.02988 -0.00370 -0.00949 -0.02022 -0.06556 0.02771 0.22377 0.15262 -0.04899 0.12464 0.09124 0.15262 0.20598 -0.04759 0.03651 0.33898 0.03256 0.00123 0.01486 0.03133
2015-05-29 -0.04060 -0.00784 -0.01897 0.07026 0.00947 0.07615 -0.02048 -0.01013 0.00361 -0.01897 -0.09301 -0.66784 0.04534 -0.07809 0.09336 -0.12011 0.16267 -0.22023 -0.02687 0.08772 -0.02085 0.07107 -0.11600 -0.02294 -0.05097 -0.01630 0.04534 -0.01283 0.01622 -0.05380 -0.03821 0.15400 0.12854 0.07045 0.04498 0.02078 0.10577 -0.00386 -0.07456 0.06399 -0.00517 0.07080 0.32236 -0.01990 0.00986 -0.05208 0.12679 0.11533 0.03698 0.82383 0.02929 -0.22308 0.03454 0.02649 0.23736 0.05299 -0.00365 0.03210 -0.06026 0.00962 -0.01248 -0.06811 0.03041 0.02156 0.01421 0.00976 0.03068 -0.00117 0.05439 -0.01232 -0.01861 0.16740 0.04300 -0.01298 0.12383 -0.01332 -0.08428 0.05585 -0.03660 0.04895 0.00624 -0.07310 0.01523 -0.20354 -0.07221 -0.01577 -0.03147 -0.04579 -0.03200 -0.04900 0.04846 0.02680 -0.08280 -0.06607 0.04252 0.09053 -0.03667 0.28443 -0.11464 0.03454 -0.01159 0.27883 0.02740 -0.08081 -0.07214 -0.40117 0.01406 -0.02974 0.04559 0.01306 0.03268 -0.02310 0.12787 0.03541 -0.12083 0.02944 0.04566 0.46943 0.06625 -0.08584 0.16904 -0.04995 0.01456 0.00235 -0.32009 -0.12434 -0.01010 -0.03980 -0.00117 0.12141 -0.17617 0.04379 -0.00913 0.03216 -0.05295 -0.00684 0.10272 -0.06784 0.10152 -0.03242 0.18974 -0.07040 0.00988 0.00117 0.01413 0.00871
2015-06-30 0.00644 0.20324 0.04252 -0.15641 0.01793 -0.06609 -0.04039 -0.01608 0.21327 -0.03725 -0.14147 -0.12602 -0.00843 0.01565 0.08079 -0.02102 0.01597 0.03455 -0.05930 0.13503 -0.04520 -0.03547 -0.01904 -0.01780 -0.00521 -0.30537 0.15812 0.00177 -0.07538 -0.10596 0.10582 0.03182 -0.05906 -0.06684 -0.08190 -0.24667 -0.03978 -0.00102 -0.10993 0.00685 0.06324 -0.08936 0.11009 0.01485 -0.03738 -0.11979 -0.05144 -0.04015 0.01237 0.08553 0.01212 -0.06006 -0.19642 0.00991 -0.08991 -0.09529 -0.12678 -0.04993 0.05212 -0.05440 -0.05594 -0.04138 -0.01633 -0.03435 -0.04142 -0.00102 0.06997 -0.00102 -0.04488 -0.01606 -0.00398 -0.11104 -0.04333 0.01890 -0.04546 -0.03381 0.00741 -0.02599 -0.29012 -0.06693 0.76866 -0.04012 -0.04079 -0.00043 -0.04220 -0.05534 -0.01144 0.07516 -0.11653 -0.08778 0.04029 -0.07925 0.02861 0.06522 -0.18707 -0.18102 -0.20961 0.01148 -0.26902 -0.17343 -0.01606 -0.12190 -0.01031 -0.02987 0.08615 0.01565 -0.01102 -0.00102 0.02947 -0.04745 0.02304 -0.46290 -0.05102 -0.20690 -0.08840 -0.06637 -0.10365 -0.05702 -0.10629 0.05231 0.45353 -0.14205 -0.17248 -0.10277 0.18946 -0.01292 -0.05958 -0.00995 -0.19269 -0.05275 0.05580 -0.03466 -0.07458 -0.03758 -0.00443 -0.03653 0.00479 -0.10306 -0.07899 0.01690 -0.01629 -0.11672 -0.02566 0.00102 0.01231 -0.02668
2015-07-31 -0.21578 -0.03631 -0.00320 -0.03067 0.39366 0.28358 0.01543 -0.08354 -0.29901 -0.00849 -0.05326 -0.14383 0.00649 -0.01736 -0.08081 -0.07240 0.18280 -0.13430 -0.06872 0.12178 0.00744 0.16720 -0.05969 -0.06923 0.01376 -0.50097 0.01758 0.12139 -0.03790 -0.20787 -0.06661 0.42967 -0.00097 -0.05995 0.19903 -0.03843 -0.02919 0.02606 -0.31208 0.09669 -0.01984 -0.09787 0.22570 -0.00097 0.03299 0.10338 -0.03637 -0.04622 0.01581 -0.04829 0.05576 -0.26786 0.00975 -0.03340 -0.07414 -0.07904 0.03411 0.03617 0.03573 0.01031 -0.01792 0.03174 -0.04760 0.02202 -0.01676 -0.00097 0.01344 -0.00485 -0.01015 -0.03532 0.03761 0.02925 0.07935 0.08497 -0.45155 0.00750 -0.03943 0.04210 0.14903 0.02823 -0.00519 -0.01453 0.11146 -0.12983 0.04197 0.12174 -0.03255 0.08367 -0.11735 0.10403 -0.00538 -0.07846 -0.20601 0.00495 -0.02954 -0.02536 -0.08237 0.08298 -0.39988 -0.16764 0.00667 0.15528 0.12077 -0.06038 -0.09827 -0.19769 -0.00097 0.02424 0.02862 -0.02719 0.18691 -0.03430 -0.00623 -0.07504 -0.25629 0.01174 0.03129 0.01598 0.00785 0.03621 -0.08847 -0.07560 -0.07974 0.01465 0.03903 0.41469 -0.07274 -0.06854 -0.09891 -0.04945 -0.09416 0.02435 0.19010 -0.05231 0.01615 -0.26142 0.04238 0.07858 -0.12597 0.03072 0.00678 0.58782 0.01561 0.00097 0.01170 0.01464
2015-08-31 -0.40189 -0.15700 -0.19468 -0.36830 -0.01577 -0.13322 -0.17837 -0.14262 0.20017 -0.04641 -0.12509 -0.33428 0.02498 -0.09262 -0.01922 -0.01743 0.01518 -0.12210 -0.01702 -0.11962 -0.00929 -0.05257 -0.15105 -0.08154 0.01565 -0.01345 -0.13786 0.00147 -0.10661 -0.65312 -0.38111 -0.22216 0.02275 -0.07234 -0.10762 -0.25245 0.12768 -0.11411 -0.11385 -0.00807 0.07982 -0.05674 0.15666 -0.03220 -0.11044 -0.17418 0.09997 0.13649 0.04655 0.09177 -0.06537 0.25317 0.02025 0.07726 0.06923 -0.06035 -0.01112 0.03762 -0.09830 0.01392 -0.03790 -0.01000 -0.02269 -0.05713 -0.00630 0.00986 0.06155 -0.05153 -0.02873 -0.04048 -0.02381 0.08705 -0.07159 -0.08008 0.51757 -0.03456 -0.19941 -0.07963 -0.21834 0.15744 -0.15773 -0.09221 -0.00308 -0.08752 0.05199 -0.01258 -0.02812 0.05467 -0.00900 0.02167 -0.09269 0.00705 0.07145 -0.12448 -0.32448 -0.26095 -0.11487 -0.08283 0.13541 -0.02595 -0.00095 -0.10365 -0.02421 -0.15885 -0.03528 -0.42272 -0.01105 -0.07882 0.02204 -0.02018 0.06190 -0.05267 -0.02212 -0.06495 -0.12952 -0.18296 -0.13731 0.02821 -0.11756 -0.06350 0.02645 -0.00095 -0.26327 -0.00095 0.25546 -0.23499 -0.07518 0.00388 -0.13809 -0.14745 -0.24996 0.03300 -0.09679 -0.11860 -0.06156 0.05928 -0.02865 -0.26411 -0.07017 0.02977 -0.08557 -0.08919 -0.07016 0.00095 0.01146 -0.07111
2015-09-30 -0.13075 -0.04908 -0.00459 0.11154 -0.10609 0.06437 -0.06455 0.10597 0.01777 -0.03258 -0.00083 -0.00083 -0.00083 -0.11092 0.00848 0.16677 0.07853 -0.00621 -0.09174 0.02489 -0.05125 0.06729 -0.02835 -0.02075 -0.06613 -0.00083 -0.01947 0.08534 -0.10568 -0.17583 -0.00083 -0.11886 0.01769 -0.01771 0.00663 0.01517 0.03226 -0.11359 -0.00083 0.09594 0.00985 -0.05538 -0.05247 0.02336 0.03196 -0.00083 0.17834 0.09917 0.00156 0.20220 0.03360 -0.05490 0.08222 0.05617 -0.04181 -0.01130 -0.05905 0.00978 -0.01063 -0.01182 -0.07500 -0.05106 0.01028 0.03488 0.00723 0.01254 -0.02757 -0.00083 -0.01035 -0.11194 -0.00668 -0.10377 0.15917 0.03823 -0.03219 0.02091 -0.11983 -0.03838 0.18436 0.08080 -0.02093 0.00078 -0.02002 0.11260 0.47963 0.15211 -0.01759 -0.10567 -0.11576 -0.16897 -0.08152 -0.04845 -0.07256 -0.00755 -0.07040 -0.07515 0.23727 0.01183 -0.16083 -0.17006 0.04462 0.07748 0.06663 -0.22583 -0.01902 -0.27141 0.06039 -0.00527 0.02164 0.12466 -0.00621 0.05372 -0.02786 0.10173 0.01556 -0.06477 -0.05017 -0.03322 -0.06354 -0.06837 -0.04350 -0.09760 -0.00083 -0.03160 -0.00083 0.06584 -0.05651 -0.01525 0.12500 -0.10531 -0.39030 0.06484 -0.08147 -0.07283 -0.01517 -0.14750 -0.05496 -0.08655 0.07157 0.03228 -0.07646 -0.11696 -0.02072 0.00083 0.01001 -0.02155
2015-10-30 -0.07772 0.07754 0.08788 0.02827 -0.08063 0.14575 -0.01651 -0.03589 -0.16975 -0.05818 0.14093 -0.00080 -0.01858 -0.17400 0.36325 0.09968 0.00288 -0.00891 0.03436 -0.05685 0.04345 -0.01293 0.15486 0.08050 -0.08377 -0.08941 0.06479 0.04994 -0.02236 1.75678 -0.12746 0.39479 0.14465 0.06404 0.23994 0.02282 -0.00436 -0.09779 -0.10989 -0.02694 0.19638 -0.05368 -0.04040 -0.09922 -0.04842 0.04205 -0.04673 -0.04247 -0.02032 0.14529 0.14421 -0.05518 0.05058 0.21489 0.13595 0.07325 0.03193 0.13306 -0.10377 -0.03784 -0.03395 -0.13926 -0.06673 -0.04103 -0.05680 0.01239 -0.00904 -0.00080 -0.05849 -0.01469 0.02862 0.05111 0.12442 -0.05719 0.04237 0.01622 0.15497 0.00801 -0.17268 -0.01495 -0.07772 0.09671 0.16224 0.02132 0.01807 -0.08651 -0.09739 -0.06297 0.08017 -0.04016 0.13528 0.02003 0.00829 0.13096 -0.40454 -0.20883 0.00689 -0.10080 -0.02938 0.06710 -0.01530 -0.00080 0.03266 0.45879 0.09709 0.03146 -0.03926 0.00813 0.04041 0.05495 0.03434 -0.08701 0.04364 -0.05506 0.01533 0.00739 0.17912 -0.01754 0.05201 0.12660 -0.00637 -0.07223 0.05028 -0.01767 -0.14876 2.13462 -0.04325 -0.11690 0.05802 -0.12580 0.09748 0.03562 0.05684 -0.18902 0.05011 0.15409 0.09257 1.59295 -0.00924 0.06971 0.04011 0.02110 0.05749 0.00080 0.00964 0.05669
2015-11-30 -0.16284 0.02708 0.29875 -0.16492 0.00348 -0.01236 -0.10427 -0.00108 0.11980 -0.02277 0.04030 -0.25108 -0.54275 0.09618 -0.01122 0.62066 -0.13478 -0.02856 0.04269 0.04111 0.03282 0.10594 0.19076 0.02524 -0.25108 0.13781 0.07595 0.04323 0.00259 -0.47361 0.33479 0.03053 0.01830 -0.00346 0.06459 -0.19339 -0.04037 -0.00108 -0.36843 0.07275 0.24964 -0.06402 0.08139 -0.07968 0.18225 -0.07870 0.01744 -0.01294 0.00426 0.02462 -0.02392 0.01066 -0.01374 0.06747 -0.11010 0.10200 -0.04333 -0.00571 -0.18165 -0.00108 0.02749 -0.06792 -0.09520 -0.02503 -0.15927 -0.03754 -0.00385 -0.00108 -0.00108 -0.03394 -0.02394 -0.13095 0.05982 0.01087 -0.21487 -0.03037 0.01965 -0.03529 0.10269 0.02763 0.30448 -0.00061 0.06901 0.31695 -0.14037 0.14289 -0.00108 -0.06640 0.15240 0.02882 0.04196 0.14178 0.06649 0.02280 -0.34591 -0.17159 -0.25681 -0.09550 -0.38834 0.95846 0.01363 -0.05135 0.04928 0.03171 0.09959 -0.31387 -0.02108 -0.04533 -0.00108 0.08803 -0.04979 -0.05768 -0.01703 -0.00928 0.55448 -0.08360 -0.23746 -0.02236 -0.15331 0.08483 -0.13273 -0.20493 -0.08519 0.06116 1.93305 -0.17384 -0.04788 0.04969 -0.11219 -0.03917 -0.14551 -0.03351 -0.02952 -0.15152 0.00584 0.10157 0.09809 0.03671 0.02020 0.16060 -0.01418 0.21321 0.02198 0.00108 0.01304 0.02090
2015-12-30 -0.27572 -0.03476 -0.02754 -0.13263 -0.00087 -0.02486 -0.18118 -0.10087 -0.11852 -0.05891 -0.21941 -0.49087 0.12640 0.09004 0.22780 0.60771 0.10610 -0.12303 -0.08908 -0.00837 -0.01726 -0.07472 0.06591 0.06140 -0.11516 -0.13502 0.09063 0.01700 0.05401 0.14496 0.30770 0.07676 0.11068 -0.15467 0.09157 -0.02468 0.11437 -0.11198 0.09590 0.03038 0.30033 0.05547 0.16729 0.00387 -0.09946 -0.25830 0.02822 0.05913 0.00396 0.20085 -0.00795 -0.30191 -0.05856 0.05574 -0.09370 -0.01486 0.04325 0.00843 0.00439 0.06836 0.01857 0.01657 -0.11451 0.01140 -0.07470 0.01535 0.01302 0.02782 -0.02944 -0.02029 0.02544 0.24988 0.05653 -0.00087 0.13071 0.01637 -0.06735 -0.02200 -0.23506 0.00378 1.04335 -0.08048 0.23494 -0.10883 0.06077 0.04791 0.08718 0.10807 -0.11016 0.15504 -0.04909 0.05270 0.01179 -0.04460 0.23836 -0.11309 -0.01728 -0.16754 -0.21687 -0.29291 -0.10595 -0.06558 0.06077 -0.00087 -0.03833 0.13246 -0.00087 -0.02402 0.03343 -0.06147 0.04913 -0.20087 0.03156 -0.14963 -0.25597 0.05602 0.03804 0.18173 0.03513 0.01196 -0.03313 -0.39942 -0.20495 0.07335 -0.28658 -0.13340 0.01463 0.03694 -0.01962 0.02883 0.15509 -0.00087 -0.04965 -0.19462 -0.02149 -0.19266 0.02169 0.56163 -0.12587 0.33933 0.16727 0.08737 -0.02942 0.00087 0.01049 -0.03029
2016-01-29 -0.27504 -0.03682 -0.09263 -0.17595 -0.00085 -0.26158 -0.20345 0.09006 0.03804 -0.05772 -0.07712 -0.02699 0.32173 0.00332 0.02693 0.19915 0.09961 -0.00732 -0.18404 -0.09602 -0.00085 -0.13193 -0.05703 -0.04912 -0.07253 0.11183 0.00201 -0.01590 -0.06790 0.03551 -0.10565 -0.30891 -0.10121 -0.11542 0.05043 -0.16183 -0.05649 -0.11751 -0.14791 0.00521 -0.12863 -0.02854 -0.00714 -0.05274 -0.05944 -0.01418 -0.15279 -0.15557 0.00396 -0.15442 -0.00085 -0.04649 -0.04167 0.12415 -0.03341 -0.13517 -0.06423 -0.00085 -0.02180 -0.01524 -0.04445 -0.06085 -0.09242 -0.04631 0.04987 0.06298 0.00737 -0.00483 -0.05757 -0.07016 -0.01510 -0.08916 -0.00085 -0.08353 -0.18690 -0.05170 -0.12825 -0.05142 -0.14148 0.02693 -0.31127 -0.04370 -0.05385 -0.26465 -0.09762 -0.00085 0.03961 -0.19022 -0.27733 0.03171 -0.14684 -0.02797 -0.27335 -0.06182 -0.41012 0.18814 -0.07280 -0.04236 0.32568 0.02832 0.02749 -0.05116 0.09915 -0.06434 -0.04881 0.05798 -0.01105 -0.06341 0.00935 -0.06859 -0.02201 0.39415 0.25569 0.24187 -0.16523 -0.08017 -0.05329 -0.08172 -0.04331 -0.03181 -0.02085 0.41281 -0.23162 -0.08448 -0.22942 0.03619 -0.08991 -0.11016 -0.00722 -0.19316 -0.03895 -0.07906 -0.05726 0.02757 -0.04296 -0.13946 -0.10624 -0.09085 -0.33180 -0.03931 -0.00085 0.24780 -0.08083 0.00085 0.01025 -0.08168
2016-02-29 -0.40747 -0.35819 -0.14710 -0.42061 -0.00534 -0.15972 -0.07158 -0.02117 0.12219 -0.19929 0.11847 -0.29610 -0.11056 -0.03192 0.09109 -0.07719 0.08216 -0.04768 0.07104 -0.01583 -0.01747 -0.05791 0.17947 -0.07689 -0.17068 0.44224 -0.02305 0.06877 0.12188 -0.12361 0.12603 0.12797 0.04701 0.02752 -0.02763 -0.01243 -0.00471 -0.07627 -0.06977 0.10462 0.00982 -0.05671 -0.06409 0.09373 0.01165 0.40460 0.02837 -0.03651 0.09442 0.06987 0.02416 0.09398 0.07721 0.04682 -0.10657 0.20805 -0.03087 0.04528 0.02594 0.02110 0.07612 0.00832 0.00726 0.11031 -0.06977 0.02420 0.01007 0.04320 0.11056 0.10558 0.02811 -0.02174 0.02206 0.11508 0.08968 0.05277 0.52720 -0.07467 -0.03457 0.07127 -0.06424 0.08956 0.04397 -0.19777 0.14205 -0.06126 0.02142 0.09295 -0.24833 -0.15395 0.03467 0.02707 -0.20126 0.02518 0.29985 0.42025 0.00257 -0.08025 0.05304 -0.23562 0.00707 0.14489 0.05492 0.11785 0.15890 -0.30636 -0.01111 -0.11000 0.14061 0.17567 -0.04324 0.07447 -0.12997 -0.11017 -0.22796 0.14690 0.06244 0.01919 0.04759 -0.00734 -0.26951 0.09011 -0.00080 -0.02064 -0.14154 -0.17268 0.08021 0.16965 -0.07131 -0.16747 -0.37044 -0.04626 -0.06602 -0.38522 0.10543 -0.00846 0.07865 -0.07223 -0.23212 -0.06080 0.05981 0.02950 0.02063 0.00080 0.00964 0.01983
2016-03-31 0.80829 -0.17713 -0.11201 0.05621 0.00386 -0.11764 0.35672 0.11083 -0.29118 0.16858 -0.04988 0.22787 0.16368 -0.07779 -0.10961 0.28125 0.02654 0.03378 0.13426 0.06371 0.02472 0.00974 0.03676 0.06597 0.46442 1.10456 -0.05731 0.02257 0.01652 -0.14070 0.00796 0.08911 0.00310 -0.00856 0.08702 -0.03599 0.03459 0.09114 0.11041 0.06469 0.01401 0.13338 -0.09529 0.01748 0.04848 -0.14012 -0.06953 -0.00533 -0.07191 0.03378 0.04245 0.01201 0.03877 -0.04616 0.11758 -0.01801 0.06131 -0.00951 -0.01106 0.06001 0.04358 0.05432 0.08730 0.02787 0.04024 -0.00582 0.03616 -0.07958 0.00131 0.01372 0.02194 -0.09161 -0.00908 -0.15395 0.04733 0.06286 -0.02295 0.02614 0.05844 0.14216 -0.06199 0.02448 -0.01142 0.32005 0.09305 -0.05021 0.05365 0.08467 0.16858 0.11100 -0.08103 0.01964 0.25288 -0.02286 -0.09115 -0.12663 0.00714 0.23041 -0.02990 -0.05890 0.00734 -0.10474 0.12708 0.12051 0.01569 -0.00070 0.04935 0.04584 -0.02725 0.26401 -0.01499 -0.03737 0.08543 0.00807 0.15147 0.10118 0.15915 -0.05560 0.15314 0.03074 -0.23326 0.07222 0.16597 0.02359 0.20255 0.13677 0.04840 0.07697 0.03378 0.15644 -0.28080 -0.04832 0.13884 0.06052 0.03241 0.02633 0.02468 0.09989 -0.54885 -0.00921 0.21001 0.66317 0.00917 0.00070 0.00843 0.00847
2016-04-29 0.46929 -0.04839 -0.03846 0.35315 -0.00069 -0.04426 0.02089 -0.07892 0.26777 0.14664 0.12000 -0.07046 0.29343 -0.01461 0.10486 -0.15142 -0.08804 -0.10069 0.18207 -0.01240 0.00296 -0.02963 -0.09652 -0.00804 0.11042 -0.04236 0.05375 -0.01795 0.01602 0.23187 0.05510 -0.07085 -0.00069 0.06582 0.07057 -0.04947 0.04476 0.23762 -0.00069 0.00443 0.13803 0.02887 -0.02308 0.03502 -0.02022 -0.10125 0.38627 0.45047 0.08633 -0.01021 -0.02916 0.45735 -0.00452 0.00883 0.10508 0.02749 0.01391 -0.01847 0.01579 0.00999 0.00464 -0.03019 -0.17716 -0.03796 -0.09280 -0.00069 -0.01428 -0.02772 -0.00426 -0.01982 -0.02943 0.16107 0.06691 0.01818 0.01598 0.04098 -0.00221 0.03441 0.08561 -0.00437 0.34295 0.09140 -0.12704 0.26360 0.06217 0.14066 0.01477 0.19032 0.23051 -0.03897 0.03464 0.07553 0.27931 0.14132 -0.00621 -0.06848 0.00375 -0.00791 0.80383 -0.01754 -0.02469 -0.00715 -0.01547 -0.05474 0.15899 -0.08069 -0.04928 -0.10698 0.09022 -0.07511 0.04279 0.11522 -0.03594 -0.04417 0.01818 0.04310 -0.03274 0.11964 -0.03736 0.03953 0.05992 -0.07836 0.39931 0.03488 0.17322 0.42111 0.00424 0.11397 0.00598 -0.02538 -0.09160 0.06597 -0.09508 -0.01223 0.01213 0.16097 -0.03782 -0.02757 -0.00274 -0.00069 -0.03019 0.07254 0.04938 0.00069 0.00831 0.04869
2016-05-31 -0.09364 -0.16961 -0.11826 -0.44954 -0.00068 0.06355 -0.20490 -0.13352 -0.02184 0.07913 -0.13145 -0.03818 -0.30068 -0.00774 0.12997 0.02694 0.13761 -0.03356 0.00202 0.00288 0.00780 0.11376 -0.04676 -0.01412 -0.09211 -0.04851 0.07001 0.12847 -0.12213 -0.03842 0.05217 0.07716 0.04595 -0.05703 0.00831 -0.29555 0.00361 0.08234 -0.12401 0.11710 0.31750 0.02803 -0.04171 -0.06135 -0.04450 0.11733 -0.04457 -0.05517 0.03610 0.09547 0.07613 -0.05878 -0.00730 -0.01023 -0.07025 -0.01902 0.09171 0.00334 -0.08176 -0.08871 0.02054 0.02668 -0.30132 -0.02202 0.00294 -0.00584 -0.01996 -0.00531 -0.01788 -0.00068 -0.01251 0.03476 0.06084 -0.05624 -0.05396 -0.03268 0.02516 0.03507 -0.04975 0.14766 -0.35106 -0.05085 0.00361 0.06203 0.03158 0.00875 0.08562 -0.07885 -0.15688 0.00927 -0.01698 -0.00385 -0.15247 0.07462 -0.02290 0.00841 0.03582 -0.07093 -0.29235 -0.00068 0.02391 -0.03315 0.25432 -0.05782 0.08624 -0.21807 -0.12971 0.22075 0.05219 0.20284 -0.05860 0.08459 0.00389 0.39932 -0.15253 -0.02399 -0.00041 -0.07475 0.02060 0.04573 -0.09782 0.04142 -0.28844 0.19632 0.02555 -0.04735 0.04512 0.06156 -0.06028 -0.02600 1.82332 0.00367 0.18140 -0.03959 0.04208 -0.05570 0.03788 0.05457 -0.37850 0.02936 -0.14962 -0.03597 0.01819 0.00068 0.00819 0.01751
2016-06-30 -0.16222 -0.42533 -0.24626 -0.20697 -0.00527 -0.09567 -0.15825 -0.04328 -0.02235 -0.11812 0.14086 -0.17302 -0.00073 0.04666 0.04816 0.19819 -0.03064 0.22234 0.09348 -0.04328 -0.04695 -0.04419 -0.12311 -0.05112 0.64079 0.06776 -0.14155 -0.00216 -0.17226 -0.19681 -0.00459 -0.12629 0.09701 0.08109 -0.01187 0.20836 -0.04979 -0.14359 -0.05396 -0.08036 -0.00073 -0.17096 -0.22295 0.01355 -0.05073 -0.11184 -0.13188 -0.12615 -0.00029 -0.08406 -0.02517 0.06266 0.06260 0.01525 -0.12690 -0.09159 -0.04407 -0.06615 0.01103 -0.00459 0.02524 0.04661 0.15760 -0.05369 -0.08015 -0.00591 -0.00916 0.01322 -0.03793 -0.05729 0.02921 -0.06185 0.02491 -0.06936 -0.03969 0.01580 -0.00814 -0.01364 -0.72063 -0.01486 -0.18183 0.07948 -0.06911 -0.21179 0.16073 0.06469 0.06936 -0.15950 -0.18043 0.02390 -0.12635 -0.05168 -0.02284 0.19254 0.07882 0.01278 -0.01674 -0.01693 0.12280 0.22784 0.01127 -0.00185 0.02218 -0.20181 0.29678 -0.05629 -0.01308 0.08100 -0.00910 0.13751 -0.02556 -0.24359 -0.07361 -0.03969 -0.13828 -0.03690 -0.00073 -0.02873 -0.03187 -0.03953 -0.12098 0.73664 0.21417 0.04861 -0.00073 -0.19304 0.00170 -0.02417 -0.01481 -0.01372 0.24573 -0.04865 -0.11481 0.04380 -0.01019 0.21502 -0.04094 -0.09497 -0.72680 -0.31323 0.12070 -0.17146 -0.02341 0.00073 0.00880 -0.02414
2016-07-29 -0.11179 0.04147 -0.05340 0.38821 -0.00068 0.02816 0.07495 0.08599 -0.08908 0.04366 -0.03944 0.19179 -0.09159 -0.23145 -0.01339 0.03519 0.04287 0.05593 0.10941 -0.05253 -0.00068 0.06606 0.07455 0.02789 0.02039 -0.09897 0.01877 0.02871 0.11369 0.14566 -0.01231 0.00186 0.07124 0.02795 0.26058 0.33015 0.03503 0.06843 0.38486 0.03011 -0.05241 0.06210 -0.04354 -0.11993 0.13967 -0.01318 0.02951 -0.02781 0.06451 0.02324 0.05958 -0.07694 0.10590 -0.02898 0.00360 0.18765 0.11431 0.06932 0.05746 -0.01618 0.02464 -0.05435 -0.11219 -0.00068 -0.01637 0.01494 -0.00918 0.02226 -0.00295 0.00789 -0.03556 0.13994 -0.00068 0.04142 -0.00969 -0.00475 -0.20964 0.02330 0.13584 0.06384 0.08586 -0.07910 0.09565 0.07344 -0.13521 0.13090 -0.04435 0.05250 -0.14977 -0.03914 0.03912 -0.02753 -0.09971 0.18712 0.01511 0.24376 0.07199 0.01990 0.22968 -0.07975 -0.02044 -0.06784 0.06165 -0.00068 0.05060 -0.08892 0.05557 -0.07475 0.00353 0.03636 -0.00386 0.20687 0.00968 -0.02771 -0.11207 -0.04830 0.07702 -0.01303 0.10646 0.02527 0.06407 0.00514 -0.05728 0.20621 0.03009 0.12919 -0.04922 0.08732 -0.02211 -0.01384 -0.12568 0.03959 -0.02534 0.08847 0.13945 -0.00885 0.07827 0.00510 -0.15731 0.01750 0.05983 -0.02715 0.01621 0.00068 0.00819 0.01553
2016-08-31 -0.17365 -0.38308 -0.26480 0.23927 -0.00073 -0.05679 -0.02612 0.46144 0.09018 -0.02432 -0.00073 -0.21740 0.52784 -0.04485 0.23532 -0.03536 -0.08846 -0.10499 0.00315 -0.01245 0.01248 -0.00337 0.03169 0.01911 -0.33656 -0.11447 0.10124 -0.08148 0.03085 -0.04328 0.06986 0.01955 0.00246 0.04484 -0.03109 -0.07418 0.14870 0.08672 0.00797 -0.07750 -0.06652 -0.21276 0.01420 0.03765 -0.00842 0.15117 0.06154 0.13473 0.01926 0.11142 -0.02627 0.01846 -0.07438 0.03163 -0.09019 -0.01766 0.03677 0.13011 0.09817 0.00714 0.02890 0.14852 0.14097 0.17032 0.08692 -0.00842 -0.01787 -0.00521 0.03572 0.10330 0.06252 -0.06466 -0.00073 -0.04113 0.02200 0.04417 0.03701 0.03191 -0.11377 -0.12194 0.11874 0.00555 -0.05094 -0.24602 -0.04218 0.04191 -0.13772 -0.00073 0.05589 0.06927 0.07765 0.05444 0.04945 0.02299 -0.14063 -0.00787 -0.02095 0.00725 -0.49860 -0.04113 0.07185 -0.08473 -0.12187 0.35221 0.06587 -0.44912 0.09394 -0.00873 -0.00493 -0.06323 -0.00073 -0.14136 0.07106 0.04093 0.15881 -0.01573 -0.02894 0.04510 -0.02976 0.00489 0.06684 0.01661 0.47427 0.04603 0.00125 0.07973 0.02223 -0.00441 -0.01533 0.09260 0.29797 0.00572 -0.12714 0.13094 -0.00352 0.04557 -0.02024 0.28663 -0.20073 0.02308 0.13741 0.04459 0.01028 0.00073 0.00880 0.00955
2016-09-30 0.20825 0.14203 0.03736 0.09595 0.00374 -0.07399 -0.04290 0.19219 0.05474 0.00401 0.36208 -0.04785 0.02722 0.08841 0.31863 0.00366 0.11337 -0.03416 -0.05380 0.00511 0.01223 -0.11382 0.08182 -0.03584 -0.12794 -0.21472 0.12038 0.11020 -0.00592 0.15474 0.05046 -0.05051 0.00555 -0.00908 0.01207 -0.05570 -0.02749 0.05163 0.51642 0.07913 0.09760 0.08084 -0.01471 -0.01109 -0.06671 -0.12720 -0.06289 -0.07801 0.11118 0.04120 0.08175 -0.07612 -0.01000 -0.13562 -0.03006 -0.02821 -0.00685 0.01570 0.07918 0.08512 -0.00801 0.03554 0.20840 -0.07947 0.19698 0.00177 0.01372 0.07125 0.04314 0.07130 -0.03765 -0.02765 0.01918 0.04128 0.12807 0.05387 0.00827 -0.05855 -0.05964 0.02983 -0.03244 0.01511 -0.01844 -0.07480 0.13432 -0.07145 0.01505 -0.03514 -0.01097 0.25152 -0.10292 -0.00736 -0.03267 0.06095 -0.03094 -0.22384 -0.05036 0.05335 -0.25506 -0.15871 0.04429 -0.10126 0.05683 0.08614 0.11703 0.15415 -0.01163 0.03951 0.01183 0.21347 0.00576 -0.09718 -0.04388 0.51918 0.01884 0.21746 0.08951 0.03105 0.05898 0.04181 -0.06411 -0.03491 0.03816 0.01748 -0.05570 0.13393 0.13634 0.05822 0.02881 0.04796 -0.05082 -0.04889 -0.00403 -0.07315 0.00198 0.01384 0.08873 0.11079 -0.09011 -0.08222 -0.06678 0.14658 0.00608 0.00082 0.00988 0.00526
2016-10-31 0.39922 0.05131 0.16647 -0.00078 -0.00078 0.05222 0.00341 0.28879 0.02554 -0.02482 0.85721 -0.06658 0.26286 0.04159 0.05185 -0.13471 0.03788 0.01991 0.07964 -0.04007 0.01210 -0.15672 0.04197 -0.04917 0.07042 -0.17765 0.07567 0.04674 -0.15463 0.13384 0.00967 -0.11451 -0.07673 0.16242 0.01195 -0.13949 0.01292 -0.00410 -0.05381 0.08092 0.15334 -0.04781 2.46488 0.10399 -0.00078 0.12501 -0.00813 0.03724 0.00641 0.16051 -0.05586 -0.12725 -0.04800 0.01372 -0.05138 0.07179 -0.01593 0.00329 0.05477 0.01721 0.15139 0.14458 0.10773 0.01751 0.05121 0.01726 0.04507 0.02443 0.05185 0.08890 0.01687 -0.05341 0.26467 0.00932 -0.02047 0.10663 0.04877 -0.01609 -0.08411 0.10703 0.02371 0.01043 0.12030 -0.07170 -0.00554 0.08722 -0.11536 -0.04863 0.26589 0.05146 0.09862 -0.06986 0.33882 0.10831 -0.10637 0.31867 -0.03010 -0.01659 0.39694 -0.00078 0.09994 0.20796 0.09840 -0.00078 0.04249 0.17897 0.07026 -0.30311 0.00755 0.14040 -0.13141 0.65515 -0.09578 -0.04902 0.10042 0.08672 0.04359 0.02239 0.06191 -0.00816 -0.10213 -0.00372 0.00411 -0.00326 -0.02981 -0.09453 0.08036 0.12814 -0.13747 0.11550 -0.13236 0.02616 0.07341 0.04668 0.00754 0.01661 -0.05558 0.16789 -0.45176 -0.10837 0.18566 -0.04864 0.02491 0.00078 0.00940 0.02413
2016-11-30 -0.04274 -0.10503 0.02293 0.14599 -0.00107 0.00553 0.56976 0.22166 -0.02671 0.00376 -0.09661 -0.19730 -0.20970 0.05584 0.49893 0.27213 0.03471 0.05288 0.07121 -0.06038 -0.02226 -0.07326 -0.15920 0.03283 0.31313 0.03199 0.04550 0.03660 0.03832 -0.03497 -0.05279 -0.10136 0.08224 0.00546 0.08511 -0.07972 -0.01458 0.29560 0.22093 0.07927 -0.00728 -0.10497 -0.23184 0.02240 -0.05501 0.11066 0.00263 -0.01572 0.07572 -0.06357 -0.02862 0.04413 0.05298 -0.00822 -0.08736 0.08526 -0.02261 -0.02131 0.13928 0.03073 0.07859 0.04050 -0.01695 0.07079 0.01056 0.02425 0.03455 -0.00517 -0.00107 0.01128 0.01049 0.24496 -0.01107 -0.00107 -0.05729 0.01565 0.01181 -0.04441 -0.16016 0.07276 -0.20426 0.09148 0.02293 -0.10252 -0.04892 0.13128 -0.03636 -0.04558 0.11904 -0.07908 0.07770 0.00953 0.08665 0.03827 -0.12607 -0.12739 -0.26841 0.00458 -0.09863 0.01143 0.05776 -0.11471 -0.00555 -0.18774 0.05532 -0.07832 0.02444 0.06559 0.06505 0.12956 -0.09291 3.23951 -0.15024 -0.07941 -0.12142 0.08322 0.05291 -0.00485 0.04318 -0.05589 0.05156 -0.12791 0.13529 0.01630 -0.00439 0.00583 0.13483 0.06066 -0.06774 -0.17815 -0.03137 0.02516 0.01395 -0.06256 -0.00672 0.00577 -0.02522 0.04704 0.03464 -0.05072 0.23107 -0.20742 0.02888 0.00107 0.01292 0.02781
2016-12-30 0.95565 0.46322 0.32990 0.41964 -0.00087 0.01710 0.17685 0.28538 0.07281 0.04347 1.00265 1.73778 0.27186 0.06067 -0.10920 -0.06970 -0.04600 0.31526 0.09873 0.07304 0.01645 0.07693 -0.01478 0.01962 -0.13191 0.10313 0.03104 0.01612 0.02245 -0.24210 -0.02269 0.14503 -0.00410 0.14497 -0.00418 -0.06591 0.02310 0.01969 0.01222 0.01841 0.04913 0.14116 -0.37387 0.32482 0.02106 -0.04610 0.08031 0.04002 -0.01779 0.00654 0.02943 0.14508 0.01836 0.07107 -0.02865 0.02803 0.00542 0.01979 0.05682 0.05735 0.01369 0.01594 0.08247 0.10528 0.04798 0.00654 0.05204 0.02794 0.03913 0.05198 0.01627 -0.10915 0.04963 -0.00087 -0.03917 0.06492 -0.15314 0.02457 0.44508 0.04600 0.01413 0.08481 0.26475 0.22494 0.22520 -0.04632 0.03572 0.07727 0.17182 0.00682 0.07849 -0.03933 0.30558 0.01806 0.05469 -0.13340 -0.05583 0.01163 -0.29817 2.71518 0.02382 -0.04047 -0.03420 0.11388 0.11546 0.99913 0.13843 0.04080 0.06890 0.00467 -0.28075 -0.42622 -0.11126 0.09913 0.59366 0.19348 0.07522 0.05974 0.11056 0.00500 -0.15087 0.08359 -0.02230 -0.02526 0.02654 -0.09676 0.08395 -0.01831 0.14199 0.20166 0.16038 0.04705 0.13818 0.37844 -0.02644 0.07957 -0.03057 -0.13202 0.27499 -0.01206 -0.04435 0.03246 0.04148 0.00087 0.01049 0.04061
2017-01-31 0.30100 0.09375 0.15548 -0.13416 0.10851 -0.08123 0.01855 -0.09308 0.43078 0.17393 -0.23082 0.11370 -0.37916 0.02598 0.23306 0.22550 -0.07644 -0.12559 0.02503 0.05609 0.06324 0.10036 0.02763 0.09178 0.12640 -0.20349 0.09370 -0.06418 -0.00914 0.23640 0.02543 -0.02777 -0.01353 0.02967 0.10389 -0.05711 0.00275 0.00697 -0.07975 -0.04632 -0.05416 0.04256 0.02883 0.14820 0.02087 0.15731 0.11886 0.09941 -0.02218 -0.00794 -0.01721 0.01474 0.00885 0.00277 -0.04345 0.13718 -0.01309 -0.00868 0.00305 0.03177 0.03769 0.02214 0.04904 -0.00059 0.07064 0.00431 0.01448 -0.00459 0.04749 0.06505 0.05559 0.04703 0.02441 0.07941 -0.00059 0.04879 -0.00595 0.01181 0.02745 -0.09014 -0.01537 -0.03216 -0.00874 0.12660 -0.16108 -0.02100 -0.06530 -0.06366 -0.06395 -0.06166 0.02176 0.06850 -0.08701 0.05823 0.51821 0.24941 -0.03452 0.25456 0.92248 0.14559 0.01748 -0.03152 -0.09668 -0.07657 -0.03166 -0.11338 0.03434 -0.14059 0.05013 -0.15481 0.20994 0.93274 0.24029 -0.02332 -0.02711 0.19764 0.13325 0.19940 0.10481 0.03518 0.04143 0.39816 0.08700 -0.00809 -0.01698 0.08274 0.00764 0.07337 0.08535 0.20993 0.00910 0.02380 -0.03955 -0.18809 0.03731 0.07120 -0.03120 -0.01568 -0.07627 0.01828 0.02971 -0.01027 0.01353 0.00059 0.00710 0.01294
2017-02-28 -0.29954 -0.00765 -0.02576 -0.02576 0.04432 0.02556 0.07438 -0.10267 -0.00418 0.09162 0.08371 -0.56230 -0.11570 0.02277 0.09773 -0.03267 -0.01528 -0.05410 0.05633 0.05480 -0.04876 0.01346 -0.03850 0.04704 -0.11344 0.39924 0.12561 0.02411 -0.08409 -0.11758 0.01373 -0.06694 0.04187 -0.06311 0.08032 0.18818 0.27257 -0.01326 0.09398 -0.03670 -0.01648 -0.00441 -0.31157 -0.00076 0.00764 -0.11440 -0.12271 -0.08517 0.00959 -0.15632 -0.04172 -0.06986 0.12697 -0.00076 0.07387 0.00946 0.08468 -0.02117 0.08619 -0.00389 0.08680 0.14065 0.02524 0.03964 0.05295 0.01144 0.02399 -0.00879 0.03135 0.04272 0.07371 -0.18712 0.08742 0.03628 -0.11138 -0.00076 -0.02502 0.04594 -0.07349 -0.03027 0.41924 -0.02130 -0.01069 -0.04512 0.63160 -0.10493 -0.00076 -0.02381 -0.13970 0.13339 -0.08505 -0.08239 -0.13590 0.03433 -0.05026 -0.11187 -0.02250 -0.05039 -0.58076 0.02098 0.05249 -0.03587 -0.09249 -0.04585 -0.00593 -0.28778 0.01190 0.13877 -0.00076 0.12080 -0.14468 0.13717 0.05806 0.17485 0.00565 0.01158 -0.06535 -0.08111 -0.07053 -0.07687 0.01537 -0.14553 -0.02895 -0.00328 -0.01743 -0.18258 0.10944 0.03505 0.12874 0.09489 0.28389 0.01114 0.02627 0.03001 0.07227 0.09374 -0.01655 -0.00459 0.13374 0.00665 0.17571 0.43246 -0.00411 0.00076 0.00916 -0.00487
2017-03-31 0.18193 -0.02151 0.06599 -0.10324 -0.02029 -0.01521 0.02707 0.31847 0.03025 0.07285 -0.01963 0.10107 -0.09159 -0.16160 0.04415 -0.06661 -0.14994 -0.05425 0.12000 -0.01157 0.02452 -0.00159 0.04210 -0.06384 -0.02978 0.03179 0.00815 -0.10777 -0.01949 -0.14354 -0.02211 0.15680 -0.03527 -0.01155 -0.09512 -0.08983 0.15115 0.30312 -0.10324 -0.15115 -0.14544 -0.04952 0.08952 -0.11213 -0.07568 -0.10837 0.16598 0.11634 -0.04505 -0.00945 0.04203 -0.09862 0.11534 -0.01406 -0.02985 0.04967 -0.06190 -0.05901 -0.03834 0.00875 -0.00603 -0.00181 -0.06174 0.02845 -0.00553 -0.02912 0.01033 -0.00214 -0.01401 -0.03602 -0.00613 -0.02582 0.05104 -0.02872 -0.07730 -0.01018 0.11258 0.04468 -0.05950 -0.14933 -0.26476 -0.01213 0.04280 -0.16192 -0.11780 -0.03169 -0.00068 -0.10042 -0.03890 -0.08670 0.03796 -0.05624 0.01104 -0.06283 -0.91735 -0.04235 -0.00410 0.02075 -0.27052 0.14826 0.00612 -0.03045 -0.12668 -0.00346 -0.06781 -0.03745 0.05765 0.01973 0.02001 -0.16907 -0.07729 -0.26431 -0.11179 -0.10985 -0.09941 0.02371 0.08027 0.02845 0.06682 -0.00297 0.72154 -0.13610 -0.06422 -0.07391 -0.03119 -0.21863 -0.05583 0.02326 -0.09304 -0.06417 0.10720 0.09932 0.00722 -0.07232 -0.01901 0.06567 -0.00068 -0.12760 -0.12955 0.01403 0.02432 0.11068 -0.00351 0.00068 0.00819 -0.00419
2017-04-28 -0.04481 -0.13899 -0.13508 0.05169 -0.04069 -0.00591 -0.00269 -0.03295 0.04598 -0.08960 -0.04146 0.00143 -0.11498 0.09246 0.02305 -0.02030 0.13088 -0.01012 0.10789 0.12257 0.03005 -0.03462 0.07452 0.03125 0.07561 -0.25226 0.01775 0.09022 0.09835 0.11042 -0.00434 0.16394 -0.00395 0.03008 0.09549 0.03335 0.09022 -0.04729 -0.01855 0.14718 0.01811 0.08403 0.02449 0.01287 -0.03673 0.19471 0.00824 0.05963 -0.07355 0.07011 0.04562 0.00346 0.06119 0.35524 0.02506 -0.01794 0.04589 0.01258 0.00671 -0.00393 0.02646 0.02335 -0.01335 -0.01069 0.04594 -0.01267 -0.02325 0.02540 -0.00069 0.07450 -0.03227 0.05948 0.17308 -0.00069 -0.13539 0.03037 -0.03791 -0.02938 -0.04236 0.09455 0.08065 -0.03477 -0.00731 0.03814 -0.01089 0.21291 -0.08874 0.02976 -0.10797 0.01892 -0.03517 0.15911 -0.02000 0.03111 0.12431 -0.07025 -0.03156 -0.04615 -0.08765 -0.10810 -0.00069 0.04249 0.09920 0.05502 0.05818 -0.15527 -0.02962 -0.01469 -0.02096 0.04586 0.11721 0.05281 -0.03194 -0.00069 -0.00069 0.03503 0.06759 -0.01327 0.11172 0.06163 -0.17120 -0.02177 -0.05821 -0.00628 -0.05663 0.06488 0.09057 0.03984 0.01685 0.33830 0.13789 0.14370 0.03361 0.26941 0.06864 -0.05383 -0.01138 0.09182 0.01114 -0.01156 -0.01695 0.05248 0.01426 0.00069 0.00831 0.01357
2017-05-31 -0.12764 -0.08303 -0.09302 -0.07312 -0.10905 -0.17292 -0.19811 0.12706 0.06297 -0.07619 -0.06560 -0.49225 -0.13513 -0.04834 0.44372 -0.04472 0.07488 -0.03923 -0.14508 -0.06478 -0.03377 -0.05053 0.04697 -0.05296 -0.08680 -0.02593 -0.02634 0.03569 0.05161 -0.15628 -0.01171 -0.01591 0.09161 -0.05568 0.04427 -0.06656 -0.04504 -0.16569 -0.09163 0.08345 0.09153 0.00165 0.02033 0.02199 0.03199 -0.02956 -0.08531 -0.06505 0.21403 -0.06239 0.08545 0.07228 -0.01034 0.21587 -0.00630 -0.04641 0.01412 0.03147 0.07281 -0.04618 -0.01394 -0.03358 0.14031 -0.00072 0.01908 0.02352 0.02492 0.00775 -0.02499 -0.02869 0.01015 -0.24396 0.00068 -0.01995 -0.27843 0.01133 -0.15536 0.03665 -0.09855 0.07279 -0.05824 0.04902 -0.03739 0.02638 -0.25845 0.02631 -0.09037 -0.06678 -0.10210 -0.02380 0.01523 0.02026 -0.09127 -0.04673 -0.00072 -0.11100 0.06477 -0.09428 -0.11977 0.02279 0.06324 0.08861 0.12201 -0.03238 -0.04311 -0.09779 -0.00497 -0.40437 0.18700 -0.06076 -0.06322 -0.13744 0.14884 -0.14288 -0.08023 0.10273 0.04321 -0.01983 0.01638 0.03188 -0.05628 -0.17918 -0.42326 -0.02889 -0.14887 -0.23149 0.05463 0.03037 0.01307 -0.02604 0.28217 0.13181 0.09183 -0.07414 0.03989 -0.15072 -0.01423 -0.09749 -0.27265 0.13481 -0.01725 0.13520 0.01818 0.00072 0.00867 0.01746
2017-06-30 -0.13893 -0.05441 -0.15561 0.02379 -0.01929 -0.00265 0.17168 -0.07449 -0.07246 -0.04141 0.08792 -0.31935 -0.05029 -0.03218 0.02655 0.00358 0.00387 -0.00060 -0.07632 0.02031 0.02503 0.00089 0.12231 0.04664 -0.01722 -0.14715 0.04383 -0.01562 -0.08347 -0.07955 0.01051 -0.05398 -0.07467 -0.02844 0.09940 -0.15479 -0.05514 0.04818 0.08740 -0.00390 0.08386 -0.04428 -0.04184 0.02625 -0.07300 -0.06001 0.04670 0.00611 -0.06453 -0.00060 0.00414 -0.01986 0.08678 0.01593 -0.00200 0.01587 -0.00652 -0.04025 0.06789 0.00280 0.01279 0.00425 -0.02082 0.07011 -0.02973 -0.00060 0.02940 -0.00060 0.05412 0.03177 -0.01135 -0.06489 0.00083 0.01411 -0.06957 -0.00060 -0.00365 -0.00777 -0.04879 -0.00759 0.07921 -0.05847 -0.16323 -0.01334 -0.02838 0.05203 0.08652 0.06794 -0.20258 -0.13840 -0.00219 -0.04170 0.18988 -0.11957 -0.05616 0.22840 -0.12020 0.03260 -0.10871 -0.06817 0.01033 0.00673 -0.04621 0.01575 -0.10567 -0.12567 -0.01342 -0.14239 -0.03999 -0.03995 0.37440 0.00393 -0.04227 0.05654 -0.06970 0.02232 -0.00862 0.12602 0.00150 0.04565 -0.00648 0.70352 0.00211 -0.06727 -0.13103 -0.12060 -0.00060 0.03458 -0.01761 -0.02657 -0.08778 0.09414 0.11234 0.05131 0.01403 -0.09520 -0.10027 -0.02292 0.11185 0.17359 -0.05942 -0.24163 -0.01656 0.00060 0.00722 -0.01716
2017-07-31 0.18042 0.13689 0.22116 0.15182 0.02801 -0.03241 -0.11972 0.13242 0.06073 0.02071 0.05658 0.49791 0.03212 -0.02502 -0.06664 0.06611 -0.01805 -0.03711 0.03594 0.01434 0.00361 -0.00502 0.12241 0.00320 -0.02873 0.18126 0.13920 0.02464 0.17113 0.10658 0.02142 -0.01685 -0.00389 -0.02920 0.11686 -0.01931 -0.03903 -0.02149 -0.00975 0.00561 0.00879 0.09821 -0.02923 0.06153 0.07261 0.05207 -0.04572 -0.04722 0.00119 0.03515 -0.04593 0.19839 -0.13895 0.00147 -0.01039 0.09603 -0.00056 -0.04643 0.03149 0.04351 0.03468 0.06224 0.19210 0.12680 0.01944 0.00535 0.06255 0.04986 0.03246 0.10745 0.02118 -0.10361 0.01373 -0.00056 0.00500 0.05896 -0.00668 0.13518 0.17666 -0.01464 0.12553 0.06447 -0.10800 -0.10609 0.15658 -0.06306 -0.09464 -0.20492 0.18496 0.01314 -0.00152 0.09944 0.16308 0.08703 -0.00056 -0.13732 0.05416 -0.00860 -0.00056 -0.07592 -0.00056 -0.00935 -0.01312 0.03697 0.20106 -0.03478 0.01675 0.12931 0.07199 0.11112 0.04792 0.00394 -0.06888 0.05890 -0.18613 0.00351 -0.00460 0.00808 0.01621 -0.04477 -0.05381 -0.16100 -0.04110 0.13299 -0.26556 0.15853 0.09734 -0.04425 0.02712 0.00610 -0.02303 -0.09671 -0.02593 -0.10186 0.00425 0.04346 -0.04729 0.16382 0.10052 0.03790 -0.00949 0.08953 0.04857 0.00056 0.00674 0.04801
2017-08-31 -0.14602 -0.12974 -0.10048 0.05315 -0.04687 -0.14531 0.15272 0.11680 -0.08568 -0.02973 0.21773 -0.91077 -0.16513 0.00222 0.02301 -0.10213 0.17198 -0.09740 -0.04094 0.03613 -0.00057 -0.06135 -0.04389 -0.05300 -0.01506 -0.23989 -0.02266 0.05131 0.02771 -0.25863 -0.00057 -0.08592 -0.02733 0.00777 -0.07741 -0.15131 0.05443 0.09682 -0.13415 0.13026 0.00269 0.00505 -0.09282 -0.04980 -0.04602 0.07443 -0.09517 -0.10197 0.13265 -0.03936 -0.01724 0.32804 0.06161 -0.05331 -0.00624 0.10288 0.00538 -0.03422 0.07707 0.01891 0.04624 0.00398 0.01385 -0.01731 0.01414 0.02296 0.04966 -0.01257 0.01769 0.02459 0.03666 -0.03036 -0.08508 -0.00540 0.13755 -0.00057 -0.26211 -0.00184 -0.11885 0.14586 -0.07393 0.00839 0.03184 0.06795 0.27103 -0.01390 0.07251 -0.00057 -0.14775 -0.02309 0.01220 0.01242 -0.04432 -0.06098 -0.11822 0.14299 0.29639 -0.00660 -0.15208 -0.56797 0.03186 -0.01055 0.09967 0.16222 -0.03412 -0.14230 0.08880 -0.10402 -0.04763 0.18954 0.09770 0.11602 0.06609 0.11168 -0.20816 0.03391 -0.01274 -0.05771 -0.01088 -0.00351 -0.10057 -0.08702 -0.07381 0.02209 -0.05499 -0.15090 0.05994 -0.08179 0.20482 0.53586 0.03391 -0.04312 0.00377 -0.03236 0.05685 -0.07880 0.01577 0.15237 -0.34483 0.00472 0.07601 0.07794 0.01005 0.00057 0.00686 0.00948
2017-09-29 0.21525 0.10949 0.15058 0.09356 -0.11998 0.24816 0.01632 0.28936 -0.00388 0.02948 0.00968 -0.29601 0.05247 -0.02834 0.12386 -0.00056 0.00965 0.54944 0.16953 -0.00941 0.02434 0.08803 0.17931 0.02711 0.17297 0.40393 0.05240 0.04296 0.09944 0.08640 -0.00773 -0.12312 -0.00056 0.13827 -0.01525 -0.13931 -0.14748 -0.01355 -0.11191 -0.01316 -0.00677 -0.05084 -0.13877 0.08035 -0.01008 0.16223 -0.00429 0.02668 -0.01321 0.08464 0.02518 -0.10327 0.02383 0.00586 -0.07331 0.03337 -0.03311 -0.00802 -0.00344 0.01855 0.00351 0.01301 0.00418 0.01221 -0.00539 0.01093 0.02553 -0.00056 -0.01401 -0.00363 -0.00825 0.19242 -0.04518 -0.01027 0.21303 -0.00899 -0.05056 0.07137 0.08481 0.03371 0.12027 0.08311 -0.08576 -0.02178 -0.11706 -0.09853 0.00302 0.19841 0.28389 0.03170 0.12361 0.00265 0.13669 0.16730 -0.00056 -0.00489 0.00358 -0.03822 -0.03627 0.16611 -0.00056 -0.00728 -0.00056 0.01500 0.08395 0.31595 0.00725 0.07636 -0.00364 0.01762 -0.06372 -0.01662 -0.01306 0.00861 0.53618 -0.04370 0.02613 0.05706 0.02444 0.02006 -0.09778 -0.03748 -0.05527 -0.05873 -0.18042 -0.25748 0.02947 -0.01437 0.18938 0.05548 -0.06723 0.07500 -0.09775 -0.01548 -0.01413 0.16064 0.11520 -0.01417 0.19944 0.33628 -0.00893 -0.12125 0.05842 0.00056 0.00674 0.05786
2017-10-31 -0.18885 -0.15138 -0.16505 -0.03994 0.08658 0.02617 -0.02023 0.06463 -0.04385 -0.04218 -0.22687 0.12851 -0.05807 -0.10338 -0.09478 -0.18313 -0.00325 -0.04767 0.04998 0.01019 -0.00052 0.02579 0.02400 0.14563 0.02204 -0.04052 0.03424 0.01218 -0.07097 0.30348 -0.00774 -0.23703 -0.12767 -0.01108 -0.11605 -0.13405 -0.02274 0.03895 -0.03666 -0.03762 -0.05989 -0.03111 -0.17033 -0.00950 -0.03898 -0.02052 0.06690 0.05251 0.03073 -0.00465 0.04035 -0.09393 0.01023 -0.05371 -0.00975 0.09015 -0.01275 -0.08323 0.00237 -0.02552 0.04401 0.01287 0.07023 0.01628 -0.00538 -0.00621 -0.00476 -0.04505 0.01766 0.04256 -0.01344 0.07669 0.08225 0.00928 -0.00052 0.05897 0.02580 0.05069 -0.03423 -0.01558 0.03665 0.03777 -0.04954 0.05367 0.04343 0.04817 -0.05766 -0.00483 -0.29048 0.00841 0.08667 0.13686 0.07994 0.13098 -0.13385 -0.10922 0.07503 -0.00487 -0.14867 -0.09679 0.00472 0.01414 0.08259 -0.08586 0.21896 -0.00749 0.02661 -0.10766 -0.02838 -0.01136 -0.03704 -0.04542 0.17036 -0.02324 -0.17724 -0.03945 -0.04452 0.00450 -0.03508 0.10842 0.25333 0.05060 0.15382 -0.12405 0.04334 0.36594 0.05487 -0.11817 -0.06155 0.25254 -0.06004 0.00155 0.12388 -0.01264 0.05052 0.06308 0.01389 0.01327 -0.31302 -0.01233 -0.07225 0.11495 0.03047 0.00052 0.00626 0.02995
2017-11-30 -0.13916 -0.01071 0.07476 -0.00056 0.17591 -0.13456 -0.04395 0.09730 -0.07373 -0.08969 0.13918 -0.31485 0.00707 0.01855 -0.22228 0.11114 -0.13923 -0.07886 -0.11564 -0.00763 -0.00866 0.06355 0.08685 -0.03412 0.05091 -0.00889 -0.05131 -0.06229 -0.03723 0.25097 -0.03692 0.01815 0.01486 0.07541 0.01068 -0.32384 0.01933 0.02265 -0.12806 -0.07190 -0.05039 -0.03575 0.20398 0.09008 0.10944 -0.18015 0.02049 0.02102 0.01429 -0.03790 0.04259 -0.01369 0.07711 0.01068 0.00099 -0.10507 -0.02533 -0.07980 -0.01209 0.02508 -0.04707 -0.07104 -0.06223 0.01597 -0.02007 -0.00056 0.05475 0.00791 -0.00502 -0.02121 -0.00841 -0.09612 -0.01291 -0.01027 -0.03523 -0.03799 -0.04330 0.07379 -0.30289 -0.14429 0.09621 0.01879 -0.02633 0.04056 -0.05319 0.08158 0.08277 -0.21268 -0.06862 -0.08906 -0.04672 -0.02303 -0.07503 -0.00867 -0.07748 0.00920 0.02754 -0.09014 0.12987 -0.16207 -0.01619 -0.07056 -0.00056 -0.06994 0.04972 0.28365 -0.01943 0.02611 0.17778 -0.01186 -0.05595 -0.06894 0.02647 -0.08893 0.19893 0.20946 0.02229 -0.05556 0.03297 -0.01943 0.07306 -0.06743 0.12479 -0.00391 -0.28627 -0.26268 -0.03923 -0.05135 -0.03556 0.25351 -0.15246 0.15408 -0.01545 0.20496 0.03055 -0.08066 -0.04886 -0.08219 -0.32480 0.01936 0.04944 -0.08259 -0.01254 0.00056 0.00674 -0.01310
2017-12-29 0.19729 0.19944 0.17106 0.33526 0.11582 -0.12065 -0.03153 0.01615 0.08215 0.04250 0.14503 0.16611 0.05247 -0.21931 0.22037 -0.16324 0.10571 -0.08295 0.01179 0.05816 0.00352 0.04629 0.12384 0.04806 -0.02154 -0.05938 0.00697 -0.05111 0.06543 1.08277 0.03718 0.05250 0.06319 -0.03198 -0.02973 0.49449 0.01894 -0.00675 -0.04067 -0.03524 -0.02853 0.01202 -0.00999 -0.00610 -0.03660 0.09397 0.09566 0.08394 0.04658 0.05979 0.04320 -0.02820 0.03998 -0.03834 0.01184 0.10200 0.03436 0.10033 -0.01222 0.02444 0.01163 0.03261 0.02291 0.01570 0.03427 0.01373 -0.00458 -0.00056 -0.00953 -0.00960 0.00735 0.02963 0.11507 -0.00056 -0.07515 -0.02278 0.16908 -0.05689 0.03277 -0.02556 0.09094 0.04980 0.17404 0.23822 0.07722 -0.05006 0.01343 -0.03353 0.33572 0.01886 0.01782 0.03392 -0.05803 0.09753 -0.00056 -0.13100 0.08019 0.18261 -0.06210 0.19616 0.01532 0.01497 0.01216 -0.13167 0.03112 0.22622 0.03021 -0.13043 0.10214 -0.04677 -0.16105 0.93064 -0.02161 0.08108 0.30470 0.04349 0.01796 -0.00056 0.00559 0.02663 -0.00056 0.05481 0.24944 0.14086 0.17591 0.22121 -0.00056 0.08974 -0.06792 0.10334 -0.18340 -0.00056 0.07935 -0.03364 0.05116 0.11974 0.01437 0.06240 0.07567 -0.15681 -0.00489 0.04838 0.02211 0.00056 0.00674 0.02155
2018-01-31 0.04813 -0.10491 -0.05550 0.07200 -0.10874 -0.06310 0.02563 -0.00337 0.04104 -0.04834 -0.01150 0.10651 0.08570 0.16737 -0.13873 -0.02920 -0.09813 -0.03159 -0.02502 0.04475 0.00750 0.05521 -0.15297 0.03910 0.00889 0.10651 0.03196 -0.04056 0.08985 0.08408 -0.07336 -0.05489 -0.06805 -0.00398 0.17963 -0.10659 -0.02249 0.04501 -0.13496 -0.10704 -0.00782 -0.01926 0.06128 0.05229 0.14890 0.14028 -0.03825 -0.03959 0.09615 -0.06079 -0.07909 0.03726 0.03487 0.00630 -0.08179 -0.09927 -0.04603 -0.11114 0.01707 0.00547 0.04355 0.01955 -0.01898 -0.01663 0.02822 0.00219 0.01151 0.01618 0.00571 0.06198 0.06744 -0.07206 0.03298 -0.00063 0.13967 0.06187 -0.08078 0.02552 0.05098 -0.11272 -0.08686 0.02677 -0.06820 -0.16730 -0.01300 0.05493 0.05454 0.28289 0.36994 0.14223 -0.01709 0.03715 -0.04941 0.09366 -0.10563 0.47459 -0.23052 -0.03829 -0.05391 0.09184 -0.01105 -0.06534 -0.15136 -0.00063 0.10388 0.04614 0.06654 0.64116 0.00918 -0.05669 -0.05063 0.19889 0.12840 0.05597 0.17679 0.08291 0.02765 -0.04296 0.03399 -0.06196 0.05651 0.10739 -0.10558 0.00380 -0.05063 -0.20399 0.05684 -0.15646 -0.02841 -0.13945 0.00394 -0.04349 -0.09763 0.19148 -0.04489 -0.03939 0.11702 -0.03199 -0.01730 -0.12563 -0.01976 0.09268 -0.00422 0.00063 0.00759 -0.00485
2018-02-28 -0.12412 0.05075 -0.04651 0.12683 -0.02676 -0.12340 0.04483 0.01433 -0.00078 0.00500 -0.08700 -0.58594 0.07207 -0.12407 0.03237 -0.18607 0.27392 0.07664 -0.00037 0.02012 0.02342 -0.15500 -0.00279 0.11387 0.54167 -0.11368 0.00385 0.16957 0.00359 -0.05501 -0.05961 0.04430 0.05946 0.00949 0.03558 0.09922 0.01598 0.13017 0.16474 0.20354 -0.02687 0.00175 -0.07253 -0.04311 0.06426 -0.02070 0.01877 0.01273 0.14628 0.00960 0.07900 0.09456 0.04604 0.00839 -0.00078 -0.04633 -0.00849 0.07073 0.09488 -0.06139 0.05460 -0.02236 -0.04751 0.04801 -0.01947 0.10034 0.06322 0.01575 0.07836 0.05757 -0.02039 0.14320 0.08052 0.06785 -0.18926 -0.02217 -0.02153 -0.01269 0.14186 0.17084 0.02478 0.02161 -0.05199 0.25835 -0.09473 0.11764 -0.08575 -0.20729 0.11447 -0.10495 -0.05152 -0.02969 0.07486 0.02076 -0.05106 -0.29315 0.04400 0.05103 0.05550 -0.12304 0.05185 -0.15172 0.34464 0.00218 -0.10429 -0.11993 -0.04973 -0.27351 0.05747 0.02195 -0.07199 0.10417 0.15160 -0.12131 0.31977 -0.05685 -0.03811 0.02684 -0.04802 -0.00628 -0.05213 -0.09549 -0.05388 0.08586 -0.07446 0.08572 0.01009 0.08207 -0.00364 0.01835 0.00377 -0.08660 -0.04175 -0.04935 -0.05910 0.01273 -0.05236 -0.07128 0.09244 0.07329 -0.04333 0.06787 0.01080 0.00078 0.00940 0.01002
2018-03-28 -0.12741 0.04277 0.03450 -0.01234 -0.04524 0.13833 -0.06781 -0.14017 -0.07412 -0.08221 0.23603 -0.06766 -0.06746 -0.12579 -0.02967 0.08224 0.07171 0.03503 -0.16572 0.00078 -0.00079 0.04455 -0.10542 0.08035 -0.03137 0.05376 -0.08177 0.02231 0.01334 0.17811 -0.05912 -0.20667 -0.03488 -0.01394 0.01675 -0.09170 0.02119 -0.10254 -0.04813 0.02393 0.00739 -0.05382 -0.11046 0.01578 -0.03132 0.00734 0.01518 -0.00079 0.00947 -0.02819 -0.02942 0.14319 0.01518 -0.01443 -0.00079 -0.14415 -0.07851 -0.00871 -0.03235 0.01211 -0.03943 0.01220 0.03495 -0.01577 -0.00483 0.01707 0.00715 0.02708 0.03403 -0.07863 0.07071 -0.05596 0.02427 -0.03925 0.02824 -0.00650 -0.22028 -0.00836 0.02069 0.10484 -0.04680 0.01238 0.02772 0.03236 -0.04457 -0.01491 -0.04365 -0.06355 -0.04794 0.03642 -0.05936 -0.06584 -0.09257 -0.02299 -0.07726 -0.06666 -0.18650 -0.00504 -0.03563 -0.07222 -0.01079 -0.00820 0.13822 0.01396 0.07310 -0.20610 0.01425 -0.06329 -0.01914 0.03434 0.04588 -0.19434 -0.05864 -0.06678 -0.11282 -0.09155 -0.05793 0.05835 -0.06691 -0.00771 0.10177 -0.00079 -0.03350 0.02488 -0.17693 -0.26293 -0.07391 -0.00750 -0.10108 0.04479 0.42002 -0.06814 0.05810 0.01313 -0.02811 -0.07968 -0.10845 0.00153 -0.08296 -0.10079 -0.03783 0.02872 -0.01763 0.00079 0.00952 -0.01842
2018-04-30 0.16405 -0.11815 -0.22415 0.02494 -0.03797 -0.02821 -0.07716 0.12345 0.03521 0.19057 -0.15708 0.12924 0.16326 0.78495 -0.33997 -0.07743 0.09985 0.23843 0.17416 0.07245 -0.01323 0.07047 0.05542 0.04047 0.00870 0.05096 0.11896 0.11025 0.08606 -0.08831 -0.05838 -0.00076 0.01884 0.32770 0.10140 0.15294 -0.07603 0.02343 -0.01629 0.21532 0.11267 0.07391 0.12561 0.04272 -0.06375 0.02747 -0.03535 -0.00076 0.21954 -0.00880 -0.08882 0.21009 -0.03604 0.09601 0.00757 0.08869 0.02171 0.11098 -0.00661 0.00561 -0.04431 -0.03967 -0.02876 -0.00916 -0.00887 -0.03780 -0.01650 -0.02618 -0.04988 -0.00447 0.02865 0.03209 0.12149 -0.00576 -0.09167 -0.00076 0.11488 0.00376 0.17007 0.23236 -0.07042 0.11215 0.04465 -0.08565 0.25225 -0.02976 0.10372 0.80281 0.42852 0.03511 0.02310 -0.11751 0.04386 0.18547 0.03852 0.14027 0.19222 0.16768 0.48544 0.10309 -0.03031 -0.03061 0.16674 -0.18680 0.24429 -0.16955 0.00681 0.04591 0.05531 0.19384 -0.08356 0.13257 -0.00076 -0.03229 0.03896 0.00650 0.02060 0.00432 0.04101 -0.06772 -0.03177 -0.00384 -0.05390 0.07565 0.13027 -0.02708 -0.02943 0.18478 0.07249 0.00693 -0.10904 -0.03796 0.10700 0.05187 0.05312 0.31504 -0.13260 0.09036 0.09721 0.09940 0.03770 -0.15084 0.06785 0.00076 0.00916 0.06709
2018-05-31 0.15251 0.06533 0.21773 0.06993 0.12492 0.36741 -0.04883 0.00491 -0.00762 0.03616 0.02060 0.45212 -0.00636 -0.12068 0.33265 -0.06927 -0.07096 0.05248 0.10668 -0.07505 -0.00068 -0.00831 0.12911 -0.10557 -0.02568 0.01162 -0.02688 -0.04891 0.07427 -0.16912 0.15884 -0.26117 0.03439 0.08780 0.07233 -0.07773 -0.02982 -0.01235 -0.02592 -0.05606 -0.00336 -0.02053 -0.02507 0.18890 0.00772 -0.00460 0.01870 0.01741 -0.10674 0.10188 -0.00794 0.06249 0.03952 0.09116 -0.05027 0.06177 0.03919 0.02722 0.00520 0.01198 -0.04958 -0.02497 0.03841 -0.01763 -0.00886 -0.00068 0.00731 0.01671 -0.01913 -0.02425 -0.11021 -0.03955 -0.04915 -0.01576 -0.00068 -0.01792 0.03582 -0.02982 -0.05792 0.04178 0.12531 0.05592 -0.00566 -0.12267 -0.02837 0.04466 -0.01419 -0.16009 0.13521 0.10322 0.01294 -0.07278 0.13123 0.15607 0.02077 -0.05686 -0.03009 -0.00557 0.09375 -0.00591 0.03758 -0.10837 -0.04868 0.22789 0.14088 0.26347 -0.04579 -0.08348 0.06414 0.06251 -0.05971 0.05814 0.05813 0.05432 0.40381 -0.25924 -0.11251 -0.15220 -0.12137 -0.00775 0.04465 -0.07475 0.19320 0.12065 0.09688 -0.00068 -0.01326 0.06380 0.15659 0.09601 -0.04354 0.01643 0.20532 0.05367 0.05186 -0.01645 0.06522 -0.04810 0.46547 -0.12307 -0.00809 0.05091 0.01809 0.00068 0.00819 0.01741
2018-06-29 -0.01356 -0.05794 -0.04692 -0.11341 0.05945 -0.00148 0.04865 -0.06184 -0.00763 0.07381 -0.44231 0.13895 -0.05093 0.00504 0.11686 -0.26111 0.05442 -0.01394 0.04383 0.01987 -0.00884 0.07123 -0.11928 0.00283 0.00897 -0.11805 -0.01798 -0.00980 -0.04284 -0.25449 0.12872 -0.17927 0.01480 0.08987 0.01070 0.16632 -0.01882 0.06235 0.02525 0.01116 -0.00333 0.01202 -0.05564 -0.01668 -0.04231 0.02298 0.12688 0.10281 0.03326 0.04919 -0.03316 -0.05314 -0.05539 -0.02025 0.00806 -0.05031 0.00071 -0.13853 0.00813 0.24936 0.07915 -0.03591 0.00926 0.01661 0.00142 0.00486 -0.00857 0.01646 -0.00064 0.07306 0.01540 0.14826 0.01348 -0.01084 -0.08685 -0.04158 0.01344 -0.00895 -0.00064 -0.00268 0.01726 0.00447 -0.00664 -0.23858 -0.14964 -0.03678 -0.02119 -0.02537 -0.03061 -0.08299 0.00173 -0.04524 -0.00730 0.06797 -0.03564 -0.03635 0.04481 0.10650 0.09481 1.19551 0.02568 -0.30754 0.01154 0.04587 0.00538 0.01429 -0.00851 -0.05620 -0.00064 -0.04320 -0.08736 -0.14879 0.06131 -0.00383 0.11536 -0.07719 -0.01275 -0.01850 -0.00555 0.05716 0.19324 0.02269 0.01645 -0.04739 0.05492 -0.03037 0.10000 -0.03148 -0.13910 0.13625 0.03667 -0.03919 -0.08688 0.17120 -0.04367 0.06158 -0.08907 -0.09722 -0.01953 -0.12536 -0.00064 -0.10253 0.00413 0.00064 0.00771 0.00349
2018-07-31 -0.14551 0.13661 0.13541 0.06290 -0.00875 -0.12623 -0.00683 -0.07176 -0.00065 0.09856 -0.02117 -0.02515 -0.01750 -0.06845 0.01054 -0.48178 0.10837 0.07800 -0.09348 -0.02912 0.00761 0.13828 0.01431 -0.04337 0.04697 -0.00982 0.05624 0.09892 -0.06004 -0.24807 -0.00974 1.24325 -0.03867 0.03602 -0.03531 -0.08560 0.03639 -0.00435 -0.08582 0.16845 -0.04378 0.00685 0.03638 0.05551 -0.00935 0.03781 -0.00660 -0.01940 0.01028 0.06264 -0.03426 0.14567 -0.00747 0.06935 0.01659 -0.04759 0.03415 -0.02385 0.01384 -0.00565 0.01741 0.01656 -0.03987 0.01629 0.00758 -0.00065 -0.00865 -0.00905 0.02567 0.00882 0.04672 0.14495 0.12464 -0.01611 -0.00065 -0.06163 -0.10250 -0.04642 -0.04708 0.21407 0.01380 0.00028 -0.01675 -0.10982 0.00945 0.01185 0.18117 -0.04051 0.04229 -0.01774 0.06414 -0.07445 -0.05652 0.02182 0.00453 0.10429 -0.02239 -0.02612 0.00073 -0.01500 -0.04168 -0.01060 0.21702 -0.08954 -0.03123 -0.13594 0.05490 -0.03741 0.05107 0.12682 0.00945 0.12978 0.10768 0.10394 0.19290 0.04803 -0.00065 -0.06126 0.00920 -0.02086 0.27713 -0.05928 -0.04687 0.06275 0.03093 -0.02154 0.04796 -0.12110 -0.04232 0.01976 -0.05461 -0.06197 0.13910 0.04102 0.06949 -0.02205 -0.24308 -0.05328 -0.00172 0.04533 0.15980 -0.13931 0.01963 0.00065 0.00783 0.01898
2018-08-31 -0.21817 -0.16792 -0.11477 0.34768 -0.03741 0.09570 0.31026 0.19230 0.04157 -0.03506 -0.04830 -0.11484 -0.09003 -0.03098 -0.14891 0.00942 -0.04594 -0.10276 -0.03619 -0.00068 0.04030 0.06421 0.02669 -0.04531 -0.03401 -0.06087 0.06869 0.02960 0.04413 -0.14908 -0.05022 -0.20177 0.01118 0.02821 0.03417 -0.23358 -0.03639 0.02162 -0.04206 -0.00504 -0.01477 -0.00812 -0.04660 -0.09674 -0.00945 -0.03031 -0.05457 -0.04527 -0.01149 0.09456 -0.00068 -0.05915 0.06450 0.02736 0.09254 -0.00476 -0.05630 0.00432 0.03646 -0.04591 0.05738 0.10714 0.15238 -0.00068 0.03503 0.00478 0.01544 0.00780 0.02130 0.05676 -0.02581 0.60547 0.18489 0.03597 -0.12521 0.02529 0.01478 -0.00945 -0.14175 -0.07138 0.10582 0.00136 -0.08657 -0.12874 0.09932 -0.01056 -0.05985 0.09744 -0.18245 -0.00938 0.07184 -0.05434 0.00050 0.03072 -0.18625 0.40714 -0.13401 0.01890 -0.06560 0.04786 0.03675 -0.21676 -0.02951 -0.05556 0.02691 -0.09932 0.01436 0.29703 0.04030 -0.00481 -0.12868 -0.26030 -0.08339 -0.03450 0.32665 -0.13995 -0.09872 -0.03294 -0.10800 0.07114 -0.04750 0.03046 -0.03152 -0.00028 -0.01088 0.45024 0.04347 0.02903 -0.09074 0.05532 -0.12616 -0.07103 -0.06119 -0.06068 0.01948 0.02513 -0.06768 0.05466 0.56249 0.12935 -0.11322 -0.19092 0.01148 0.00068 0.00819 0.01080
2018-09-28 0.06063 0.05198 0.08707 0.07945 0.25341 0.04314 -0.02142 -0.03825 -0.05487 -0.07649 0.01451 0.13320 0.00052 0.02418 -0.12550 -0.14082 0.03594 0.07111 0.05486 -0.00944 0.01493 0.01683 -0.06947 -0.01092 0.06188 -0.07471 -0.02235 0.04003 -0.08464 0.06352 -0.03557 0.69759 0.01872 0.04062 -0.00388 0.03952 0.04856 -0.00082 -0.10154 0.03894 0.00418 -0.00332 -0.04895 -0.02359 -0.03622 -0.00082 -0.01348 0.00585 -0.03907 0.00461 -0.00430 0.04714 0.06199 0.12645 -0.04733 0.05424 0.02247 0.10490 -0.00633 -0.03766 0.05101 0.02971 0.06113 0.00752 -0.01757 0.00462 0.06267 -0.00922 -0.00082 0.00694 -0.01113 -0.01995 -0.00951 -0.01092 0.03366 0.07513 -0.10031 0.03292 0.05151 0.01548 0.08200 0.06612 -0.04333 -0.11326 -0.06143 -0.00830 0.09352 -0.06535 0.12253 0.01672 0.03467 -0.09017 0.04410 0.11638 -0.14006 -0.08812 0.07610 0.08310 0.02724 -0.05946 0.01465 0.14662 0.00413 -0.02985 0.16214 0.04069 0.00659 -0.30082 -0.01656 0.11375 0.03129 -0.12652 0.04836 0.03918 0.03538 0.01667 -0.02691 -0.02749 -0.01721 -0.02292 -0.02538 0.17368 0.08100 -0.08906 0.03011 0.12859 0.04569 0.04560 0.06744 -0.06332 0.02092 -0.01704 0.01952 -0.00082 -0.03706 0.01071 -0.10157 0.02427 0.02658 0.08521 0.08614 -0.20112 0.03482 0.00082 0.00988 0.03400
2018-10-31 -0.07977 0.03654 0.11811 -0.16336 -0.00082 0.28444 0.08073 -0.14249 -0.09368 -0.09070 -0.01986 -0.26355 -0.00887 0.06625 -0.31388 -0.07059 -0.04715 -0.16532 -0.11669 -0.08812 0.04569 -0.04500 -0.13173 -0.11689 -0.04507 -0.14125 -0.03576 0.08112 -0.23486 -0.20737 0.00718 -0.24515 -0.02381 -0.14794 -0.12672 -0.38755 -0.05964 -0.00809 0.22318 0.16871 -0.00944 -0.04844 -0.15812 -0.02995 -0.08339 -0.11532 -0.02326 -0.02069 -0.12582 0.08026 0.05706 -0.03618 -0.13323 0.06370 -0.13090 -0.10520 -0.02224 -0.01094 -0.03406 0.10300 -0.02401 -0.00082 -0.06749 -0.01735 -0.01886 0.00459 -0.04559 -0.01777 -0.00082 -0.05473 -0.01124 -0.11607 -0.15521 -0.03143 -0.16332 -0.09494 -0.20037 -0.00354 -0.13756 0.20774 0.11546 -0.04526 0.01320 -0.04595 -0.09759 -0.10886 -0.12910 -0.12327 -0.28134 -0.02668 -0.09339 -0.26497 -0.07096 -0.12752 -0.35964 -0.10517 -0.04844 0.12821 0.12562 -0.23852 -0.01097 -0.19635 0.09470 -0.20016 -0.19596 -0.18560 -0.04493 -0.00082 -0.02482 0.14244 -0.02304 -0.18802 0.06949 -0.08832 -0.29995 -0.17274 -0.05216 -0.04192 -0.07026 -0.04892 -0.02960 -0.11511 0.21767 -0.02662 -0.09082 -0.14144 -0.05335 -0.08955 0.08544 -0.07153 -0.06465 -0.23434 -0.04733 -0.04337 -0.00611 -0.04054 0.03375 -0.11416 -0.17082 -0.04219 0.00918 0.16679 -0.05180 0.00082 0.00988 -0.05262
2018-11-30 -0.12381 -0.09858 -0.15914 -0.31518 0.01932 0.02526 -0.15176 -0.08347 -0.07182 -0.08517 -0.17029 -0.18221 -0.13491 -0.00095 0.03469 -0.52595 -0.07024 0.00682 -0.13162 -0.06036 -0.00095 0.06478 0.14209 0.02389 -0.01330 -0.13461 -0.04057 -0.00257 0.06016 -0.37365 -0.06841 -0.32427 0.14335 -0.14602 0.04589 -0.26717 -0.08220 -0.10168 0.08729 -0.05965 -0.03283 -0.00095 -0.03428 -0.04095 -0.26495 0.02922 0.00233 -0.00095 -0.02692 -0.08845 -0.02487 -0.11186 0.07819 -0.09944 -0.00095 -0.07545 -0.00916 0.10587 0.00192 -0.02075 -0.06030 -0.03058 -0.02774 0.00746 -0.03973 0.01518 -0.00876 0.00767 -0.01887 0.01649 0.02537 -0.26548 -0.07356 0.04115 0.08611 -0.05939 -0.12067 0.07535 -0.28735 -0.12632 0.07266 -0.07789 0.02440 0.12177 0.14191 -0.01503 -0.14693 0.00602 -0.30353 -0.00537 -0.04892 0.16315 -0.22966 -0.23652 0.00822 -0.18056 -0.16762 -0.01523 -0.12340 -0.28482 -0.01634 -0.09817 0.08804 0.02799 -0.11629 -0.22317 0.03751 -0.21103 -0.09931 -0.06509 -0.21686 0.11716 -0.04475 -0.10527 -0.10998 0.11150 -0.01922 -0.11523 -0.02241 0.02584 -0.10465 0.06357 -0.06129 0.03746 0.09795 -0.30196 -0.01481 0.03852 0.05787 -0.04008 -0.00550 -0.01887 0.28651 -0.04762 -0.01146 -0.22307 0.00135 -0.05253 -0.31340 0.10957 -0.04385 -0.13643 -0.03224 0.00095 0.01146 -0.03319
2018-12-28 -0.29324 -0.35173 -0.22394 -0.14779 -0.18301 -0.22196 -0.20491 -0.27073 -0.11106 -0.01634 -0.39694 -0.00390 -0.19776 -0.08660 -0.15417 0.37279 -0.04038 -0.28110 -0.09015 -0.04300 -0.00089 -0.06931 -0.15371 -0.04789 0.00224 -0.11518 -0.08608 -0.09239 -0.24435 -0.37336 0.03954 -0.20846 -0.07131 -0.13198 -0.02774 -0.22084 -0.07572 0.01744 -0.00990 -0.09908 0.01707 0.01227 -0.24227 -0.02589 -0.55524 -0.03018 -0.03684 -0.04143 0.05244 -0.02829 -0.04258 -0.13118 -0.07589 0.00751 -0.28313 -0.03274 -0.03538 -0.00602 0.01625 0.04962 -0.01035 0.01056 0.00828 0.01578 0.02671 0.00440 -0.04026 0.03330 0.01371 -0.03861 -0.01115 0.30701 -0.06129 -0.06150 -0.19540 -0.04227 0.05831 0.00542 -0.28340 -0.10038 -0.00606 -0.08443 -0.00089 -0.12940 -0.15089 0.01340 0.11022 -0.19973 -0.35799 0.09244 -0.03506 0.05197 0.02908 -0.05803 -0.21907 -0.17249 -0.08489 -0.01568 -0.05612 -0.17506 0.01474 -0.10089 -0.11769 -0.13449 -0.10598 -0.25803 0.02874 -0.03919 -0.10998 -0.09558 -0.18930 -0.07483 0.00674 -0.06207 -0.16173 -0.07710 -0.02392 -0.11654 -0.01941 0.00731 -0.00915 -0.01907 -0.08346 0.03100 -0.06589 -0.19164 -0.03657 -0.05405 -0.17311 0.03757 -0.10591 -0.08118 -0.00224 -0.03586 0.01858 -0.08390 -0.40089 -0.11110 -0.21468 -0.05207 -0.04917 -0.14641 -0.07145 0.00089 0.01073 -0.07234
2019-01-31 0.08547 0.05499 -0.01004 0.26614 -0.11016 -0.11559 0.03236 0.19723 -0.00084 -0.00280 0.26000 0.13209 0.07893 -0.00084 0.19744 0.29801 0.03413 0.04202 0.13513 -0.04040 0.10286 0.01778 -0.06359 -0.00254 0.00851 0.23142 0.04621 0.01504 0.01127 0.15077 0.21388 0.33524 0.04840 0.19696 -0.01233 -0.12293 0.28592 -0.10284 0.09007 0.01736 -0.00084 -0.05019 0.08552 0.25129 0.39753 -0.01377 -0.03135 -0.02197 0.10042 -0.10507 -0.00290 0.29159 0.04960 -0.00084 0.24916 -0.00824 0.02487 -0.05244 0.03849 0.01839 0.05011 -0.00084 0.09007 0.02375 -0.02150 0.05179 0.08113 0.02396 0.03513 0.02766 0.03543 -0.07896 -0.06036 -0.00084 0.26336 0.01355 0.06109 -0.04920 0.06166 0.00478 0.20744 0.04841 -0.01657 -0.02881 0.07269 -0.02619 -0.02392 -0.25855 0.60754 0.13737 0.04294 0.00125 -0.01309 0.28054 0.19829 0.09916 0.01663 -0.01285 -0.05007 0.12643 0.04531 0.14446 0.02953 0.36832 0.28723 0.11454 -0.02243 0.19385 0.08079 0.06074 0.01345 0.02197 -0.03114 0.12949 0.24916 0.00253 -0.08521 0.04579 -0.06059 0.07386 0.05333 0.22756 -0.12884 0.07085 -0.03827 -0.62084 0.02158 -0.00084 0.24077 0.07977 0.03487 0.03091 0.13737 0.03539 0.05819 0.15851 0.08153 0.11122 0.20273 0.13303 0.10061 -0.18093 0.04484 0.00084 0.01013 0.04400
2019-02-28 0.17711 0.07270 0.08077 -0.02954 -0.04631 0.27807 0.09683 0.02938 -0.01038 0.13077 0.07533 -0.00086 0.05319 0.00539 -0.10775 -0.48169 0.00005 0.22174 0.09168 -0.03175 -0.04784 0.15622 0.14977 0.11668 -0.04098 -0.05845 0.05306 0.07671 0.24358 -0.22215 -0.00086 -0.01812 0.10384 -0.06169 0.03402 0.11570 -0.02943 0.01250 -0.09253 -0.04018 -0.00172 0.05105 -0.08873 0.00938 -0.00667 -0.05326 0.02012 0.01353 -0.05833 -0.05746 -0.00793 0.12152 0.03860 0.05747 0.04081 -0.09027 -0.00086 -0.01936 0.05319 -0.04803 0.05672 0.01046 0.06581 0.01514 -0.01141 -0.00086 0.10520 0.07172 0.03386 0.07651 0.01914 -0.09465 -0.02618 0.21957 -0.03007 -0.00086 0.05604 0.04588 0.44032 -0.03624 -0.04839 0.00680 0.09731 0.08371 1.78167 0.37197 0.09363 -0.21645 -0.05008 -0.04372 0.03361 0.08891 0.05805 0.09205 -0.14025 0.16797 0.06352 0.01586 0.13183 0.24753 0.04816 -0.00086 -0.07070 -0.08618 0.04882 0.01638 0.05061 -0.20086 0.10291 0.02769 0.50618 -0.07521 0.05383 0.01910 0.10914 -0.07804 0.02895 0.04865 0.02255 0.05489 0.02286 -0.02096 0.03125 0.02567 0.08247 -0.01214 0.04629 0.08336 -0.14140 0.06365 -0.02549 0.03760 -0.01157 0.02012 -0.01726 -0.11047 0.16020 -0.08649 -0.06012 -0.05020 0.10440 0.01757 0.03588 0.00086 0.01037 0.03502
2019-03-29 -0.11255 0.22523 0.07550 0.14915 0.05991 -0.00375 -0.08067 0.05571 -0.03950 -0.06527 0.60958 -0.04504 0.04682 -0.01346 -0.31634 0.01032 -0.02750 -0.08787 0.01904 -0.03292 0.04825 -0.01040 -0.06771 -0.00104 -0.00104 0.01840 -0.01398 -0.02586 -0.00928 -0.52082 0.10670 -0.08887 0.00223 0.01013 -0.02351 -0.06391 0.11661 0.52863 -0.03774 -0.03112 0.00789 0.03792 -0.11113 0.07836 0.00481 0.01739 0.06060 0.06279 -0.05592 -0.00104 -0.01914 0.06212 0.03196 -0.08766 -0.05704 -0.01486 0.05467 0.00229 -0.00232 -0.00104 -0.03157 -0.00324 0.07240 0.00683 0.02455 -0.01461 0.01027 -0.02576 -0.00775 -0.00961 0.02151 0.05632 0.06909 -0.02934 -0.03345 0.04262 0.00704 0.03402 -0.02757 -0.01648 0.09406 -0.01924 0.03222 0.06729 -0.26566 0.08317 0.09248 -0.24346 0.10250 -0.09805 -0.02131 -0.00296 -0.04057 0.01596 -0.01794 0.05452 0.13807 -0.02522 -0.06104 0.07519 0.02700 -0.04582 0.00774 -0.04955 0.05758 1.05320 0.03044 -0.07511 0.11007 -0.06460 -0.10151 0.06121 0.03600 0.02613 -0.02807 0.09351 -0.00762 0.02726 -0.02065 0.01656 -0.02035 -0.01386 -0.09437 -0.03475 -0.02668 -0.18545 0.03980 0.05322 -0.07337 0.41942 -0.50811 -0.11215 0.06635 -0.07182 0.08396 0.06296 -0.13213 -0.03184 0.08426 -0.19381 0.07336 0.04488 -0.00251 0.00104 0.01255 -0.00355
2019-04-30 0.12245 0.42504 0.31126 0.07040 0.06180 0.29480 0.07912 0.10490 0.09897 0.00317 -0.27453 -0.13492 0.16129 -0.01361 0.17544 0.03549 0.05695 -0.07772 0.04007 0.04775 0.10636 -0.07783 0.02624 -0.04828 -0.02354 0.36137 0.13062 -0.03012 0.13470 -0.16058 0.23301 -0.05192 -0.00103 -0.04310 0.10242 -0.14027 0.00950 0.11966 0.23707 -0.00455 0.00192 0.00522 -0.09794 0.08269 -0.01266 -0.01461 -0.09135 -0.06770 -0.03477 0.00230 0.06055 0.02090 -0.01701 -0.00103 0.05829 0.05648 0.04778 0.06472 0.01841 0.07935 0.03037 0.04194 -0.02465 0.02397 0.04110 0.02036 0.04970 0.03203 0.01362 0.06876 -0.00103 0.15935 0.03295 0.02810 0.02050 0.06147 -0.01038 0.00187 -0.00837 -0.01770 0.24403 0.01803 0.08443 0.04713 0.05755 0.25383 0.05160 -0.18103 -0.04343 0.27996 0.10186 0.12181 0.01574 -0.07146 0.23106 0.05160 0.22729 0.07096 0.10079 -0.05265 0.01863 0.04584 -0.05371 0.03034 -0.07432 0.05508 -0.02960 -0.07103 0.07205 -0.04931 -0.11272 -0.03317 0.07040 0.04130 0.03724 0.03287 0.02877 0.05402 0.04563 0.12347 0.12102 -0.13350 0.19505 0.13618 -0.01156 -0.02317 0.04676 0.04937 -0.06544 0.47897 0.15881 0.04064 -0.07882 -0.01823 -0.02331 0.01527 -0.07822 0.14152 -0.02159 -0.06820 0.03775 -0.43803 0.02062 0.00103 0.01243 0.01959
2019-05-31 -0.28754 -0.12758 -0.07193 0.15728 -0.09565 -0.02836 -0.12214 -0.13300 0.38986 -0.08438 -0.29937 -0.08157 -0.10982 0.00532 -0.03962 -0.18804 0.04635 -0.08411 -0.11291 -0.17403 0.01438 0.02828 -0.21850 -0.06152 0.00882 0.04895 -0.13072 0.09907 -0.12885 -0.24347 0.01989 -0.07931 0.08018 -0.01874 -0.05101 -0.15546 0.00895 -0.14207 -0.07028 -0.00715 0.07248 -0.09422 -0.53644 0.14624 -0.10693 -0.05259 -0.00814 -0.02962 -0.08268 0.02885 0.11900 -0.22461 0.00500 0.02527 0.03895 -0.14141 -0.09437 -0.08712 -0.00377 -0.02909 0.00808 -0.01603 -0.00911 0.00708 -0.01169 0.03036 0.01964 -0.01705 -0.03354 0.00430 0.03935 -0.03967 0.00115 0.02725 -0.05491 0.03817 -0.00105 0.06438 -0.50475 -0.05304 0.10047 -0.11886 -0.04690 -0.28317 0.28353 0.11706 -0.12605 -0.10914 -0.23369 0.18282 -0.01792 0.03656 -0.10150 -0.14936 -0.14989 -0.10105 -0.12209 0.05766 -0.00933 -0.24156 0.06562 -0.07568 0.01936 -0.13413 -0.15538 -0.20418 -0.01576 -0.00643 0.12737 0.24657 -0.00982 0.01653 0.00789 -0.08581 0.01560 -0.19974 -0.08289 -0.07062 -0.06841 0.01626 -0.10982 -0.23159 -0.26539 -0.08469 0.65852 -0.22632 0.02253 0.08404 -0.05902 0.13374 0.38058 -0.03305 0.04871 -0.02855 0.04215 -0.21542 -0.20865 -0.12010 -0.19241 -0.24228 -0.05438 -0.04190 -0.03272 0.00105 0.01267 -0.03377
2019-06-28 0.14280 0.10634 0.13346 -0.06679 -0.06270 -0.00474 -0.00114 0.00195 -0.31487 0.04735 -0.05383 -0.02391 -0.03264 -0.02646 -0.23591 -0.08114 0.02472 -0.01563 0.05341 0.10374 0.01136 0.01747 0.00048 0.03449 -0.01091 -0.12971 -0.01187 -0.01863 -0.00002 -0.17290 -0.13383 -0.50554 0.04234 0.08960 0.05149 0.35016 -0.03760 -0.07577 0.07324 -0.06047 0.06735 -0.00114 -0.15839 0.12144 -0.05377 0.07386 -0.08328 -0.07467 -0.00114 0.03112 -0.00220 0.01564 -0.03929 0.08507 0.22963 -0.00506 0.02743 -0.01071 0.03711 -0.03960 0.02299 0.01027 0.05577 -0.00114 0.01499 0.01409 -0.01465 0.00699 0.01379 0.03822 -0.03997 -0.09311 -0.05911 -0.01949 -0.02342 0.00515 -0.00653 0.00497 0.41801 -0.02618 -0.13343 0.00333 0.01931 0.18186 -0.01960 -0.07156 0.04886 0.10638 -0.09264 -0.06381 0.09969 -0.08351 -0.03114 -0.02443 0.09176 -0.02336 -0.06016 -0.01100 -0.00253 0.14886 -0.00114 -0.01727 -0.01684 -0.01869 0.03355 0.07337 -0.00114 0.07994 0.00879 -0.03294 0.08736 0.00654 -0.05009 0.01879 -0.01634 0.02986 0.00954 -0.01983 -0.03586 0.00678 0.25870 0.04555 0.02950 0.03415 -0.07165 -0.23191 0.01749 0.03886 -0.10114 0.35886 -0.00114 -0.00527 0.00357 0.02714 0.00346 0.00174 0.36834 0.00967 -0.15381 -0.06926 0.05520 0.17479 0.01472 0.00114 0.01377 0.01358
2019-07-31 0.02866 0.11278 -0.02660 -0.03675 0.10223 -0.06183 0.12789 0.01501 0.03696 -0.01656 -0.10354 -0.21171 -0.00521 -0.01413 -0.16619 0.01335 0.07029 -0.05996 -0.07079 -0.04660 -0.00731 0.01628 0.05209 -0.05819 0.14360 -0.04486 -0.04422 0.06730 0.23461 -0.46847 -0.04147 0.02805 0.00481 -0.10189 0.10973 -0.18389 0.00426 0.09564 0.06296 -0.00894 -0.00883 -0.04909 -0.48511 0.03334 0.13080 -0.02440 0.01053 0.03061 -0.04187 -0.00427 -0.00378 -0.03674 -0.02700 -0.03289 0.02230 -0.00409 0.00580 -0.03616 -0.00377 -0.01114 -0.04238 0.01390 -0.02422 0.00692 0.00944 -0.01114 0.01256 0.00692 -0.01217 -0.00421 0.02916 0.31667 -0.02422 0.16708 0.00899 0.01136 0.09100 -0.00666 0.09031 0.00724 0.00609 -0.05783 0.13113 -0.11610 0.28726 -0.03902 0.08784 0.11699 -0.04811 0.59188 0.00562 -0.13938 -0.02691 -0.04556 -0.05114 0.02159 0.01977 -0.00825 -0.04849 -0.20404 -0.00114 -0.02573 0.10293 -0.04132 0.02911 -0.01574 -0.00861 0.22386 0.01197 0.06564 0.01512 0.00267 0.02092 -0.05326 -0.02727 0.06611 0.01295 -0.00114 0.04562 0.00265 0.35198 0.02488 0.06372 0.05568 0.01955 -0.09214 -0.08151 -0.06237 -0.06952 0.11062 -0.06508 -0.07168 0.07159 -0.02614 -0.01946 -0.18405 -0.04739 -0.00114 -0.01916 0.05978 -0.00781 -0.07988 -0.00635 0.00114 0.01377 -0.00749
2019-08-30 -0.10942 0.21663 0.10627 0.17947 -0.19036 0.20114 -0.04046 -0.04356 -0.02869 -0.03541 0.05658 -0.21797 -0.16035 0.20278 -0.03605 1.33454 0.04883 -0.38203 -0.07782 -0.08520 0.02367 0.15840 -0.12674 0.06022 -0.09887 0.13026 -0.12688 0.03402 -0.06808 0.33216 -0.23740 0.32744 0.08167 0.03157 -0.07162 -0.38070 -0.03343 0.04295 -0.13370 0.06597 0.03504 -0.08031 -0.39665 0.05161 0.25036 -0.04879 -0.05502 -0.03963 -0.09384 -0.04662 0.10535 -0.19144 0.02892 -0.03396 0.18967 -0.05280 -0.01910 0.17780 -0.02492 0.00893 0.04184 -0.03821 -0.01692 -0.00917 -0.01164 -0.00622 -0.02819 0.00683 -0.01232 -0.01554 0.02824 -0.04887 0.04870 -0.08917 0.08906 -0.05673 0.00379 0.03770 -0.28414 0.03482 -0.02986 -0.00526 -0.00560 -0.07471 0.10589 0.29804 -0.10987 -0.08749 -0.14076 -0.24205 -0.05230 -0.07242 0.00059 -0.00543 -0.10906 -0.14006 -0.03189 0.01674 0.08655 -0.13208 -0.01010 -0.12722 0.05524 -0.08954 -0.02444 -0.19006 -0.00117 -0.10321 -0.04648 -0.11527 0.17216 0.01211 -0.03714 -0.06990 0.05371 -0.25988 -0.08103 -0.06307 -0.06990 0.01913 0.05426 -0.35805 -0.06208 0.12417 0.13499 0.00323 -0.01216 -0.01788 0.02177 0.00412 -0.30991 -0.09938 0.15574 -0.05245 0.06571 -0.04503 -0.16135 -0.14021 -0.12135 0.01688 0.11292 -0.31399 0.00250 0.00117 0.01413 0.00133
2019-09-30 -0.05659 0.13711 0.18616 0.06041 -0.04241 0.05756 -0.07565 0.12755 0.12134 0.05848 0.01734 -0.01289 0.02783 -0.05048 0.15292 0.30451 0.00150 -0.05177 0.06447 0.03693 -0.00130 -0.03192 -0.05559 0.09258 0.08158 0.00375 0.09405 -0.03846 0.23417 2.57370 0.12204 -0.31731 -0.01222 0.04920 -0.02656 -0.11298 -0.05686 0.01993 0.07370 -0.07660 -0.00383 0.08464 0.53141 0.05411 0.17517 -0.14630 0.16130 0.13470 0.04551 -0.09490 -0.01040 0.08614 0.00386 0.01565 -0.03976 0.10827 0.01274 0.08256 0.00951 0.00870 -0.00130 0.06408 -0.01730 0.01483 -0.00130 -0.01585 0.01953 0.01457 -0.01634 0.02474 -0.00130 -0.02171 -0.00130 0.02502 -0.01279 0.05099 -0.02723 -0.02562 -0.37831 -0.07933 0.22839 0.10942 -0.08574 -0.07594 -0.13317 0.02900 0.11252 -0.01256 0.13344 0.22466 -0.01015 0.00812 -0.04707 0.03510 0.12554 0.17289 -0.01891 -0.05015 0.10354 0.01753 -0.01031 -0.00130 -0.07897 -0.06004 0.00532 -0.02870 -0.00130 -0.12403 0.02243 -0.00667 -0.12175 0.01743 0.05094 0.04667 0.04494 0.05470 0.07040 0.01393 0.05406 0.02371 0.37288 0.06349 0.05275 0.02256 -0.08293 0.20352 0.04791 0.06230 -0.06856 -0.09867 -0.03687 0.05811 0.10362 0.05005 0.03805 -0.09928 -0.01005 0.06702 -0.00547 -0.06899 0.13725 0.10318 0.02939 0.00130 0.01571 0.02809
2019-10-31 -0.11972 0.14341 0.20705 0.11325 -0.01646 0.16476 0.07624 -0.07003 -0.16947 0.08273 -0.10598 -0.06298 0.08822 -0.13933 0.08211 0.23513 0.06936 0.10823 -0.08631 0.04956 -0.06807 0.00194 -0.11436 0.03921 0.05229 -0.04160 0.13022 0.06673 0.02507 -0.27063 0.04928 -0.61063 -0.02350 0.03021 0.00724 0.09146 0.01037 -0.02918 -0.19520 0.11405 -0.04950 -0.04457 -0.66756 -0.09390 0.17360 -0.00432 0.00909 0.00564 -0.08270 -0.03220 0.06602 -0.14108 0.01921 -0.00140 0.01193 0.01266 0.00968 -0.02442 -0.00140 0.00850 0.04867 0.03109 0.00673 0.01447 0.04093 0.05607 0.03942 0.01422 -0.00522 0.00368 0.00813 0.11224 0.18745 0.01569 -0.01303 -0.01382 -0.02548 -0.03744 -0.15269 0.07396 -0.04765 -0.01845 0.04229 -0.31646 0.18341 -0.08963 -0.05249 0.23943 0.25062 0.03389 -0.08792 0.02971 -0.04199 0.00810 -0.11920 0.08102 -0.05516 0.08319 0.14215 -0.07327 0.01678 0.23898 0.07253 0.02916 0.06120 0.05963 0.00612 -0.00658 -0.02458 0.01119 0.15881 0.02434 0.16172 -0.17041 0.37153 -0.05443 0.00565 0.04860 0.01608 -0.04825 0.27249 -0.30299 -0.04499 -0.01693 -0.14955 -0.24685 -0.01300 -0.08954 -0.53602 -0.02764 -0.30468 -0.04346 -0.12800 0.00631 -0.02049 -0.14094 -0.16733 0.03348 -0.24747 0.23801 0.03564 -0.15681 0.01291 0.00140 0.01693 0.01151
2019-11-29 -0.17026 0.16921 0.24138 -0.12929 0.02681 0.04935 -0.14801 -0.04504 0.17029 -0.02744 -0.07442 -0.14987 0.07216 -0.06810 0.14501 -0.19651 0.07335 -0.03137 0.12090 0.02357 -0.00792 -0.06624 0.00796 0.01330 -0.37723 -0.16373 0.01457 0.02995 0.01672 -0.12105 0.05162 0.85621 0.04377 0.11120 0.00178 0.11752 0.03927 0.00571 -0.02707 -0.05561 -0.01739 -0.09917 0.01227 0.03438 -0.29221 -0.04249 -0.08447 -0.06437 0.12689 -0.08741 0.00898 -0.05771 0.09152 0.01524 -0.08038 0.00319 0.07665 0.20058 0.02531 0.04759 0.01119 0.05801 0.07922 0.03763 0.02395 0.03118 0.04432 0.06780 0.04455 -0.03274 0.03630 0.37612 0.15074 -0.00143 0.12798 0.00486 0.05052 -0.02437 -0.02317 -0.05049 -0.00332 0.01035 0.05438 -0.15563 0.05413 0.20502 0.09857 -0.12120 0.00276 -0.03399 -0.03049 0.04167 -0.15047 0.02190 -0.05188 -0.02173 0.00236 -0.08007 0.03368 -0.18285 0.01643 0.09935 0.02307 -0.14698 0.03953 -0.19612 0.05081 0.07149 0.20874 0.26634 0.12997 0.86237 0.06564 -0.01414 -0.16642 0.07276 0.07887 -0.01095 0.06331 0.00759 0.28607 -0.02037 -0.22395 0.25104 0.13770 -0.35083 -0.01010 0.05566 -0.17912 0.28600 -0.30731 0.22784 0.07300 -0.10857 0.01601 0.03734 -0.16333 -0.08008 -0.52643 0.34864 -0.06776 -0.15476 0.00490 0.00143 0.01730 0.00347
2019-12-30 0.10276 0.01796 -0.07423 0.07967 0.03987 0.09332 -0.23285 0.28475 -0.01003 0.03307 0.18757 0.03529 0.08730 0.07002 0.04061 0.09741 0.05037 -0.04462 0.08593 0.14350 0.01820 0.04928 0.26643 0.00004 0.04451 -0.00141 0.04371 -0.00316 0.04362 0.20076 0.10851 0.19485 -0.03058 0.01611 0.17254 0.13294 0.02652 0.02696 0.11372 -0.00141 -0.00141 0.13192 0.49408 0.05710 -0.00141 -0.03199 -0.00141 -0.02380 0.02996 0.16628 -0.00477 0.10260 0.01119 -0.01780 -0.02284 -0.00018 0.06466 -0.00475 0.02984 -0.00141 0.08585 0.04479 -0.00141 0.04370 0.08770 -0.00667 0.06109 0.01298 -0.00141 0.04343 0.04404 0.10353 0.08350 -0.01821 -0.01183 0.04859 -0.01376 -0.06532 0.16155 0.01956 0.09007 0.03216 0.05586 0.02859 -0.01356 0.02533 -0.02239 -0.04134 0.10363 -0.02257 0.04952 0.08227 0.12175 0.08559 -0.07329 -0.15167 -0.01273 0.01405 0.12500 0.54454 0.05122 -0.17747 0.02205 0.34875 0.08826 0.14694 0.08369 -0.17617 0.08542 -0.00425 -0.16086 0.47359 0.00430 0.32048 0.10220 0.03962 0.08412 0.13321 0.08056 0.06086 -0.12762 -0.09794 0.10204 0.16395 -0.08538 0.33192 0.02793 0.01463 0.45588 0.39394 0.34605 0.09383 0.12986 0.11002 0.03430 0.12376 0.05604 0.15713 -0.38430 -0.25658 0.13520 0.28835 0.03213 0.00141 0.01705 0.03072
2020-01-31 -0.09256 0.05863 0.00879 -0.23092 -0.17299 -0.24303 -0.02031 -0.25381 -0.05354 0.04248 0.01784 -0.06332 -0.15693 -0.06137 -0.00460 -0.01208 0.00786 -0.16589 -0.05635 -0.00262 0.03068 0.04801 -0.15635 0.03486 0.08643 0.11113 0.02587 -0.03643 0.05249 -0.05562 -0.09078 -0.17325 -0.02410 -0.12118 -0.07591 -0.04565 -0.03941 -0.03585 -0.06332 0.02505 -0.00407 -0.03078 0.11309 0.06898 -0.05137 -0.11178 0.04769 0.05207 -0.02038 -0.14585 -0.00092 -0.20414 -0.07136 0.11530 0.00593 -0.11258 0.01412 -0.03066 0.01631 -0.02941 -0.01793 0.09327 0.01356 0.02021 0.00772 0.05683 0.05745 -0.02264 0.02427 0.01260 0.00733 -0.06394 -0.04920 0.06701 0.57758 0.01649 0.04238 0.05896 -0.08799 -0.00137 0.05932 -0.04895 -0.05137 0.94038 0.11543 0.13405 0.14149 -0.05356 0.03177 -0.05272 -0.08297 -0.21243 -0.07682 -0.06025 0.02557 0.12058 0.03298 -0.02725 -0.16469 0.10003 -0.00137 0.16102 0.00397 0.03601 -0.09442 -0.09706 0.02478 -0.14255 -0.00652 0.00647 0.01971 -0.23866 0.07818 -0.12475 -0.21534 0.12604 -0.11955 -0.12001 -0.12258 0.08953 -0.00137 0.20803 -0.25762 -0.00245 0.00696 0.08752 -0.02137 -0.07505 -0.29792 0.12530 -0.08628 0.17617 0.26616 0.07318 0.08552 -0.24834 -0.29391 -0.09084 0.31585 -0.08112 -0.04464 -0.26877 -0.01894 0.00137 0.01656 -0.02031
2020-02-28 -0.01692 -0.27116 -0.23526 -0.21607 -0.18462 -0.14285 -0.20984 -0.02179 -0.18484 -0.13412 -0.05593 -0.27871 -0.17679 -0.04390 0.06499 -0.14854 -0.09967 -0.24459 -0.16913 -0.11678 0.00486 -0.14934 -0.18764 0.09725 0.18699 -0.08000 -0.16355 -0.09199 -0.16080 -0.17917 -0.16600 -0.34097 -0.01298 -0.07930 0.03009 -0.22549 0.04950 -0.12278 -0.08940 -0.04179 -0.06425 0.01380 -0.25540 -0.14220 -0.34872 -0.08646 -0.05171 -0.10280 -0.01298 -0.43636 -0.11124 -0.30122 -0.12008 0.03596 -0.07381 -0.08236 -0.01543 -0.01514 0.03835 -0.03981 -0.05834 -0.02152 0.04277 -0.00839 0.07072 -0.00249 -0.02912 0.02764 -0.06206 -0.07123 0.02451 -0.06571 -0.03788 0.09465 -0.11868 0.00450 0.00224 -0.10078 0.05165 -0.08186 0.05042 -0.14343 0.06883 -0.25135 0.20507 -0.29951 0.03615 -0.47214 -0.26472 0.10406 0.01535 -0.16810 -0.10364 -0.17515 -0.07020 -0.13178 -0.10652 -0.07479 -0.19655 -0.32198 0.03198 -0.15576 -0.07020 -0.16351 -0.13450 -0.39288 0.01139 -0.35067 0.01937 -0.15482 0.02617 -0.35861 -0.06977 -0.01616 -0.17024 -0.30257 0.02957 -0.11193 -0.00135 -0.06105 -0.15691 -0.08969 -0.22824 0.12176 0.05650 -0.33171 -0.08808 0.13104 -0.32488 -0.27354 -0.18004 -0.01673 0.02344 -0.11618 -0.06861 -0.30272 -0.09165 -0.24990 -0.35747 -0.26247 -0.13703 -0.24885 -0.09143 0.00135 0.01632 -0.09278
2020-03-31 -0.36853 -0.44306 -0.44314 -0.49523 -0.13534 0.43547 -0.00052 -0.68040 -0.07355 -0.18463 -0.50052 -0.49190 -0.18988 -0.18571 0.02983 -0.26448 -0.16434 -0.48011 -0.40033 -0.12676 -0.16101 -0.16262 -0.58439 -0.16984 -0.32882 -0.08589 -0.29766 -0.19905 -0.06457 -0.18703 -0.09636 -0.09909 -0.14169 -0.45370 -0.18338 -0.29774 -0.14030 -0.15499 -0.24190 -0.10989 -0.31137 -0.28410 -0.08023 -0.17539 -0.19810 -0.36641 -0.24484 -0.18600 -0.05934 -0.03313 0.12319 -0.54883 -0.16466 -0.20915 -0.20365 -0.15206 -0.32790 -0.23872 -0.16281 -0.04552 -0.22806 -0.23974 -0.20474 -0.06435 -0.27783 -0.05872 -0.22338 -0.04039 -0.22105 -0.22938 -0.10287 -0.26676 -0.19673 -0.08579 0.13241 -0.23889 -0.29050 0.00979 -0.48529 -0.10801 0.07202 -0.07202 -0.18085 -0.27078 -0.13360 0.04523 -0.03795 -0.52310 -0.76759 -0.12423 -0.03483 -0.31084 -0.52234 -0.44302 -0.26108 -0.35052 -0.28299 -0.33362 0.17699 -0.49772 -0.15375 -0.17443 -0.17456 -0.13762 -0.40242 -0.48922 -0.08228 -0.05841 -0.17565 -0.19267 -0.06302 0.11650 -0.18131 -0.28623 -0.63220 -0.41937 -0.32052 -0.13566 -0.32052 -0.05845 0.02580 -0.31215 -0.32117 -0.21974 -0.04739 -0.31481 -0.33907 -0.02912 -0.69182 -0.21190 -0.12186 -0.18802 -0.18104 -0.22484 -0.15698 -0.57638 -0.56453 -0.52744 -0.42510 -0.05202 -0.07610 0.10690 -0.14830 0.00052 0.00626 -0.14882
2020-04-30 -0.07142 0.02043 0.11116 0.59933 -0.00023 -0.06224 0.00953 0.10798 0.38159 0.03896 0.14066 -0.02487 0.04964 0.08159 0.47252 0.42218 0.02383 -0.03552 0.14672 0.19524 0.05124 0.09361 -0.37879 0.00973 0.35932 0.21310 0.23091 0.10598 0.30770 0.09468 0.11977 1.71292 0.15320 0.34780 0.25851 -0.14252 0.11227 0.16323 0.06341 0.06391 0.18700 -0.18773 0.25962 0.19977 0.30630 0.52789 0.18273 0.14828 0.05810 -0.02645 0.07012 0.59627 0.01793 0.17250 0.18604 0.15671 0.16791 0.04854 0.02252 -0.00547 0.17827 0.22538 0.06611 0.00777 0.03000 0.02224 0.07330 0.00764 0.12172 0.10776 0.02977 0.20810 0.10826 0.01672 1.45310 0.09137 -0.20527 0.03499 -0.10691 0.08164 0.21958 0.09356 0.05978 0.12486 0.42959 0.08727 0.00490 -0.43408 0.21164 0.11742 0.06051 0.45688 0.02005 0.15172 0.26167 -0.01946 0.01701 0.36129 -0.07618 0.15590 0.10842 0.13661 0.15118 0.03404 0.28258 0.12052 0.09745 0.00536 0.33208 0.04010 0.75691 0.36644 0.24805 0.42082 0.40630 0.12690 0.03409 -0.03773 0.04947 0.01634 0.01003 0.37927 0.00777 -0.05191 -0.01662 0.93588 0.10028 -0.01573 0.43404 0.19049 -0.11928 0.31131 0.13300 0.01719 0.04010 0.22348 1.56414 0.08920 0.52404 0.01052 0.61612 -0.13023 0.09614 0.00023 0.00276 0.09591
2020-05-29 0.23645 -0.04792 -0.08095 0.10475 -0.20611 -0.09925 -0.17399 0.15992 -0.12727 -0.05151 -0.01213 0.28413 -0.10008 0.03353 0.15192 0.01325 0.19439 -0.22366 -0.01803 0.15266 -0.00008 0.10848 -0.43953 0.10377 0.55777 -0.00557 -0.02907 0.04294 0.05456 0.02342 -0.01865 -0.00709 0.05183 -0.11266 0.08881 0.05983 0.04486 -0.04967 0.15377 0.02919 0.03935 -0.02572 0.03117 0.25185 -0.13085 -0.13608 -0.09330 -0.08629 0.02886 0.22107 -0.05831 0.08044 0.14596 0.10127 0.10736 -0.05702 0.07568 0.08307 0.07455 0.03150 0.04715 -0.00671 0.07265 0.07135 0.07215 0.03289 0.16430 -0.01571 0.00427 0.04398 0.06788 -0.02594 0.22391 0.04159 0.72818 0.11992 0.40055 -0.03468 -0.21591 -0.04198 0.18487 0.00344 0.10369 -0.07566 0.03980 0.14935 0.00757 -0.26542 -0.14487 0.13150 -0.00552 0.03167 0.09309 0.08025 -0.07178 0.02933 -0.01138 -0.06624 -0.10095 0.00957 0.04537 0.52770 0.09292 -0.03020 -0.07145 -0.18217 -0.01324 1.51103 0.19680 -0.01201 -0.02176 0.20898 -0.03323 -0.04452 0.16508 0.28411 -0.00491 0.19473 0.00485 -0.02605 0.17505 0.01216 0.08325 0.18013 -0.00008 -0.14068 0.10736 0.10590 0.45655 -0.01740 0.24316 -0.00008 0.09745 0.33554 0.03988 -0.02823 0.44759 0.08350 -0.09817 -0.00274 0.31120 0.54015 0.02794 0.00008 0.00096 0.02786
2020-06-30 0.04098 -0.13448 -0.06583 -0.01292 0.05105 -0.22611 0.03491 0.09718 0.24605 0.05283 0.09738 -0.07805 0.02760 0.21933 -0.07483 0.12063 0.00065 -0.03159 0.08584 0.04857 0.03479 0.04048 -0.43226 -0.05620 -0.05854 0.25949 -0.00619 -0.00237 0.15210 0.49727 0.45542 -0.13430 0.00919 0.00595 0.00492 0.16286 0.05896 0.19982 -0.01499 0.05886 0.05154 0.13666 -0.01836 0.05600 -0.00903 -0.00018 0.01384 -0.00961 0.03888 -0.01435 -0.03499 0.14966 -0.09940 0.02839 -0.02257 0.07640 -0.01426 0.17356 0.01093 0.07125 -0.03128 0.04156 -0.01713 0.00723 0.03982 0.01046 0.05837 0.04744 0.01930 0.00110 0.00891 0.02637 0.02194 -0.01618 -0.09766 -0.01317 -0.09452 -0.04971 0.04569 0.07202 0.25985 -0.03242 0.09383 -0.04140 0.04112 0.09982 -0.03815 -0.27784 0.21754 -0.06995 0.00373 0.02779 0.09073 0.19491 -0.06522 -0.00970 -0.01732 0.07982 -0.13591 0.30874 -0.00018 0.07255 0.04991 0.36628 0.12246 0.48405 0.07982 -0.17275 -0.04528 -0.00974 0.01090 -0.00594 0.07982 0.08509 0.22463 -0.14126 0.14060 0.08988 0.13707 0.00436 0.04734 0.08853 -0.04780 0.13555 0.06788 -0.33374 -0.03137 -0.00893 -0.13276 -0.03102 -0.00888 -0.00898 -0.04826 0.05538 -0.06705 0.27574 0.25350 -0.17236 0.04643 -0.15218 0.41228 -0.17928 -0.00195 0.00018 0.00216 -0.00213
2020-07-31 -0.02805 0.18178 0.24269 -0.01027 0.13592 0.08207 -0.01709 0.04237 -0.23401 -0.06536 -0.10014 -0.01458 0.02689 1.76653 0.21374 0.62419 -0.08932 -0.19473 0.12593 -0.00252 0.02689 0.31924 -0.56729 0.02063 0.02521 -0.13172 -0.00397 -0.10334 0.21512 -0.08021 0.18336 0.08953 0.01494 -0.03318 0.26889 -0.06556 0.10646 -0.05811 0.02994 -0.08671 0.04576 0.10171 -0.00940 -0.08950 0.48200 -0.00940 -0.06005 -0.04776 0.12768 0.03820 0.06154 -0.01155 0.13161 -0.04181 0.05330 -0.04417 0.09629 0.06010 -0.03311 -0.04776 0.00468 0.00307 0.02055 0.01457 0.00593 0.01039 -0.00014 0.03774 0.01897 -0.00525 0.03590 0.04296 0.01718 -0.00827 0.53296 0.05907 0.04569 0.00522 0.03144 -0.03601 -0.00995 -0.01698 0.41783 0.23242 0.20099 0.06804 0.36507 -0.16362 -0.16828 -0.05014 0.13883 0.19170 0.24153 0.12337 0.21725 0.19217 -0.06991 0.03105 0.02871 0.24682 0.01725 0.38404 -0.06004 0.01804 -0.02010 -0.10014 -0.01249 -0.09640 0.07173 -0.06566 -0.00288 -0.32115 -0.05834 0.00700 -0.09869 0.08682 -0.05120 0.02184 -0.03462 0.05237 -0.09499 -0.06310 -0.06937 -0.11086 0.04825 0.21980 0.02776 0.17403 0.01022 -0.01605 -0.10102 -0.00014 0.00834 0.12806 0.04302 0.73940 0.16270 0.13796 -0.00824 0.02753 -0.00854 0.30895 0.03900 0.00014 0.00168 0.03886
2020-08-31 0.13628 -0.00858 0.09386 0.08048 -0.06701 -0.04428 -0.00583 0.02829 -0.15797 0.04643 -0.09391 -0.03277 -0.03955 -0.10851 0.32913 0.66878 -0.00824 0.00328 0.03597 0.05368 0.03281 0.14951 0.10511 -0.05676 0.03014 0.63628 0.08572 0.04296 0.00609 -0.13897 0.12793 -0.01504 -0.04808 -0.14940 0.09058 0.27992 -0.02761 -0.04623 0.31379 0.04655 0.00305 -0.05890 -0.07485 0.12609 -0.05731 0.44852 0.07345 0.06992 0.05138 -0.17854 -0.00656 -0.03260 -0.02489 -0.00733 -0.02907 0.09795 0.00643 -0.04553 0.04822 0.01992 0.07500 0.03826 0.11478 0.01441 0.02608 0.04159 0.02951 0.02912 -0.01050 0.11674 -0.00878 0.24648 0.08928 0.03271 0.46810 0.02476 0.26287 0.00879 0.00162 0.05279 0.14109 0.06007 0.04124 0.06453 0.26879 0.03822 0.64070 -0.46597 0.01773 0.07887 -0.03768 0.01590 0.13247 0.06161 -0.01794 -0.06460 -0.06883 0.13696 0.07780 -0.23423 -0.00008 0.16319 0.09700 -0.06258 0.02258 -0.14452 0.04992 0.73069 0.11486 -0.03704 0.00267 -0.01182 0.01116 0.24105 0.09521 0.13770 0.07615 0.02740 0.07135 -0.00169 0.04776 0.01178 -0.10752 0.11082 -0.09239 -0.17051 0.09387 0.05992 -0.10905 0.16851 -0.06106 0.17743 0.20974 0.27265 -0.06800 -0.16023 -0.05242 0.21922 -0.14158 -0.18735 -0.12360 0.03881 0.03998 0.00008 0.00096 0.03990
2020-09-30 -0.10967 0.18361 -0.04665 -0.21298 0.12581 -0.09957 -0.00020 -0.06399 0.02480 -0.04347 0.03522 -0.10276 -0.08239 -0.17588 -0.05253 -0.06319 0.09943 -0.11726 -0.05169 0.20615 0.00617 0.08681 -0.22912 0.07838 0.38647 0.58005 -0.08816 -0.02947 0.06944 -0.11848 -0.03578 0.26562 0.02861 -0.00593 0.11716 -0.21739 -0.01925 -0.00826 0.38313 -0.02954 0.12480 -0.04038 0.89879 -0.08319 -0.10563 0.04496 0.00437 -0.00955 0.26732 -0.15189 0.06120 -0.16590 0.11917 0.06549 0.14905 -0.07729 -0.10052 0.02361 -0.04356 -0.01000 -0.04626 -0.03097 -0.00323 -0.06449 0.00470 -0.00020 -0.09215 -0.00729 -0.05915 -0.03123 -0.00897 0.05726 0.08964 -0.07163 0.00599 -0.01232 0.00611 0.10079 -0.18526 -0.03678 -0.20396 -0.06235 -0.02136 0.03525 -0.04481 -0.05758 0.19507 -0.22558 -0.16226 -0.08069 -0.01796 0.02227 -0.11131 -0.00857 -0.14565 -0.01744 -0.21497 -0.01390 -0.07679 -0.17854 0.06818 0.08752 0.11701 -0.04782 -0.16073 -0.00832 -0.08949 -0.21388 0.03416 -0.03632 -0.16184 0.09699 0.16647 -0.02877 -0.07346 -0.07051 0.06230 0.02887 0.07063 0.08478 -0.03933 -0.05489 -0.16872 -0.02652 0.35573 0.21267 -0.01547 0.12244 -0.01459 0.32391 -0.01838 -0.02281 0.13844 -0.01806 0.10114 -0.05720 0.27499 -0.10931 -0.10480 0.94922 -0.02123 0.06263 -0.00369 0.00020 0.00240 -0.00389
2020-10-30 0.01146 0.09538 0.07144 -0.14257 0.15370 -0.15234 -0.03215 -0.08139 0.03623 0.07544 -0.06615 -0.18218 0.05934 -0.08233 -0.04821 -0.07599 -0.09595 -0.19733 -0.06269 -0.01622 -0.01935 -0.05913 0.42151 0.10393 -0.12344 0.00745 0.02334 -0.09201 0.04547 -0.06743 -0.15453 -0.21436 -0.09604 -0.22160 -0.03277 -0.99407 0.13556 -0.04101 0.04382 -0.16379 -0.03369 0.04615 -0.33369 -0.08633 0.01393 0.02433 -0.05036 -0.00979 0.00466 -0.11294 -0.04592 -0.14548 -0.03532 0.09553 0.18146 0.03810 -0.04712 -0.09006 -0.01736 -0.03006 -0.00659 -0.03369 0.03915 -0.01563 0.03379 0.00964 -0.07631 -0.00036 0.07123 -0.02883 0.00849 -0.18009 -0.00340 -0.00891 -0.08036 -0.01263 0.20340 -0.03330 -0.16703 -0.16445 0.06568 -0.08733 -0.05180 1.62153 0.04244 -0.08926 -0.25284 -0.35653 -0.13369 -0.06402 -0.07546 -0.00585 0.13631 -0.05548 -0.05568 0.00841 0.09366 -0.03856 0.03563 -0.14300 -0.08036 -0.21004 -0.08826 -0.17036 0.01609 0.02583 0.01271 -0.04384 -0.03026 -0.21055 -0.09513 -0.58205 0.09488 0.14964 -0.10708 0.27415 0.10552 0.36687 0.06968 -0.04313 -0.12027 -0.02515 0.31367 -0.08241 0.12464 -0.15546 -0.02103 -0.10540 -0.03686 -0.16902 1.81445 0.02792 -0.02814 0.06328 -0.03520 -0.00630 -0.17589 -0.01786 -0.07116 -0.46633 -0.14110 -0.02552 -0.05168 0.00036 0.00433 -0.05204
2020-11-30 0.44603 0.03477 -0.18732 0.16032 -0.16333 0.05990 -0.05668 0.19701 0.08212 -0.11912 0.26033 0.30774 0.26174 0.15156 -0.38571 0.10522 -0.01533 0.49505 0.26270 -0.16387 -0.10078 -0.08920 0.59318 0.02366 0.10503 -0.06225 0.11277 0.09546 0.27069 0.14487 -0.08551 0.25295 -0.05660 0.25376 -0.04616 0.71723 -0.90187 -0.37208 0.01900 0.11027 0.14843 0.07977 0.31176 0.10098 0.12653 0.14862 -0.04245 -0.07837 -0.02970 0.19629 -0.15486 0.29148 -0.02138 0.03784 0.19757 0.16962 0.07486 -0.17369 -0.02730 -0.10173 -0.08907 -0.09084 -0.07725 -0.08363 -0.11463 -0.28164 0.15045 -0.13630 -0.12557 0.01268 -0.07538 -0.00023 -0.03925 0.03425 0.12686 -0.07449 -0.65362 -0.15296 0.18227 0.09865 0.34988 -0.00485 0.04482 -0.00023 -0.10794 0.00396 0.59649 26.68582 0.79056 0.11592 -0.19157 -0.15715 0.11707 0.21152 0.22500 -0.66122 0.21071 -0.64179 -0.99983 0.07753 -0.02889 0.29569 -0.11533 0.37929 0.13610 0.79243 -0.00668 0.55659 -0.90313 0.03981 0.10085 0.24212 0.23894 -0.09397 0.46314 0.03751 -0.00326 0.23720 0.03012 -0.09144 0.05375 0.17958 -0.22599 -0.17044 0.76515 0.11088 -0.02250 -0.02138 0.98083 0.10599 -0.64364 0.10423 0.25423 0.53271 0.29731 0.52522 -0.70859 0.25319 912.33310 -0.04998 0.05506 0.53525 0.14601 0.00023 0.00276 0.14578
2020-12-30 -0.00675 0.02158 0.03753 0.08549 0.11756 -0.03496 -0.05767 0.15781 0.14101 0.17870 0.56619 0.86327 0.20507 0.30204 0.12717 -0.01345 0.09935 0.46659 0.03998 0.10161 -0.00029 0.00631 0.20833 0.04231 0.19415 -0.04988 0.01585 0.06052 0.08121 0.55222 0.05057 0.51240 0.03999 0.07420 0.03870 0.77420 0.34971 0.07663 -0.02859 0.08892 0.28333 0.15197 0.03080 0.03834 -0.03467 0.01806 0.13664 0.12792 0.01069 0.31988 0.02084 0.14323 0.03384 0.01161 0.03641 0.10693 0.16850 0.01859 0.01197 0.01932 0.01884 0.06129 -0.00829 0.05897 0.00410 0.02942 -0.11717 0.02055 0.04869 0.02384 0.03449 0.35767 0.02710 -0.03117 -0.05667 0.00556 0.20415 -0.03693 0.45848 0.08176 0.18611 0.03359 -0.00029 0.59219 0.35711 0.15179 0.12266 1.42346 0.23785 -0.03075 -0.01085 0.21356 -0.07116 0.11414 0.21295 -0.06598 -0.01964 -0.01428 -0.00029 0.07354 0.04733 -0.07116 0.06168 -0.06579 0.07266 0.15629 -0.09348 0.72234 0.11256 0.11082 -0.11504 0.05653 -0.09273 0.20824 0.10242 0.08130 0.06933 1.87396 0.07663 -0.01217 0.19483 0.08932 0.49495 0.11532 0.32015 0.13232 0.02333 0.08381 0.41845 0.15145 0.80722 0.14320 0.22688 -0.09577 0.09195 0.13419 -0.01358 0.16911 0.12380 0.12030 0.12738 0.00811 0.04684 0.00029 0.00349 0.04655
2021-01-29 0.36072 -0.11991 -0.04602 -0.10790 -0.08149 -0.07945 0.15916 -0.01309 0.10450 0.08519 -0.13721 -0.10740 -0.07433 -0.08359 0.01077 0.23974 -0.01169 -0.17015 -0.08428 0.00758 0.01849 -0.11629 -0.07016 -0.05702 0.15921 0.09539 0.03183 -0.00523 -0.04012 -0.25026 0.13685 -0.21503 -0.05493 -0.13591 -0.10291 -0.23255 -0.24894 -0.06375 -0.13424 -0.00951 -0.18121 -0.07169 0.12034 -0.07670 -0.04557 0.11686 0.01434 0.03004 0.04322 -0.52341 -0.04141 -0.00608 0.08059 0.03503 0.14133 -0.04391 -0.07110 -0.06705 0.00458 0.01897 0.04263 -0.04446 0.05081 0.00673 0.03904 -0.00987 -0.04144 -0.00706 -0.01193 0.03048 0.05016 -0.05655 -0.08359 0.08635 -0.06315 0.04044 -0.04454 -0.02665 -0.16693 -0.02307 0.06189 0.06804 0.00743 0.15937 -0.10398 0.01974 -0.13165 -0.33428 -0.31555 0.02592 0.12474 0.05176 -0.12173 0.21938 -0.10026 -0.00807 0.32869 0.02102 0.01693 0.10912 0.03004 0.98279 0.02635 0.44834 -0.00905 0.01359 0.03724 -0.34348 -0.10730 -0.05791 0.29974 -0.06836 -0.00952 0.05856 -0.09470 -0.07785 -0.00618 -0.20859 -0.02109 0.05931 -0.06148 -0.32592 0.24178 -0.09871 -0.30570 0.14945 0.03820 0.10834 -0.04204 0.02873 0.18415 0.02291 -0.04537 -0.11693 -0.01829 -0.10117 0.08312 -0.19746 0.67692 -0.10105 -0.07243 0.03974 -0.00726 0.00026 0.00312 -0.00752
2021-02-26 -0.06836 -0.10799 -0.08552 0.05509 0.08090 0.17174 0.52974 0.27338 -0.02612 -0.03711 0.01627 0.36774 0.14974 0.31143 -0.06390 0.11936 0.01708 -0.01321 0.12303 0.21747 0.01814 0.08282 8.66232 0.06473 0.18026 -0.05582 0.11806 0.10323 0.23219 0.40170 -0.17630 0.26897 0.05275 0.19554 0.04525 0.13678 0.76030 0.05906 0.07597 0.16141 0.02765 0.20166 -0.09891 0.01763 -0.01043 0.24974 -0.02544 -0.00761 0.19092 0.16090 -0.04294 0.19218 0.12188 0.00542 -0.03127 0.25892 -0.00906 0.09258 0.01902 0.02804 -0.01183 0.09801 -0.02584 0.00669 0.08377 0.01915 0.01814 0.04084 0.05879 -0.00622 0.00774 0.13095 -0.03662 -0.01475 0.31182 0.09471 0.26615 -0.01364 0.04322 0.16077 -0.18036 0.06040 0.59261 -0.07953 0.01458 -0.01987 0.00394 -0.05104 0.56377 0.32627 0.03994 0.21027 0.14926 0.01731 -0.00363 0.10211 -0.01016 0.06729 0.13427 0.07016 -0.01497 -0.24385 0.10303 -0.18413 0.06421 0.40035 -0.00629 -0.10349 0.02813 0.03095 -0.06009 0.00743 0.11189 0.18493 0.46402 0.11422 -0.00621 -0.15816 -0.00330 0.00479 -0.09374 -0.08514 -0.07719 0.07828 -0.21110 1.30358 0.05688 0.04173 0.42590 0.27503 -0.10114 0.09031 -0.23032 -0.01284 -0.05427 -0.11114 -0.06909 0.04747 -0.10092 0.07271 -0.02976 0.49173 0.04155 0.00026 0.00312 0.04129
2021-03-31 0.11903 0.51401 0.21010 0.00207 0.03139 0.06806 0.18608 -0.05356 -0.16392 0.09719 -0.01158 -0.25014 0.02589 -0.14376 -0.18467 0.19908 0.09964 0.15728 -0.04977 0.13646 0.04197 0.02347 -0.10496 0.10714 0.14058 -0.10104 0.16228 0.01317 -0.06144 0.23057 -0.07532 -0.12310 0.00780 0.00200 0.29391 -0.04913 0.47980 0.20780 0.17688 0.04858 0.03600 0.03180 -0.08975 -0.00679 0.03062 0.01270 0.04408 0.03684 0.18401 -0.02068 0.04964 0.15136 -0.01109 0.01675 -0.09620 0.14063 -0.03274 0.04936 0.13219 0.03650 0.07727 0.05875 0.08379 0.12911 0.11411 -0.01000 0.05842 -0.00678 0.01205 0.08670 0.00045 0.19488 0.10923 -0.06637 -0.06670 0.12418 -0.07032 0.07366 0.01147 0.04000 -0.00139 0.02461 0.07967 0.11673 0.24249 0.01980 0.11277 0.20795 0.10162 -0.03097 0.06749 0.18425 -0.15265 -0.05847 -0.07452 0.03551 0.05980 0.02488 -0.02078 0.01296 0.08189 -0.09060 0.03416 -0.01996 0.07748 0.07564 0.00698 -0.00739 -0.03087 0.02462 0.02707 -0.01928 0.14266 0.10605 0.01200 0.16123 0.09561 -0.00020 0.09126 0.04528 0.10052 0.02325 -0.05576 0.12058 0.18301 0.28966 0.10575 0.13655 -0.04556 -0.11265 -0.20264 0.08976 0.03008 0.14630 0.05246 0.11691 -0.04229 0.01869 0.01456 0.08685 0.01487 0.06317 0.05143 0.00020 0.00240 0.05123
2021-04-30 0.19800 -0.07933 0.05188 -0.05227 0.32196 0.01836 0.19542 -0.01684 -0.00546 0.00793 0.09851 -0.09130 -0.02559 -0.17936 0.16769 -0.03420 -0.01765 -0.10901 0.00662 0.04425 0.07092 0.16808 -0.02783 0.07125 0.14877 -0.12167 -0.03772 -0.03127 0.34360 -0.27062 0.03358 -0.00977 0.14910 -0.06989 -0.07105 -0.17834 0.34578 0.13890 -0.11167 0.04552 -0.01337 0.11611 0.02169 -0.00902 -0.05333 -0.00017 0.00690 0.01411 0.14428 0.02538 0.04715 0.04526 0.11469 -0.00239 0.04585 -0.02939 -0.02036 0.07908 0.02792 0.02143 0.02066 0.08667 0.06278 0.03805 -0.04137 0.02953 0.01160 -0.04184 0.00375 0.04638 0.04783 -0.01120 -0.09881 -0.02379 0.36147 0.01852 0.08016 -0.01380 -0.02818 0.02785 -0.04027 0.01298 -0.03232 -0.04704 -0.03076 0.07833 -0.05092 -0.15152 -0.05671 -0.01207 -0.02288 0.09222 -0.06123 -0.03310 0.00348 0.14466 0.08474 0.01778 0.00578 -0.20017 0.00492 0.40356 -0.02085 0.03612 -0.01664 -0.11699 0.06272 -0.04365 0.09318 -0.02262 -0.09752 -0.07488 0.00865 -0.09969 0.04321 0.00633 -0.02155 0.10295 -0.00509 -0.05575 -0.07207 0.03316 0.25865 0.01568 -0.09049 -0.03837 0.02650 -0.00169 -0.00843 -0.04316 -0.13167 0.08554 -0.12810 -0.10017 0.00291 -0.00868 0.16060 0.04672 -0.33714 -0.01669 -0.08433 -0.02037 0.01661 0.00017 0.00204 0.01644
2021-05-31 -0.13208 0.01128 -0.04974 0.01419 0.26028 0.12595 -0.02319 0.09955 -0.02143 0.03020 -0.11093 -0.09641 0.07463 -0.05649 -0.03175 0.05684 0.11399 0.00239 -0.04040 0.01750 0.01699 -0.02264 0.06805 0.06270 0.00170 0.03708 0.04649 0.06050 0.12509 -0.19174 -0.22913 -0.04976 -0.00512 -0.10240 0.08692 -0.08107 0.14150 0.08125 -0.10374 0.01226 0.02446 0.30263 -0.07288 0.08486 -0.00366 0.01577 0.04898 0.07732 0.09340 -0.00242 0.02127 -0.09891 0.03368 0.01360 -0.13721 0.05297 0.10722 0.01495 0.01042 0.03655 0.00945 0.03980 0.02263 -0.00629 0.03891 -0.00015 0.04055 0.04333 -0.02554 0.05145 0.05329 0.12178 0.01139 0.00791 -0.11534 0.03654 -0.01077 0.00598 -0.08320 0.05612 -0.25160 0.06567 -0.03765 -0.04387 -0.17855 -0.02221 -0.12094 -0.57085 -0.07549 -0.14071 0.07216 -0.03536 -0.00191 0.04249 -0.00379 -0.07244 -0.15232 0.02635 0.10361 -0.07483 -0.00710 0.06180 0.06285 -0.02739 0.03275 -0.13014 -0.01790 -0.00621 -0.03088 -0.00196 -0.00995 0.17479 0.00568 -0.10372 -0.13918 0.22654 0.08605 -0.19278 0.08077 -0.01467 -0.07292 -0.14330 -0.05622 0.03095 -0.18632 -0.27235 0.05736 0.03147 -0.25015 -0.09850 -0.10578 -0.08806 -0.00327 0.13318 0.03177 0.04654 -0.04078 0.14464 0.01630 -0.02560 0.02688 0.05140 0.03382 0.00015 0.00180 0.03367
2021-06-30 0.02412 -0.10124 -0.02978 -0.08608 0.03175 0.08234 0.22630 0.08511 -0.08707 -0.02491 0.05881 -0.04005 0.09212 0.26258 0.02621 0.00479 -0.03408 -0.07879 0.01938 0.13746 -0.00011 0.01852 -0.05849 0.03059 -0.14798 0.02451 -0.06576 0.00771 -0.05878 -0.09645 -0.01281 -0.12654 -0.02677 -0.02586 -0.09119 -0.05327 -0.28110 0.51602 -0.06900 0.00122 -0.03941 0.11929 -0.01510 0.01871 0.02806 0.01395 0.05340 -0.00665 -0.02617 -0.05459 0.01049 0.13641 0.01444 -0.03122 -0.01187 0.00355 0.00328 -0.07108 0.04592 -0.00011 0.01416 0.01119 0.05780 0.08631 -0.03018 0.00950 0.02782 -0.02789 0.04197 0.00835 0.02888 -0.09753 0.06453 0.02389 0.04764 0.06184 -0.01851 0.00474 -0.05187 -0.01939 0.10928 0.01392 0.04210 0.07360 -0.02227 -0.04146 -0.21272 -0.01533 -0.16122 -0.01413 0.01763 -0.08122 0.12665 -0.02017 -0.00376 -0.05855 -0.05396 -0.01133 0.00115 0.02270 0.09080 0.73322 -0.03901 0.06589 0.12448 0.01431 0.01796 -0.00926 -0.05412 0.07374 -0.02981 -0.03017 0.00859 0.15527 0.27135 -0.12350 -0.03715 0.04200 -0.02952 0.01649 0.01255 0.04695 0.10880 -0.05567 -0.05894 0.11225 -0.00274 -0.00645 -0.01400 0.05652 -0.12610 -0.04246 0.01866 0.00044 0.01432 0.05073 -0.12186 -0.05834 -0.02349 0.09650 -0.06590 -0.13442 0.00728 0.00011 0.00132 0.00717
2021-07-30 -0.05711 -0.03269 -0.08196 -0.02416 -0.04028 -0.08890 -0.14243 -0.15300 -0.03583 -0.04145 -0.05417 -0.29442 -0.05197 -0.03085 0.11373 -0.05085 0.05529 0.01916 -0.14239 -0.00215 0.01673 0.12693 0.00423 0.14158 -0.02398 -0.07920 -0.02576 0.02819 0.32710 -0.01078 -0.12023 0.05964 -0.01593 -0.06629 -0.02127 0.12269 -0.06334 -0.16324 0.03568 0.06745 -0.04557 -0.03822 -0.04579 0.15799 0.16426 -0.13281 0.00306 0.01962 0.06343 -0.02293 -0.08450 -0.16446 0.00585 0.06181 -0.04774 0.06977 0.07628 -0.01227 -0.03612 0.05298 -0.01888 -0.02470 -0.01065 -0.00012 0.01926 0.02846 -0.03272 -0.00012 0.00373 0.02840 0.03509 -0.02582 0.06417 -0.02356 0.15560 0.00822 0.04675 0.05708 0.17532 0.04295 -0.15923 -0.05359 -0.04062 -0.07676 0.28538 0.23714 -0.06648 -0.04487 -0.03765 -0.02856 0.02658 0.11899 -0.09231 0.06838 0.09146 0.02057 -0.02993 -0.00174 0.09587 -0.01384 -0.00653 -0.05300 0.02614 0.02427 -0.12024 -0.09960 0.00580 0.07680 -0.05395 -0.03958 -0.02393 -0.08499 -0.04897 -0.11047 -0.10561 -0.07016 -0.02209 0.00493 -0.03593 0.06574 -0.01512 -0.03383 -0.03583 -0.01693 0.03460 -0.03331 0.01747 0.22328 -0.09730 -0.02083 -0.12174 0.01689 -0.16700 -0.03815 0.09439 0.04919 0.05961 -0.10157 0.66471 0.02702 0.03651 -0.02504 0.01188 0.00012 0.00144 0.01176
2021-08-31 -0.09937 0.16695 -0.07513 -0.08993 0.09439 -0.13234 0.67599 -0.04060 -0.00634 -0.10133 0.00487 -0.00781 -0.02204 0.02178 -0.30220 0.01216 0.01822 0.07821 -0.06618 -0.05312 0.02193 -0.00956 -0.10378 -0.04207 0.20650 -0.04474 0.01588 0.03402 -0.02296 0.59897 0.00227 0.13111 0.03623 -0.04708 -0.01457 -0.10017 -0.06765 0.28392 -0.02782 -0.04758 -0.19303 -0.13680 -0.02471 0.14876 0.01159 0.02222 -0.12992 -0.12275 0.01710 0.13742 -0.03280 -0.05786 0.05209 0.05815 0.03108 0.02093 0.10369 -0.01950 0.04547 0.01663 0.04643 0.02503 -0.00443 0.01687 -0.01158 -0.01869 0.05039 0.00697 -0.01933 0.01777 0.02024 -0.07553 0.02667 0.03183 -0.16731 -0.02695 -0.00017 -0.00702 0.01476 0.00253 -0.15415 0.07900 0.02256 -0.08835 0.14672 0.24547 0.02311 -0.10168 -0.01072 0.08763 -0.06185 0.07794 -0.01566 -0.07460 0.00990 0.00658 0.00821 0.00780 -0.09170 -0.07147 -0.01953 -0.05347 -0.00597 -0.00750 -0.04919 0.16052 0.04689 0.13412 0.10328 0.01567 -0.00714 -0.18485 0.20829 -0.12420 0.05408 0.23512 0.06724 -0.02530 0.05697 0.00478 -0.07377 -0.01645 0.22668 0.08060 -0.02478 0.34908 0.01365 -0.01104 0.17768 -0.09177 0.26137 -0.05368 -0.05361 0.05564 -0.08606 -0.04271 -0.04619 0.02134 -0.39729 -0.09614 0.33135 0.08694 0.00668 0.00017 0.00204 0.00651
2021-09-30 0.24014 -0.01186 0.03545 0.04993 0.22625 0.29804 0.04045 0.01556 0.10522 0.13432 0.06819 -0.01467 -0.00995 -0.01230 -0.58217 -0.18514 -0.05297 0.03973 0.14853 -0.01112 0.00504 -0.10339 -0.02373 0.00541 -0.11915 -0.04133 0.08329 -0.03861 -0.07245 0.17753 -0.05994 -0.06190 -0.04686 -0.03871 -0.05256 -0.06287 -0.02669 -0.06840 0.09205 -0.05847 0.32116 0.07991 -0.06578 -0.06210 -0.07014 0.11277 0.05418 0.06581 -0.02867 -0.10512 0.03233 0.26449 -0.14710 -0.00445 0.07640 0.09127 -0.09917 -0.03980 0.05122 0.03270 0.09095 0.06108 0.06587 0.03315 0.02270 0.02793 0.02102 0.00672 0.03088 0.03970 0.01963 -0.16581 0.02578 0.06940 -0.02123 0.04236 -0.08843 -0.03351 -0.04449 -0.07199 -0.08577 0.20484 -0.01307 -0.16851 -0.11000 -0.18612 0.06909 0.03984 0.27455 0.09828 0.04250 -0.10241 0.04858 0.10154 1.43152 0.37376 0.07996 0.05104 0.18246 -0.09307 0.05226 -0.08080 -0.00243 0.08819 0.25558 -0.04858 0.05019 0.01978 -0.07693 -0.05294 -0.01791 -0.15715 0.01213 0.22972 0.07569 -0.04973 -0.07932 0.01731 -0.05983 -0.04710 -0.10996 0.02327 0.56189 -0.10839 0.25192 -0.22161 0.03543 -0.06630 0.04069 -0.17996 -0.14183 -0.04277 -0.09297 0.05910 -0.04811 0.20467 -0.05537 -0.01195 0.08036 -0.01473 0.00943 0.05198 0.01879 0.00037 0.00445 0.01842
2021-10-29 -0.01060 -0.18180 -0.06290 -0.03420 0.09179 -0.05930 -0.19975 0.08104 -0.08467 0.05651 -0.16002 0.03755 0.09960 -0.25402 0.34187 0.04568 0.07723 0.05984 -0.00461 0.01156 0.06412 0.04645 0.23671 0.13578 0.02363 -0.05734 0.08158 0.10090 -0.04838 0.08770 0.09914 0.04773 0.06678 -0.16290 0.00866 -0.03003 -0.01391 0.02880 -0.06548 0.06184 0.00630 -0.14477 -0.04616 0.09664 -0.04727 -0.03647 0.09271 0.07546 0.27468 0.00684 0.02378 0.22960 0.04457 -0.06802 -0.07638 -0.05596 -0.00470 0.13393 0.09394 0.04759 0.07073 0.05718 0.09658 0.02663 0.10111 0.07300 0.05719 0.04890 0.03748 0.08280 0.04535 0.16171 -0.05773 0.04308 0.01917 0.04058 -0.05768 -0.09510 -0.00382 0.09989 0.36431 -0.04038 -0.18046 0.16145 -0.06369 0.18710 0.04775 0.03634 -0.37495 0.06082 0.01457 0.11210 -0.02040 0.12243 -0.32280 -0.05373 0.24832 -0.01618 0.02610 0.12034 0.04179 -0.19865 0.10517 0.06062 0.13569 -0.10040 0.03169 0.04651 0.14342 0.14411 -0.05040 -0.16169 0.03911 0.06435 -0.03990 0.17553 0.06817 0.03800 0.06569 0.08370 -0.00040 0.26981 0.01409 -0.04811 -0.26014 -0.02597 0.09202 -0.03569 -0.03348 -0.16404 -0.02123 -0.03730 0.01768 0.11187 0.13921 0.23342 -0.15210 -0.13459 -0.01568 -0.22985 -0.11519 -0.08771 0.02532 0.00040 0.00481 0.02492
2021-11-30 -0.21294 -0.03182 0.04221 -0.05361 0.25382 -0.18859 -0.02098 -0.17737 0.06078 0.02024 -0.06202 -0.02315 -0.02550 -0.19313 -0.13688 -0.00057 -0.23615 -0.19830 -0.16240 -0.00701 0.00953 -0.07264 -0.05757 -0.03884 -0.04853 0.14408 -0.07833 -0.15254 0.22023 0.54727 0.07938 0.36523 -0.01735 0.09794 0.06959 -0.07118 -0.13071 -0.02509 -0.13282 -0.16802 -0.04935 0.00191 -0.11905 -0.13700 -0.37762 0.01984 0.00574 0.01866 0.01151 0.30482 0.00746 -0.14041 0.05370 -0.02255 -0.10412 -0.04873 0.04262 0.06851 0.07874 0.11393 0.02872 -0.02491 -0.05758 0.09416 0.00020 0.04291 0.03903 0.00614 0.01735 0.00444 0.02731 -0.17410 0.07386 -0.02834 0.05702 0.01518 -0.09085 0.00318 -0.04002 -0.13423 0.06337 0.07673 -0.06723 0.42389 -0.06691 -0.09925 -0.01339 -0.12096 -0.02441 -0.02365 0.01032 0.06398 -0.04989 0.07618 -0.25863 -0.07099 -0.16689 0.07423 -0.08355 -0.07976 0.02367 0.00307 -0.10819 -0.02453 -0.10698 -0.09148 0.03570 0.22585 0.11617 -0.14815 0.00319 -0.05931 0.18708 -0.01070 -0.17200 0.08410 0.01700 0.07170 0.00904 -0.00465 0.10712 -0.05057 0.45181 -0.10365 -0.06821 -0.04722 -0.03225 0.05308 -0.10057 -0.04405 0.27796 0.03391 -0.03609 -0.03997 -0.03662 0.00319 0.03376 -0.12480 -0.06264 -0.16870 -0.01884 -0.08622 -0.00965 0.00057 0.00686 -0.01022
2021-12-30 -0.00067 0.03106 0.08501 0.03515 -0.04888 0.02918 -0.07984 0.14705 0.09760 0.05843 0.66600 -0.21959 0.02941 -0.06881 0.11498 -0.25662 -0.02213 -0.10265 -0.00571 -0.00283 0.00933 -0.15946 0.07038 0.07290 0.06793 -0.18309 0.05945 0.01145 -0.02557 0.11754 -0.10954 -0.08473 0.01935 0.00337 0.22722 0.12048 0.03083 0.06751 -0.02473 0.07784 0.02730 0.01666 -0.05667 0.23197 -0.01962 0.01266 0.05262 0.00562 0.11742 0.10254 0.06622 0.00706 -0.00067 0.03304 0.05822 0.17963 0.01176 0.01779 0.04406 -0.01436 0.09466 0.04091 0.01163 0.03780 0.02031 -0.00067 -0.00067 0.03266 0.04313 0.07748 0.03058 0.04356 -0.03548 0.03504 0.00307 0.01484 0.02414 0.03482 0.06183 0.07571 -0.19888 0.03081 0.08336 -0.17744 -0.01383 0.07232 0.01557 0.18586 0.09224 0.33791 -0.00202 0.05792 -0.04539 -0.00128 0.12433 0.37054 0.00179 -0.00990 -0.00871 -0.12867 0.02892 -0.04415 0.05893 0.10571 -0.05234 -0.05464 0.03933 0.03298 0.00600 0.03808 0.02929 0.03276 -0.07067 -0.08600 0.12786 0.21102 0.10333 0.03695 0.08334 0.04120 -0.04234 0.00890 0.07146 0.09492 -0.02848 0.20575 0.06238 0.02711 0.18500 0.06569 0.02021 -0.00067 -0.04718 0.03416 -0.02478 -0.02731 0.11151 0.05972 -0.85508 0.00298 -0.23323 0.08935 0.01707 0.00067 0.00807 0.01640
2022-01-31 0.11184 -0.03299 -0.05008 0.02033 -0.11646 -0.07653 -0.03240 0.02799 0.09401 0.17842 0.36832 -0.25989 -0.03285 0.06594 -0.17634 -0.13993 0.04622 -0.03543 0.05213 -0.06899 0.05868 -0.23184 -0.08324 -0.06227 -0.01076 -0.06256 0.06502 0.04096 -0.12707 -0.46306 -0.17361 -0.25579 -0.01519 0.12601 -0.04098 0.17143 0.22828 -0.05038 -0.00073 0.07120 0.00834 -0.13212 -0.02615 -0.12749 -0.12305 -0.00731 0.04094 0.04302 -0.10185 -0.04855 -0.04102 0.24317 -0.08609 0.26557 -0.12479 -0.02288 -0.01198 0.00078 -0.01296 0.13121 -0.00606 0.05715 0.06708 0.05482 0.09516 0.03260 0.05641 0.09605 0.03074 -0.01549 0.02351 -0.08301 -0.08598 0.20617 -0.06296 0.05271 -0.00818 0.05734 0.16734 0.10077 -0.21835 0.04145 -0.15964 -0.13960 -0.10073 -0.17080 0.03548 0.11741 -0.55686 -0.03014 0.02084 0.08599 0.09478 -0.08558 -0.10701 0.05452 0.22286 0.01945 -0.10208 0.18734 0.03950 0.07882 -0.00764 0.18122 0.12813 -0.08798 0.09542 0.01322 -0.09742 0.10156 0.03563 -0.56939 -0.01148 -0.12759 0.14510 -0.05132 0.04274 -0.06871 0.05427 0.01142 -0.11957 -0.03865 -0.23315 0.02280 -0.06043 -0.15789 -0.00598 -0.06380 -0.00813 -0.15674 -0.08286 -0.00443 -0.14901 0.02331 -0.01485 -0.01271 -0.01285 -0.22656 -0.45780 0.22005 -0.14619 0.07740 -0.02212 0.00073 0.00880 -0.02285
2022-02-28 -0.23368 0.08557 0.09951 0.02430 0.25987 0.45619 0.22823 0.07722 -0.11132 -0.02564 -0.30074 -0.09390 0.09127 -0.05114 -0.12648 -0.06765 -0.02038 -0.02362 -0.09725 -0.01237 0.07402 -0.03248 -0.01980 0.15500 -0.08889 -0.06951 -0.07685 0.04250 -0.10074 -0.13859 0.04062 -0.15197 0.06058 0.04528 -0.08242 1.00551 -0.08149 0.38548 -0.08293 0.03822 -0.03894 -0.02315 -0.17465 0.11862 -0.08387 0.16151 0.01355 0.03519 0.06391 -0.11864 -0.02739 -0.14799 -0.08608 -0.03078 -0.05935 0.22844 -0.02039 0.02641 -0.03789 -0.03755 -0.03645 -0.01017 0.03718 0.06943 -0.00387 0.10483 0.07134 -0.00074 -0.01769 -0.01028 0.06435 0.06451 -0.08318 -0.02931 -0.14708 -0.05147 -0.00262 -0.11120 0.14458 0.06240 0.34506 0.13838 0.11908 0.00444 -0.17704 -0.04008 -0.11790 -0.10024 0.49097 -0.21286 -0.01526 -0.03103 0.17875 -0.03452 -0.03047 -0.11592 0.08761 0.00230 0.15716 0.42783 0.02136 -0.11302 0.07445 -0.07458 -0.09434 0.05073 0.09575 -0.06955 -0.05499 0.21105 -0.12530 -0.20107 -0.04422 0.01635 0.08007 0.38769 0.14741 0.05923 0.13670 0.00526 -0.11258 -0.08448 0.11480 -0.03331 -0.08936 -0.01127 -0.01357 -0.06516 -0.06782 -0.05023 0.09816 -0.14572 -0.02610 0.12602 -0.04678 0.20272 -0.14071 -0.01956 -0.09376 -0.43101 -0.27197 -0.12600 0.02325 0.00074 0.00892 0.02251
2022-03-31 0.01140 0.00334 0.18986 0.05901 0.15526 -0.08838 0.12841 0.29609 0.12345 0.05916 0.20658 0.46663 0.10548 0.20507 0.13957 -0.17418 -0.01089 0.10615 0.37051 0.00148 0.17304 -0.13949 -0.07311 0.13066 -0.08643 0.04836 0.01221 0.05037 -0.02993 0.12364 0.12892 -0.05242 -0.01321 0.33653 -0.03212 0.34648 -0.05492 0.11212 -0.04565 0.05538 -0.03856 0.13094 -0.06298 0.03083 -0.71687 0.27549 0.06674 0.07427 -0.02700 -0.02463 -0.05151 0.18866 -0.03731 0.03010 -0.00606 0.02953 -0.00931 -0.10219 0.02981 -0.04546 0.05756 0.02336 -0.01733 0.08110 0.03361 -0.12034 0.02054 0.03224 0.07310 0.02124 0.00067 0.17443 -0.06337 0.02929 0.02305 0.02203 0.01981 -0.02924 0.44385 0.09625 -0.06737 0.18857 -0.02145 -0.05822 -0.11058 -0.10326 0.15513 -0.00808 0.21148 0.25298 -0.01426 0.09069 0.18464 0.10948 0.19969 0.13522 0.25374 0.01682 -0.09178 0.65454 0.04315 -0.11154 0.07492 0.10994 0.20790 0.52710 0.05513 0.05332 0.08440 0.08110 0.14542 -0.09591 0.02413 0.08737 0.23651 -0.02786 -0.02506 -0.02611 0.00330 0.03803 -0.09346 0.10128 0.20270 -0.01077 0.02961 -0.05710 0.02589 -0.10468 0.58102 0.22761 -0.03658 0.08174 0.05906 0.14497 -0.05342 0.09589 -0.06127 0.16304 1.24272 0.15611 0.06913 0.16244 0.04923 0.00087 0.01049 0.04836
2022-04-29 -0.10687 0.09587 -0.01239 -0.06725 0.08781 0.02174 -0.00418 0.00742 -0.17869 0.05171 -0.25493 0.14205 0.01667 -0.08532 -0.21298 0.07871 0.09194 0.20463 -0.04230 -0.04168 -0.00119 -0.09435 -0.01662 0.15589 -0.03483 -0.07412 -0.02991 0.11978 -0.15816 -0.26888 0.18249 -0.22561 -0.05482 0.11317 -0.07076 -0.14532 -0.05974 0.01949 -0.09456 0.09263 0.06307 -0.05144 -0.40261 -0.01897 -0.05245 -0.09010 0.21291 0.20887 -0.07154 -0.03834 0.01255 0.11527 -0.12676 0.06786 -0.03601 -0.07236 0.00717 -0.00408 -0.05600 0.00919 -0.07064 -0.04353 -0.01544 -0.08715 -0.09967 0.00421 -0.00081 -0.01899 -0.03506 -0.06455 -0.04575 -0.01013 -0.01331 -0.00677 0.12119 -0.02250 -0.00633 0.04771 -0.03559 0.09575 -0.09044 -0.03145 0.00549 0.12359 -0.15637 -0.01838 -0.03606 0.22755 0.23476 -0.09590 0.08675 -0.06869 0.00163 -0.02737 0.29849 0.40036 -0.03905 0.00381 0.10633 -0.06408 -0.01703 -0.09948 0.10600 -0.10422 0.02914 0.02894 -0.01217 -0.11296 -0.00795 0.17156 0.01318 0.01946 -0.11389 0.03780 -0.03223 -0.07064 -0.02966 -0.07978 -0.01290 -0.07900 -0.23550 0.06748 -0.02307 -0.04970 -0.14870 -0.08294 -0.06261 0.04424 0.04128 -0.11759 -0.00822 -0.10924 -0.14143 0.04282 -0.10573 0.08413 -0.11822 -0.08021 0.06205 -0.01669 -0.27651 -0.09542 -0.01707 0.00081 0.00976 -0.01788
2022-05-31 0.36358 0.38456 0.34158 0.28090 -0.01533 0.18231 0.08621 0.10733 0.07519 0.01797 -0.04773 -0.08333 0.28138 0.09148 -0.02719 0.30497 -0.02679 -0.02088 0.25148 -0.01484 -0.01621 0.01187 0.10278 -0.11457 0.03816 0.18588 0.02179 -0.07937 -0.03948 0.03739 -0.09685 -0.13493 -0.09400 0.07020 0.02406 1.55998 0.11872 0.31876 -0.02152 -0.14183 -0.06319 -0.00083 -0.01396 0.10287 0.05858 -0.01063 0.06485 0.11194 -0.12419 -0.04614 -0.03540 0.19751 -0.02743 -0.01288 0.07890 -0.03296 -0.02778 -0.12249 -0.05238 -0.09672 -0.06790 0.00830 -0.08004 -0.05255 -0.02556 0.00917 -0.02669 0.01152 -0.06111 -0.03865 -0.03024 -0.09407 0.17223 -0.10262 -0.11014 -0.00864 -0.00083 0.01280 0.97665 -0.12995 0.07375 0.13562 -0.05914 0.12318 0.16424 0.02864 0.19176 -0.13909 0.59258 -0.01439 0.07733 0.00599 0.03576 0.15734 2.27060 -0.13649 0.69642 0.17062 0.12498 -0.19124 -0.05028 -0.12312 -0.10044 -0.10124 0.21214 0.22139 -0.06483 -0.06609 -0.05370 -0.00651 0.03365 0.10414 -0.06397 -0.05287 0.00478 0.13362 0.16367 -0.11186 0.10601 0.01504 -0.01950 0.02200 -0.05242 -0.02210 0.04049 -0.12364 -0.00333 0.02473 -0.02506 0.28516 0.29768 -0.13259 -0.15910 -0.05658 -0.04518 0.12326 0.03711 -0.00002 0.07982 -0.17771 0.23659 -0.05476 0.03837 0.00083 0.01001 0.03754
2022-06-30 -0.13157 -0.00570 -0.05500 -0.22662 0.06044 -0.05738 -0.28501 -0.14663 0.00429 0.19840 0.31724 -0.20550 -0.11119 0.37210 -0.23441 -0.05242 0.00767 -0.13669 -0.19504 -0.16449 -0.08708 -0.11320 -0.13360 0.05575 -0.04836 -0.14781 -0.16761 -0.08532 -0.17093 -0.37997 -0.21065 -0.08526 -0.04598 -0.11232 -0.07506 -0.21618 -0.05156 -0.17191 -0.07156 -0.05267 -0.18587 -0.11447 -0.07148 -0.06894 0.03624 -0.08663 0.14470 0.04988 -0.16330 0.01983 0.06668 -0.21337 -0.06853 -0.02960 -0.03368 -0.26724 -0.06575 -0.10971 -0.05549 -0.00872 -0.06230 -0.12476 -0.01404 -0.09205 -0.02650 0.00876 -0.02769 -0.03163 -0.04265 -0.09077 -0.00114 -0.03888 -0.06683 0.06552 0.02354 -0.06413 -0.03818 0.01006 -0.47176 -0.08751 -0.18302 -0.05119 -0.23142 -0.17448 -0.08122 0.07711 -0.23965 -0.28571 0.14455 -0.05269 -0.15353 -0.03510 -0.02114 -0.15833 -0.16053 0.14236 -0.02997 0.10547 -0.01977 -0.28962 -0.01848 -0.02361 0.02305 -0.02980 -0.16225 -0.05114 -0.02678 -0.08673 -0.07358 0.02034 -0.10447 -0.17581 -0.05519 -0.05604 -0.13266 -0.21521 -0.16471 -0.16319 -0.15172 -0.02702 0.03147 -0.02793 -0.02994 -0.18764 -0.10431 -0.20114 -0.10975 -0.13332 0.31509 -0.13290 0.19673 -0.12941 -0.10998 -0.07358 -0.17061 -0.27711 -0.38971 -0.03529 -0.04194 -0.23588 -0.21386 -0.05577 -0.09097 0.00114 0.01377 -0.09211
2022-07-29 0.01294 0.09856 0.08918 0.01444 0.11833 0.04121 0.00585 -0.00566 -0.02838 -0.01096 -0.08368 0.19386 -0.05780 -0.23468 -0.06593 0.07973 0.06452 0.05782 0.10127 -0.00305 0.06703 0.02708 0.16056 0.00432 0.00246 0.15490 0.14872 -0.00983 0.09813 0.02087 0.19464 -0.03311 0.08875 0.04338 0.18736 0.06083 0.08737 -0.07184 -0.01650 0.07799 0.02886 -0.00887 0.06204 0.07697 0.00766 -0.02118 0.00592 0.04720 0.10618 0.04622 0.05632 0.00817 0.14904 0.00702 0.04393 0.17813 0.04970 0.11038 0.02164 0.09788 0.06722 0.06058 -0.03185 -0.05135 -0.00135 -0.01115 -0.02862 0.01752 -0.00529 0.06774 -0.01347 -0.00527 -0.04822 -0.12635 0.04998 -0.00135 0.13327 -0.10822 -0.01340 0.02727 0.38018 0.07586 0.12023 0.18609 0.02544 0.04290 0.16818 0.14955 0.00091 0.02039 -0.00281 0.11193 0.05267 -0.01325 -0.01434 0.07708 -0.11545 -0.03794 0.02347 0.00470 -0.04253 -0.09445 -0.00568 0.00797 -0.02532 -0.02527 0.02496 0.03313 0.08694 0.05297 0.00237 -0.01125 -0.00992 0.00487 0.06651 0.21637 0.06087 0.14110 0.04865 0.00817 -0.02767 -0.27291 0.02501 0.14914 0.06591 0.09615 0.06613 0.07855 0.02003 0.00216 0.11084 0.00466 0.35230 0.03117 0.09015 0.11525 0.11211 0.19899 -0.00446 -0.00103 0.09534 0.02566 0.07084 0.00135 0.01632 0.06949
2022-08-31 0.08141 -0.16433 -0.18471 0.03557 0.08225 0.27104 -0.22668 0.16930 0.10387 0.03229 0.40381 0.06994 0.04105 -0.11206 -0.19155 0.14998 -0.13349 -0.07990 0.02780 -0.01019 -0.05769 0.00881 -0.08256 -0.04394 0.03375 -0.16385 -0.01161 -0.08225 -0.09098 -0.27101 -0.12273 -0.23795 -0.03545 0.05841 -0.04006 -0.07289 -0.01357 -0.15704 -0.28054 -0.11957 -0.04275 -0.00169 -0.24207 -0.03541 -0.15348 0.09946 0.21670 0.23589 -0.03922 0.03030 0.00023 0.03837 -0.06961 -0.02244 0.00326 0.05118 0.00974 0.01942 0.01704 -0.04335 -0.04233 -0.04597 0.04775 0.15620 -0.02772 0.01811 0.03570 -0.01404 -0.01750 -0.02269 -0.02010 -0.09323 0.00650 0.04117 -0.10959 0.04873 -0.05273 -0.07007 0.02793 -0.10203 -0.11210 0.05229 0.01850 0.13385 -0.11908 -0.24406 0.19979 -0.09501 0.20927 0.10824 0.02362 0.04217 0.12359 0.04784 0.01673 -0.11442 -0.14410 0.04553 0.01016 -0.02425 0.00444 -0.05239 -0.04520 -0.10784 0.05642 -0.01640 0.02395 -0.04931 -0.07345 -0.18271 -0.01280 -0.39794 -0.03051 0.10140 0.01024 -0.12862 -0.09374 -0.03802 -0.08394 0.00129 -0.08818 0.25524 -0.07071 0.04669 -0.02988 0.04615 -0.00256 -0.12423 0.04511 0.00093 -0.12124 -0.22557 -0.11774 0.04949 -0.04175 0.30152 -0.15074 -0.10127 0.18457 -0.13589 0.13358 0.30351 -0.00360 0.00169 0.02047 -0.00529
2022-09-30 -0.14399 0.15796 0.25895 -0.15365 0.06307 0.04225 0.01565 -0.11870 -0.08768 0.01888 -0.20395 -0.00225 -0.10334 -0.07744 -0.20332 -0.06158 -0.25988 -0.12649 -0.03447 -0.05542 -0.11242 -0.19372 -0.14915 -0.02578 -0.21619 -0.12644 -0.05687 -0.31664 -0.05127 -0.05018 -0.16044 -0.12297 -0.16852 -0.11893 -0.06360 -0.41554 -0.05723 -0.08413 -0.42092 -0.35991 -0.02977 -0.09164 -0.11238 -0.17272 -0.14962 -0.01275 -0.04213 -0.11853 -0.25014 -0.11425 -0.05284 -0.12637 -0.11700 -0.22598 -0.04782 -0.10175 0.01187 -0.20107 -0.07210 -0.08196 -0.05650 -0.07796 -0.04936 -0.11134 -0.09385 -0.01196 -0.08333 -0.05850 -0.07655 -0.08311 -0.00225 -0.01417 0.02621 0.00460 -0.02387 -0.08225 0.00137 -0.08794 0.06374 -0.31106 -0.17940 -0.06653 -0.06579 -0.11433 -0.11555 -0.07384 -0.10655 -0.14803 -0.21242 0.04567 -0.09266 -0.05771 -0.12776 -0.10174 -0.48481 -0.05963 -0.12313 -0.13036 0.03823 -0.20687 -0.07542 -0.00225 -0.44547 -0.09691 -0.10320 -0.09280 -0.07725 -0.11475 -0.08460 -0.39298 -0.12585 -0.28755 -0.07940 -0.20973 -0.10014 -0.03948 -0.10363 -0.13550 -0.10131 -0.07651 -0.05550 -0.20906 0.22189 -0.22786 -0.08928 -0.15334 -0.10594 -0.15508 -0.08578 -0.25421 -0.06873 -0.17533 -0.26227 -0.06218 -0.21786 -0.02279 -0.20654 -0.15801 -0.21716 -0.01386 0.00626 0.04648 -0.11683 0.00225 0.02734 -0.11908
2022-10-31 0.11287 0.09597 0.05492 0.15003 -0.07037 0.07394 0.01765 0.13580 0.07464 0.14484 0.00945 0.09933 0.21960 0.00788 0.53105 0.05772 0.19804 0.05308 0.20003 -0.00228 -0.03085 0.08094 0.25555 0.12001 -0.03027 0.08428 0.06849 0.11722 0.00734 0.61230 0.00024 0.10993 0.08587 0.05742 0.23577 0.50759 0.01408 0.06059 0.08488 0.11506 -0.20354 0.01103 0.04466 -0.04597 -0.01463 0.12504 0.09037 0.12053 0.06274 -0.01016 -0.11642 0.09569 0.18702 -0.00883 0.02998 0.11907 -0.03292 0.06037 0.01748 -0.01016 0.05532 0.12608 -0.00228 -0.01248 0.07335 0.04674 -0.01208 0.00435 0.03894 0.00490 -0.01478 0.00759 0.04206 -0.06351 -0.07687 -0.01968 0.00374 -0.01113 -0.48641 0.04043 0.04772 0.05985 0.01997 0.08952 0.07550 0.15917 0.03197 0.14495 0.05188 0.03126 0.20826 0.09914 0.18059 0.03526 0.63318 -0.02837 0.14078 0.07903 -0.00914 0.02673 -0.02202 -0.16116 -0.04313 -0.11255 0.07555 0.01194 -0.02030 0.00335 0.00505 -0.02402 0.03404 0.09853 -0.09231 0.08263 0.28182 0.35960 0.23875 -0.05399 0.22809 0.01323 0.06647 -0.07570 0.09631 0.05756 -0.06957 0.05278 0.03498 0.08481 0.01826 0.07231 0.01287 0.23493 -0.02042 0.06545 -0.04430 0.04124 0.01524 0.10104 0.02677 0.19355 -0.09089 0.18807 0.06589 0.00228 0.02771 0.06361
2022-11-30 -0.00134 0.16034 0.05776 -0.01292 0.15047 0.04965 -0.06247 -0.06152 -0.08433 0.05106 -0.11229 -0.06823 -0.05494 -0.02684 -0.26574 0.01907 0.03676 -0.19286 0.06028 0.02447 0.02671 0.16032 -0.04296 0.08265 0.01810 -0.04507 0.08245 -0.00053 0.20356 -0.16076 0.19228 0.34685 -0.01265 -0.05912 0.00803 0.06268 -0.01522 -0.02964 0.00574 0.00357 0.00517 0.01536 0.05165 -0.02639 -0.10270 0.01612 0.23122 0.23168 -0.05355 -0.08556 -0.00555 -0.06138 0.04450 -0.18072 -0.00520 0.09733 0.01741 0.10828 0.06319 0.04493 0.05755 -0.05145 -0.00270 0.02822 -0.03005 -0.01205 0.08641 0.03020 0.00147 0.03830 0.00996 0.09393 0.04381 -0.00270 -0.00345 -0.00270 0.01405 0.00577 0.90499 0.04281 0.17794 0.00880 0.16977 -0.14709 -0.09445 0.08859 0.00172 0.05570 -0.12184 0.00025 -0.03287 -0.02693 -0.04869 0.05534 -0.05766 -0.06520 0.05441 0.14549 0.02725 -0.05533 0.00401 0.08460 -0.02257 -0.14159 0.02838 -0.09439 0.07069 -0.06432 0.03371 -0.03673 -0.08517 0.02256 -0.00270 -0.07226 -0.11185 0.23692 0.09643 0.00003 0.06113 -0.00639 -0.18691 -0.01090 0.13704 -0.14683 0.03337 -0.00270 0.12206 0.11747 0.00988 0.03418 -0.11912 -0.08541 0.16877 0.07558 0.10359 -0.12330 -0.02036 0.01319 -0.30780 -0.09012 0.08873 0.00331 0.03855 0.00270 0.03289 0.03585
2022-12-30 -0.06902 -0.12007 -0.12876 -0.01602 -0.12363 -0.14225 -0.06121 0.02481 -0.08586 0.06479 -0.09365 0.04942 -0.01040 -0.17366 -0.12052 -0.02384 0.13821 -0.49443 0.02009 -0.00959 0.05461 -0.00629 -0.04143 0.02517 -0.04642 -0.07864 -0.02853 0.08566 -0.07759 -0.12003 -0.04314 -0.12346 -0.01081 -0.00705 0.18855 0.27184 0.00834 0.06156 -0.04019 0.14404 0.11075 -0.00898 -0.05279 -0.00773 -0.03031 -0.03255 0.05197 0.06709 0.11329 -0.11020 0.01148 -0.06149 -0.03970 0.01084 -0.02509 0.00767 -0.01380 0.00475 -0.00253 0.01262 0.04665 0.04986 0.05140 0.09747 0.03763 0.03521 0.03383 0.02295 -0.02742 0.08822 0.00997 0.05490 -0.02475 0.14965 0.06767 0.05942 -0.06724 -0.04135 -0.08318 0.09759 -0.07886 -0.07454 0.01835 -0.18445 -0.03885 -0.12420 -0.07066 -0.16874 0.18259 0.02394 -0.00120 0.03886 -0.05689 -0.05706 -0.00253 -0.03110 0.03195 0.02938 0.06235 -0.09975 0.05080 0.06170 0.11219 -0.07548 -0.11257 -0.05122 0.01457 0.01240 0.05942 0.12759 0.01882 0.04983 0.02927 -0.01188 -0.07829 0.06278 0.05131 -0.07077 0.04547 0.01332 0.17668 -0.17884 -0.08239 0.11032 -0.13212 0.08849 0.01176 -0.03191 -0.00874 -0.07314 -0.00929 0.19419 -0.09091 0.07521 0.00894 0.06604 -0.14455 -0.03463 -0.00097 -0.25192 -0.03328 -0.02641 -0.02602 0.00253 0.03079 -0.02855

Get Equity Risk Premium (ERM)

ERM <- data_wide %>% pull(rmrf)
head(ERM)
## [1]  0.033780253  0.031493848  0.004512596  0.031328096  0.008714897
## [6] -0.026682879

Get pass 2 (cross section) regression coefficients, and test if the market supports the CAPM.

n <- length(ERM) 
B <- NULL
for (n2 in 61:n) {
    n1 <- n2-60
    y <- ER[n1:(n2-1),]
    x <- ERM[n1:(n2-1)]
    regr <- lm(y ~ x) # pass 1 uses 5-yr preceeding data
    regr$coefficients
    betai <- regr$coefficients[2,]
    eRi <- ER[n2,]
    regr <- lm(eRi ~ betai) # pass 2 SML use all cross section obs
    b <- regr$coefficients
    B <- rbind(B,b)
}
B %>% str()
##  num [1:36, 1:2] 0.00815 -0.05358 -0.12548 0.12185 0.09489 ...
##  - attr(*, "dimnames")=List of 2
##   ..$ : chr [1:36] "b" "b" "b" "b" ...
##   ..$ : chr [1:2] "(Intercept)" "betai"
head(B)
##    (Intercept)       betai
## b  0.008151460 -0.02271188
## b -0.053579307 -0.05564175
## b -0.125482759 -0.09742640
## b  0.121847670  0.03912923
## b  0.094888888 -0.02648658
## b  0.009419117  0.02132625
colMeans(B)
## (Intercept)       betai 
##  -0.2228427   0.3580724

\(T\)-test for \(H_0: \gamma_0=0\)

t.test(B[,1]) 
## 
##  One Sample t-test
## 
## data:  B[, 1]
## t = -0.91625, df = 35, p-value = 0.3658
## alternative hypothesis: true mean is not equal to 0
## 95 percent confidence interval:
##  -0.7165885  0.2709030
## sample estimates:
##  mean of x 
## -0.2228427

\(T\)-test for \(H_0: \gamma_1=0\)

t.test(B[,2], alternative=c("two.sided")) 
## 
##  One Sample t-test
## 
## data:  B[, 2]
## t = 0.98097, df = 35, p-value = 0.3333
## alternative hypothesis: true mean is not equal to 0
## 95 percent confidence interval:
##  -0.3829559  1.0991008
## sample estimates:
## mean of x 
## 0.3580724

\(T\)-test for \(H_0: \gamma_1<0\)

t.test(B[,2], alternative=c("greater"))
## 
##  One Sample t-test
## 
## data:  B[, 2]
## t = 0.98097, df = 35, p-value = 0.1667
## alternative hypothesis: true mean is greater than 0
## 95 percent confidence interval:
##  -0.2586539        Inf
## sample estimates:
## mean of x 
## 0.3580724
p1 <- t.test(B[,1])$p.value
p2 <- t.test(B[,2], alternative=c("greater"))$p.value 
test <- colMeans(B)
test <- rbind(test, c(p1,p2))
colnames(test)<- c("constant", "beta");
rownames(test)<- c("average", "p.value");
test
##           constant      beta
## average -0.2228427 0.3580724
## p.value  0.3658059 0.1666704

Plot Security Market Line (SML)

Get \(E[r_i-r_f]\) against \(\beta_i\) data for one cross section.

sml_data <- cbind(eRi, betai) %>% data.frame()
sml_data <- sml_data %>% filter(betai<5) # remove outliers
sml_data %>% str()
## 'data.frame':    140 obs. of  2 variables:
##  $ eRi  : num  -0.069 -0.12 -0.129 -0.016 -0.124 ...
##  $ betai: num  1.814 1.253 0.869 2.339 0.383 ...
head(sml_data)
##                      eRi      betai
## BMG0451H1170 -0.06901575 1.81404649
## BMG067231032 -0.12007330 1.25293991
## BMG173841013 -0.12875537 0.86897724
## BMG1738J1247 -0.01602221 2.33893047
## BMG359472021 -0.12362588 0.38282636
## BMG3682E1921 -0.14225202 0.06525964

Draw scatter plot

p_sml <- ggplot(data.frame(sml_data), aes(x=betai, y=eRi)) +
    geom_point() + 
    geom_smooth(method = "lm", se=FALSE) +
    labs(x=TeX("$\\beta_i$"), y=TeX("$E[r_i-r_f]$"))
p_sml

Home practice:

  • Construct equal-weighted decile portfolios based on the ranking of \(\beta_i\), do the same analysis based on portfolio \(\beta_p\) and see if there exists an SML.

  • Refer to Jensen, Black, and Scholes (1972).


References

Jensen, Michael C., Fischer Black, and Myron S. Scholes. 1972. “The Capital Asset Pricing Model: Some Empirical Tests.” In Studies in the Theory of Capital Markets, edited by Michael C. Jensen. Praeger Publishers Inc. https://papers.ssrn.com/abstract=908569.