Browse Source

SM updated to facilitate reading

alecristia 5 months ago
parent
commit
aa4c76f402

+ 110 - 85
CODE/SM.Rmd

@@ -49,13 +49,19 @@ source("functions.R")
 
 ```
 
+## About this document
 
-## Recalculate everything or not?
+The pdf version of this document was generated using an RMarkDown document, which includes all the computer code to reproduce key figures, tables, and analyses mentioned in the main manuscript, as well as additional texts and analyses. In the pdf version, you will see two types of text:
+
+> Quoted text indicates sections that appear verbatim in the main manuscript.
+
+In contrast, unmarked text are additional texts and analyses, as well as comments for the reader who is attempting to reproduce our analyses. Readers attempting to reproduce our analyses are asked to also read comments in chunks of code in the RMarkDown version of the document.
 
-If RECALC is set to TRUE, then the ICC tables will be re-generated and the simulation re-ran. Notice that you can only do this if you have access to underlying data. If you are not one of the paper's authors, please email us for access to reproduce this section. You do not need access to reproduce all the rest.
 
 ```{r recalc-all}
 
+# If RECALC is set to TRUE, then the ICC tables will be re-generated and the simulation re-ran. Notice that you can only do this if you have access to underlying data. If you are not one of the paper's authors, please email us for access to reproduce this section. You do not need access to reproduce all the rest.
+
 RECALC=FALSE
 
 if(RECALC) source("regenerate_data.R") # This code cannot be reproduced without access to the underlying datasets
@@ -66,6 +72,7 @@ if(RECALC) source("create-all-icc.R")
 
 if(RECALC) source("simulate-r-for-icc.R") #when ran on Aug 2 2023, it gave an error chol(): decomposition failed -- perhaps one of our newly added datasets (lyon, quechua) is too small? -- happened again on Aug 15, need to double check how this affects simulation; I suspect this is bc overlap bet function names across this & previous code
 #aug 18, now it runs for ever...
+#nov 27 it still runs for ever
 
 if(RECALC) source("create-all-rs.R")
 ```
@@ -109,24 +116,20 @@ df.icc.corpus$Type <- get_type(df.icc.corpus)
 
 We were uncertain of how to interpret ICC's numeric values. It is described as "proportion of variance explained", but we do not know if it should be considered as a percentage (like R^2) or a correlation (like r). We therefore simulated data controlling the underlying r between paired datapoints to see how ICC recovered that underlying r.
 
-We will inform the simulation by the data we have as follows:
-
-- we'll have the same N of corpora, and of children in each corpus
-- we'll have the same metrics for each (i.e., CVC, AWC, etc) -- and these metrics will have the same mean & SD for day 1 of recordings as in observed data
-
-We'll depart from reality as follows:
+We informed the simulation by the data we have as follows:
 
-- we will not consider the r across multiple days observed in the data, but instead generate data points to vary r from a small correlation (r=.1), a moderate one (r=.3), a larger one (r=.5). It is unlikely that test-retest correlations in infancy would be much greater than .5 (based on previous studies using test-retest in experimental tasks), but for completeness, we also use .7 and .9
-- we will not consider child age, nor variable re-recording periods
-- we will have a single pair of recordings (rather than variable N of re-recordings)
+- we had the same number of corpora, and of children in each corpus
+- we had the same metrics for each (i.e., CVC, AWC, etc) -- and these metrics had the same mean & SD for day 1 of recordings as in observed data
 
-We use simstudy, a package created for such simulations, following the vignette https://cran.r-project.org/web/packages/simstudy/vignettes/correlated.html to create correlated data providing a correlation matrix
+In the simulation, we departed from reality as follows:
 
+- we did not consider the r across multiple days observed in the data, but instead generate data points to vary r from a small correlation (r=.1), a moderate one (r=.3), a larger one (r=.5). It is unlikely that test-retest correlations in infancy would be much greater than .5 (based on previous studies using test-retest in experimental tasks), but for completeness, we also use .7 and .9
+- we did not consider child age, nor variable re-recording periods
+- we had a single pair of recordings (rather than variable number of re-recordings)
 
+We used simstudy, a package created for such simulations, following the vignette https://cran.r-project.org/web/packages/simstudy/vignettes/correlated.html to create correlated data providing a correlation matrix. Results are shown in the Figure below. Each point represents the ICC extracted from a mixed model applied to one metric, combining data from all corpora. It appears that ICC values reflect underlying r values, but underestimating r more the larger r is. 
 
-In the following plot, each point represents the ICC extracted from a mixed model applied to one metric, combining data from all corpora. It appears that ICC values reflect underlying r values, but underestimating r more the larger r is. 
-
-```{r icc-sim-plot}
+```{r icc-sim-plot, fig.cap="Results from simulations aimed at helping understand the relationship between underlying r and estimated ICC."}
 
 plot(df.icc.simu$icc_child_id~df.icc.simu$myr,xlab="r used to simulate the data",ylab="Estimated ICC from simulated data")
 
@@ -180,13 +183,18 @@ corpus_description=cbind(corpus,location,chi_per_corpus, rec_r_per_child, rec_pe
 
 write.table(corpus_description, "../output/corpus_description.csv", sep='\t')
 
+kable(corpus_description,caption="Table 2 (reproduced).")
+
 nkids=length(levels(mydat_aclew$child_id))
 nrecs=length(levels(mydat_aclew$session_id))
 ```
 
+
+
+
 ## SM D: Code to reproduce Fig. 2
 
-```{r icc-examples-fig2, echo=F,fig.width=4, fig.height=3,fig.cap="(A) scatterplot for one variable with relatively low ICCs versus (B) one with relatively higher ICCs (see Tables 1-2 for details)"}
+```{r icc-examples-fig2, fig.width=4, fig.height=3,fig.cap="Figure 2 (reproduced). Scatterplots for two selected variables. The left one has relatively low ICCs; the right one has relatively higher ICCs."}
 # figure of bad ICC: lena     used to be: avg_voc_dur_chi, now is: peak_wc_adu_ph; good ICC: lena used to be: voc_och_ph, now is: voc_dur_och_ph
 
 # remove missing data points altogether
@@ -275,35 +283,53 @@ mytab=rbind(cbind(rval_tab[rval_tab$data_set=="aclew" & rval_tab$metric== "wc_ad
 mytab=gsub("0.",".",mytab,fixed=T)
 colnames(mytab)<-c("aclew","lena")
 rownames(mytab)<-c("AWC","CVC","CTC","Chi vocs")
-print(mytab)
 
 rval_tab$Type<-get_type(rval_tab)
 
 ```
 
-> QUOTED TEXT
+> Out of  `r length(levels(factor(mydat_aclew$child_id)))` children in `r length(levels(factor(mydat_aclew$experiment)))` corpora, `r length(levels(factor(dist_contig_lena$child_id)))` children (belonging to `r length(levels(factor(gsub(" .*","",dist_contig_lena$child_id))))`  corpora) could be included in this analysis, as some children did not have recordings less than two months apart. In particular, no child from the Warlaumont corpus did. 
 
-Out of  `r length(levels(factor(mydat_aclew$child_id)))` children in `r length(levels(factor(mydat_aclew$experiment)))` corpora, `r length(levels(factor(dist_contig_lena$child_id)))` children (belonging to `r length(levels(factor(gsub(" .*","",dist_contig_lena$child_id))))`  corpora) could be included in this analysis, as some children did not have recordings less than two months apart. In particular, no child from the Warlaumont corpus did. 
+## SM F: Code to reproduce Table 3
 
-## SM F: Exploration: Is lower Child ICC than correlations due to the fact that we are controlling for age?
+```{r tab3}
+kable(mytab,caption="Table 3 (reproduced). Mean and range for Pearson correlations across sampled pairs of recordings ")
 
+```
 
+## SM G: Code to reproduce text above Figure 4
 
+```{r reg model cor}
 
-```{r}
-with_age_cvc <-lmer(can_voc_chi_ph ~ age_s + (1|experiment/child_id),data=mydat_aclew)
-no_age_no_cor_cvc <-lmer(can_voc_chi_ph ~ 1 + (1|child_id),data=mydat_aclew)
 
+lr_cor <- lm(m ~ Type * data_set, data=rval_tab) 
+#plot(lr_cor)
+#binomial could be used, but diagnostic plots look great
+
+reg_sum_cor=summary(lr_cor)
+
+reg_anova_cor=Anova(lr_cor)
+
+r_msds=aggregate(rval_tab$m,by=list(rval_tab$data_set),get_msd)
+rownames(r_msds)<-r_msds$Group.1
+
+cor_t=t.test(rval_tab$m ~ rval_tab$data_set)
 
 ```
 
-May it be that correlation coefficients are higher than Child ICC because we control for age in the latter but not the former? To assess this, we take a metric that shows a large difference across the correlation and the Child ICC analysis, ACLEW's CVC per hour. We then refit our mixed model, but this time we do not declare age nor corpus, so that the situation is more similar to the simple correlations. When we do this, Child ICC goes up from `r round(df.icc.mixed[df.icc.mixed$metric=="can_voc_chi_ph","icc_child_id"],2)` to `r round(as.numeric(icc(no_age_no_cor_cvc)[1]),2)`.
+> To see whether correlations in this analysis differed by talker types and pipelines, we fit a linear model with the formula $lm(cor ~ type * pipeline)$, where type indicates whether the measure pertained to the key child, (female/male) adults, other children; and pipeline LENA or ACLEW. We found an adjusted R-squared of `r round(reg_sum_cor$adj.r.squared*100)`%, suggesting this model did not explain a great deal of variance in correlation coefficients. A Type 3 ANOVA on this model revealed a significant effect of pipeline (F = `r round(reg_anova_cor["data_set","F value"],2)`, p = `r round(reg_anova_cor["data_set","Pr(>F)"],2)`), due to higher correlations for ACLEW (`r r_msds["aclew","x"]`) than for LENA metrics (m = `r r_msds["lena","x"]`). 
 
-This is still lower than the correlation observed for this same variable, `r rval_tab[rval_tab$metric=="can_voc_chi_ph","m"]`. We believe this is due to another difference between the two analyses, namely that here we are including all recordings, whereas the other analysis is focused on recordings less than 2 months away.
+See table below for results of the Type 3 ANOVA.
+
+```{r print out anova results rec on cor}
+
+kable(round(reg_anova_cor,2),caption="Type 3 ANOVA on model attempting to explain variation in Child ICC as a function of talker types and pipelines.")
+```
 
-## SM G: Code to reproduce Figure 3
 
-```{r r-fig3, echo=F,fig.width=4, fig.height=3,fig.cap="Distribution of correlation coefficients."}
+## SM H: Code to reproduce Figure 4
+
+```{r r-fig4, echo=F,fig.width=4, fig.height=3,fig.cap="Figure 4 (reproduced). Violin plot reflecting the distribution of correlations."}
 
 
 ggplot(rval_tab, aes(y = m, x = toupper(data_set))) +
@@ -314,40 +340,28 @@ ggplot(rval_tab, aes(y = m, x = toupper(data_set))) +
 
 ```
 
-## SM H: Code to reproduce text under Figure 3
 
-```{r reg model cor}
+## SM I: Is lower Child ICC than correlations due to the fact that we are controlling for age? (Exploration)
 
 
-lr_cor <- lm(m ~ Type * data_set, data=rval_tab) 
-#plot(lr_cor)
-#binomial could be used, but diagnostic plots look great
-
-reg_sum_cor=summary(lr_cor)
-
-reg_anova_cor=Anova(lr_cor)
-
-r_msds=aggregate(rval_tab$m,by=list(rval_tab$data_set),get_msd)
-rownames(r_msds)<-r_msds$Group.1
+```{r}
+with_age_cvc <-lmer(can_voc_chi_ph ~ age_s + (1|experiment/child_id),data=mydat_aclew)
+no_age_no_cor_cvc <-lmer(can_voc_chi_ph ~ 1 + (1|child_id),data=mydat_aclew)
 
-cor_t=t.test(rval_tab$m ~ rval_tab$data_set)
 
 ```
 
-> QUOTED TEXT
+May it be that correlation coefficients are higher than Child ICC because we control for age in the latter but not the former? To assess this, we take a metric that shows a large difference across the correlation and the Child ICC analysis, ACLEW's CVC per hour. We then refit our mixed model, but this time we do not declare age nor corpus, so that the situation is more similar to the simple correlations. When we do this, Child ICC goes up from `r round(df.icc.mixed[df.icc.mixed$metric=="can_voc_chi_ph","icc_child_id"],2)` to `r round(as.numeric(icc(no_age_no_cor_cvc)[1]),2)`.
 
-To see whether correlations in this analysis differed by talker types and pipelines, we fit a linear model with the formula $lm(cor ~ type * pipeline)$, where type indicates whether the measure pertained to the key child, (female/male) adults, other children; and pipeline LENA or ACLEW. We found an adjusted R-squared of `r round(reg_sum_cor$adj.r.squared*100)`%, suggesting this model did not explain a great deal of variance in correlation coefficients. A Type 3 ANOVA on this model revealed a significant effect of pipeline (F = `r round(reg_anova_cor["data_set","F value"],2)`, p = `r round(reg_anova_cor["data_set","Pr(>F)"],2)`), due to higher correlations for ACLEW (`r r_msds["aclew","x"]`) than for LENA metrics (m = `r r_msds["lena","x"]`). See below for fuller results.
+This is still lower than the correlation observed for this same variable, `r rval_tab[rval_tab$metric=="can_voc_chi_ph","m"]`. We believe this is due to another difference between the two analyses, namely that here we are including all recordings, whereas the other analysis is focused on recordings less than 2 months away.
 
-```{r print out anova results rec on cor}
 
-kable(round(reg_anova_cor,2))
-```
 
 
-## SM I: Code to reproduce text at the beginning of the "Overall reliability" section
+## SM J: Code to reproduce text at the beginning of the "Overall reliability" section
 
 
-Out of the `r dim(df.icc.mixed)[1]` fitted models, `r table(df.icc.mixed$formula)["full"]` could be fit with the full model, yielding a measure of Corpus ICC. Of these, `r round(sum(df.icc.mixed$icc_corpus<.2,na.rm=T)/sum(!is.na(df.icc.mixed$icc_corpus))*100)`% had Corpus ICCs smaller than .2, consistent with the idea that LENA and ACLEW metrics are robust to corpus differences. For the `r table(df.icc.mixed$formula)["no_exp"]` for which the full model was singular, we fit the data with the No Corpus model, and none was singular then, allowing us to have Child ICC for all `r dim(df.icc.mixed)[1]` metrics. 
+> Out of the `r dim(df.icc.mixed)[1]` fitted models, `r table(df.icc.mixed$formula)["full"]` could be fit with the full model, yielding a measure of Corpus ICC. Of these, `r round(sum(df.icc.mixed$icc_corpus<.2,na.rm=T)/sum(!is.na(df.icc.mixed$icc_corpus))*100)`% had Corpus ICCs smaller than .2, consistent with the idea that LENA and ACLEW metrics are robust to corpus differences. For the `r table(df.icc.mixed$formula)["no_exp"]` for which the full model was singular, we fit the data with the No Corpus model, and none was singular then, allowing us to have Child ICC for all `r dim(df.icc.mixed)[1]` metrics. 
 
 ```{r best_metric}
 
@@ -358,9 +372,9 @@ best_metric$icc_child_id=round(best_metric$icc_child_id,2)
 ```
 
 
-Figure 3 shows the distribution of Child ICC across all 69 metrics, separately for each pipeline. The majority of measures had Child ICCs between .3 and .5. `r sum(df.icc.mixed$icc_child_id > .5)` measures had Child ICCs higher or equal to .5. Surprisingly, the top 6 metrics in terms of Child ICC corresponded to the "other child" category, known to have the worst accuracy according to previous analyses (Cristia et al., 2020). In an analysis fully reported in the SM, we find some evidence that this may be due to the presence versus absence of siblings. The next metric with the highest Child ICC corresponded to an output measure, namely the total vocalization duration per hour extracted from ACLEW annotations (`r best_metric[best_metric$Type=="Output",c("metric","data_set")]`), with a Child ICC of `r best_metric[best_metric$Type=="Output","icc_child_id"]`. Among adult metrics, the average vocalization duration for female vocalizations for ACLEW (`r best_metric[best_metric$Type=="Female",c("metric","data_set")]`) and the ACLEW equivalent of CTC had the highest Child ICC (`r best_metric[best_metric$Type=="Female","icc_child_id"]` and `r best_metric[best_metric$Type=="Adults","icc_child_id"]`, respectively). 
+> Figure 5 shows the distribution of Child ICC across all `r dim(df.icc.mixed)[1]` metrics, separately for each pipeline. The majority of measures had Child ICCs between .3 and .5. `r sum(df.icc.mixed$icc_child_id > .5)` measures had Child ICCs higher or equal to .5. Surprisingly, the top 6 metrics in terms of Child ICC corresponded to the "other child" category, known to have the worst accuracy according to previous analyses (Cristia et al., 2020). In an analysis fully reported in the SM, we find some evidence that this may be due to the presence versus absence of siblings. The next metric with the highest Child ICC corresponded to an output measure, namely the total vocalization duration per hour extracted from ACLEW annotations (`r best_metric[best_metric$Type=="Output",c("metric","data_set")]`), with a Child ICC of `r best_metric[best_metric$Type=="Output","icc_child_id"]`. Among adult metrics, the average vocalization duration for female vocalizations for ACLEW (`r best_metric[best_metric$Type=="Female",c("metric","data_set")]`) and the ACLEW equivalent of CTC had the highest Child ICC (`r best_metric[best_metric$Type=="Female","icc_child_id"]` and `r best_metric[best_metric$Type=="Adults","icc_child_id"]`, respectively). 
 
-## SM J: Exploration: Are high Child ICCs for "other child" measures due to number or presence of siblings?
+## SM K: Are high Child ICCs for "other child" measures due to number or presence of siblings? (Exploration)
 
 ```{r explo-och-sibn}
 
@@ -404,7 +418,7 @@ Perhaps it is not so much the sheer number of siblings that explains variance, b
 As in the sibling number analysis, the full model was singular, so we fitted a No Corpus model to be able to extract a Child ICC. We again verified that sibling presence predicted the outcome, total vocalization duration by other children -- and found that it did: ß = `r round(summary(model_sib_presence)$coefficients["sib_presencepresent","Estimate"],2)`, t = `r round(summary(model_sib_presence)$coefficients["sib_presencepresent","t value"],2)`, p < .001. This effect is, as expected, sizable: It means that there is nearly one whole standard deviation increase in this variable when there are any siblings. In addition to being a better predictor, in this model, the amount of variance allocated to individual children as measured by Child ICC was considerably higher in our original analysis (`r round(df.icc.mixed[df.icc.mixed$metric=="voc_dur_och_ph" & df.icc.mixed$data_set=="aclew","icc_child_id"],2)`) than in this re-analysis including sibling presence (`r round(icc.result.split["icc_child_id"],2)`).
 
 
-## SM K: Exploration: are "bad" output measures those coming from VCM?
+## SM L: Are "bad" output measures those coming from VCM? (Exploration)
 
 Among ACLEW measures, a fair number of them come from VCM, a module that classifies child vocalizations in terms of vocal maturity types into cry, canonical, and non-canonical categories. In unpublished analyses, we have found that VCM labels are inaccurate when compared to human labels of the same vocalizations, relatively to other metrics. In this analysis, we checked whether VCM-derived measures had lower Child ICC than other ACLEW measures. As shown in the next Figure, this was not the case: Some output measures from the ACLEW pipeline have lower Child ICC than VCM ones.
 
@@ -426,9 +440,9 @@ panel.background = element_blank(), legend.key=element_blank(), axis.line = elem
 
 ```
 
-## SM L: Code to reproduce Figure 4
+## SM M: Code to reproduce Figure 5
 
-```{r icc-allexp-fig4, echo=F,fig.width=4, fig.height=3,fig.cap="Distribution of ICC attributed to corpus (a) and children (b), when combining data from all corpora."}
+```{r icc-allexp-fig5, echo=F,fig.width=4, fig.height=3,fig.cap="Figure 5 (reproduced). Violin plot reflecting the distribution of Child ICC."}
 
 
 ggplot(df.icc.mixed, aes(y = icc_child_id, x = toupper(data_set))) +
@@ -441,7 +455,7 @@ panel.background = element_blank(), legend.key=element_blank(), axis.line = elem
 ```
 
 
-## SM M: Code to reproduce text below Figure 4
+## SM N: Code to reproduce text below Figure 5
 
 ```{r reg model icc}
 
@@ -463,13 +477,13 @@ rownames(msds_p)<-msds_p$Group.1
 ```
 
 
-Next, we explored how similar Child ICCs were across different talker types and pipelines. We fit a linear model with the formula $lm(icc\_child\_id ~ type * pipeline)$, where type indicates whether the measure pertained to the key child, (female/male) adults, other children; and pipeline LENA or ACLEW. We found an adjusted R-squared of `r round(reg_sum$adj.r.squared*100)`%, suggesting much of the variance across Child ICCs was explained by these factors. A Type 3 ANOVA on this model revealed type was a signficant predictor (F(`r reg_anova["Type","Df"]`) = `r round(reg_anova["Type","F value"],1)`, p<.001), as was pipeline (F(`r reg_anova["data_set","Df"]`) = `r round(reg_anova["data_set","F value"],1)`, p = `r round(reg_anova["data_set","Pr(>F)"],3)`); the interaction between type and pipeline was not significant. The main effect of type emerged because output metrics tended to have higher Child ICC (`r msds["Output","x"]`)  than those associated to adults in general (`r msds["Adults","x"]`), females (`r msds["Female","x"]`), and males (`r msds["Male","x"]`); whereas those associated with other children had even higher Child ICCs (`r msds["Other children","x"]`). The main effect of pipeline arose because of slightly higher Child ICCs for the ACLEW metrics (`r msds_p["aclew","x"]`) than for LENA metrics (`r msds_p["lena","x"]`). 
+> Next, we explored how similar Child ICCs were across different talker types and pipelines. We fit a linear model with the formula $lm(icc\_child\_id ~ type * pipeline)$, where type indicates whether the measure pertained to the key child, (female/male) adults, other children; and pipeline LENA or ACLEW. We found an adjusted R-squared of `r round(reg_sum$adj.r.squared*100)`%, suggesting much of the variance across Child ICCs was explained by these factors. A Type 3 ANOVA on this model revealed type was a signficant predictor (F(`r reg_anova["Type","Df"]`) = `r round(reg_anova["Type","F value"],1)`, p<.001), as was pipeline (F(`r reg_anova["data_set","Df"]`) = `r round(reg_anova["data_set","F value"],1)`, p = `r round(reg_anova["data_set","Pr(>F)"],3)`); the interaction between type and pipeline was not significant. The main effect of type emerged because output metrics tended to have higher Child ICC (`r msds["Output","x"]`)  than those associated to adults in general (`r msds["Adults","x"]`), females (`r msds["Female","x"]`), and males (`r msds["Male","x"]`); whereas those associated with other children had even higher Child ICCs (`r msds["Other children","x"]`). The main effect of pipeline arose because of slightly higher Child ICCs for the ACLEW metrics (`r msds_p["aclew","x"]`) than for LENA metrics (`r msds_p["lena","x"]`). 
 
 
-## SM N: Code to reproduce Table 4
+## SM O: Code to reproduce Table 4
 
 
-```{r tab3, results="as.is"}
+```{r tab4, results="as.is"}
 key_metrics = c("wc_adu_ph", "lena_CVC_ph", "lena_CTC_ph",  "voc_fem_ph",  "voc_chi_ph")
 x <- merge(df.icc.mixed[df.icc.mixed$metric %in% key_metrics & df.icc.mixed$data_set=="lena",c("metric","icc_child_id")] ,
            df.icc.mixed[df.icc.mixed$metric %in% key_metrics & df.icc.mixed$data_set=="aclew",c("metric","icc_child_id")],
@@ -481,20 +495,20 @@ x["lena_CVC_ph","ACLEW ICC"]<-df.icc.mixed[df.icc.mixed$metric=="can_voc_chi_ph"
 x[,2:3]=round(x[,2:3],2)
 x=x[key_metrics,]
 
-kable(x,row.names = F,digits=2,caption="Most commonly used metrics.")
+kable(x,row.names = F,digits=2,caption="Table 4 (reproduced). Most commonly used metrics.")
 #x
 ```
 
 
 
-## SM O: Code to reproduce text at the beginning of the "Reliability across age groups" section
+## SM P: Code to reproduce text at the beginning of the "Reliability across age groups" section
 
-Out of `r dim(df.icc.age)[1]` fitted models (`r dim(df.icc.mixed)[1]` metrics times `r length(levels(factor(df.icc.age$age_bin)))` age bins), `r sum(df.icc.age$formula=="no_chi_effect")` were singular when including a random intercept per child, and therefore they could not be included in these analyses at all. In addition, `r sum(df.icc.age$formula=="no_exp")` were singular when including a random intercept per corpus. The remaining `r sum(df.icc.age$formula=="full")` could be analyzed with the full model.
+> Out of `r dim(df.icc.age)[1]` fitted models (`r dim(df.icc.mixed)[1]` metrics times `r length(levels(factor(df.icc.age$age_bin)))` age bins), `r sum(df.icc.age$formula=="no_chi_effect")` were singular when including a random intercept per child, and therefore they could not be included in these analyses at all. In addition, `r sum(df.icc.age$formula=="no_exp")` were singular when including a random intercept per corpus. The remaining `r sum(df.icc.age$formula=="full")` could be analyzed with the full model.
 
-## SM P: Code to reproduce Figure 5
+## SM Q: Code to reproduce Figure 6
 
 
-```{r relBYage-fig5, echo=F,fig.width=6, fig.height=10,fig.cap="Distribution of ICC attributed to corpus (a) and children (b), when binning children's age."}
+```{r relBYage-fig6,fig.width=6, fig.height=10,fig.cap="Figure 6 (reproduced). Child ICC by metric type and pipeline, when considering each age bin separately."}
 
 #this complicated section is just to add N of participants in each facet, we first estimate it:
 facet_labels_chi=facet_labels_cor=NULL
@@ -518,11 +532,15 @@ ggplot(df.icc.age, aes(y = icc_child_id, x = toupper(data_set))) +
   geom_quasirandom(aes(colour = Type,shape = Type)) +  
   theme(legend.position="none") +labs( y = "r",x="Pipeline") + facet_wrap(~age_bin, ncol = 3) +
   geom_text(x=1.5,y=max(df.icc.age$icc_child_id,na.rm=T),aes(label=facet_labels_chi),data=f_labels,size=3) +
-  geom_text(x=1.5,y=max(df.icc.age$icc_child_id,na.rm=T)*.95,aes(label=facet_labels_cor),data=f_labels,size=3)
+  geom_text(x=1.5,y=max(df.icc.age$icc_child_id,na.rm=T)*.95,aes(label=facet_labels_cor),data=f_labels,size=3) + 
+  theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(),
+panel.background = element_blank(), legend.key=element_blank(), axis.line = element_line(colour = "black")) 
+
+
 
 ```
 
-## SM Q: Code to reproduce text below Figure 5
+## SM R: Code to reproduce text below Figure 6
 
 ```{r reg model age}
 
@@ -537,20 +555,21 @@ reg_anova_age_icc=Anova(age_icc)
 
 ```
 
-As we did in the previous section for corpus, we checked whether Child ICC differed by talker types and pipelines across age bins by fitting a linear model with the formula $lm(Child_ICC ~ type * pipeline * age_bin)$. We found an adjusted R-squared of `r round(reg_sum_age_icc$adj.r.squared*100)`%, suggesting this model explained about a third of the variance in Child ICC.  A Type 3 ANOVA on this model revealed type was a signficant predictor (F(`r reg_anova["Type","Df"]`) = `r round(reg_anova["Type","F value"],1)`, p<.001), whereas as was pipeline (F(`r reg_anova["data_set","Df"]`) = `r round(reg_anova["data_set","F value"],1)`, p = `r round(reg_anova["data_set","Pr(>F)"],3)`); the interaction between type and pipeline was not significant. See below for more information.
+> To interrogate these results statistically, and assess whether Child ICCs tended to be higher or lower in certain age bins, we fit a linear model with the formula $lm(Child_ICC ~ type * pipeline * age_bin)$. We found an adjusted R-squared of `r round(reg_sum_age_icc$adj.r.squared*100)`%, suggesting this model explained about a third of the variance in Child ICC.  A Type 3 ANOVA on this model revealed type was a signficant predictor (F(`r reg_anova["Type","Df"]`) = `r round(reg_anova["Type","F value"],1)`, p<.001), whereas as was pipeline (F(`r reg_anova["data_set","Df"]`) = `r round(reg_anova["data_set","F value"],1)`, p = `r round(reg_anova["data_set","Pr(>F)"],3)`); the interaction between type and pipeline was not significant. 
 
+See table below for results of the Type 3 ANOVA.
 
 ```{r print out anova results rec on icc by age}
-kable(round(reg_anova_age_icc,2))
+kable(round(reg_anova_age_icc,2),caption="Type 3 ANOVA on model attempting to explain variation in Child ICC as a function of talker types, pipelines, and age bins.")
 
 ```
 
 
 
 
-## SM R: Code to reproduce Figure 6
+## SM S: Code to reproduce Figure 7
 
-```{r icc-bycor-fig6, echo=F,fig.width=4, fig.height=4,fig.cap="Correlations in Child ICC across age bins. Each point indicates the correlation in Child ICC for the age bin named in the x-axis with every other age bin."}
+```{r icc-bycor-fig7, echo=F,fig.width=4, fig.height=4,fig.cap="Figure 7 (reproduced). Correlations in Child ICC across age bins. Each point indicates the correlation in Child ICC for the age bin named in the x-axis with every other age bin."}
 
 r_X_age = NULL
 
@@ -574,23 +593,23 @@ r_X_age$ageA=factor(r_X_age$ageA,levels=age_levels)
 ggplot(r_X_age, aes(y = cor, x = ageA)) +
   geom_violin(alpha = 0.5) +
   geom_quasirandom() +
-  theme() +labs( y = "r",x="Age")
+  theme() +labs( y = "Correlation coefficient r",x="Age") + 
+  theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(),
+panel.background = element_blank(), legend.key=element_blank(), axis.line = element_line(colour = "black")) 
 ```
 
 
 
 
-## SM S: Code to reproduce text at the beginning of the "Reliability within corpus" section
-
+## SM T: Code to reproduce text in the "Reliability within corpus" section
 
+> Out of `r dim(df.icc.corpus)[1]` fitted models (`r dim(df.icc.mixed)[1]` metrics times `r length(levels(factor(df.icc.corpus$corpus)))` corpora), `r sum(df.icc.corpus$formula=="no_chi_effect")` were singular when including a random intercept per child, and therefore they could not be included in these analyses at all. (Including a random intercept per corpus is not relevant here, since only data from one corpus is included in each model fit.)
 
-Figure 7 addresses this question, showing the distribution of ICC across our `r dim(df.icc.mixed)[1]` metrics in each of the `r length(levels(factor(df.icc.corpus$corpus)))` included corpora.  Out of `r dim(df.icc.corpus)[1]` fitted models (`r dim(df.icc.mixed)[1]` metrics times `r length(levels(factor(df.icc.corpus$corpus)))` corpora), `r sum(df.icc.corpus$formula=="no_chi_effect")` were singular when including a random intercept per child, and therefore they could not be included in these analyses at all. (Including a random intercept per corpus is not relevant here, since only data from one corpus is included in each model fit.)
 
+## SM U: Code to reproduce Figure 8
 
-## SM T: Code to reproduce Figure 7
 
-
-```{r icc-bycor-fig7, echo=F,fig.width=4, fig.height=10,fig.cap="Child ICC by metric type and pipeline, when considering each corpus separately."}
+```{r icc-bycor-fig8, echo=F,fig.width=4, fig.height=10,fig.cap="Figure 8 (reproduced). Child ICC by metric type and pipeline, when considering each corpus separately."}
 
 facet_labels_chi = paste0("N chi=",chi_per_corpus)
 
@@ -604,12 +623,14 @@ ggplot(df.icc.corpus, aes(y = icc_child_id, x = toupper(data_set))) +
   geom_quasirandom(aes(colour = Type,shape = Type)) +  
   theme(legend.position = "top", axis.title.y=element_blank() ,axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1)) +labs( y = "Child ICC",x="Pipeline") +   
   facet_wrap(~corpus,nrow=1) +
-  geom_text(x=1.5,y=max(df.icc.corpus$icc_child_id,na.rm=T),aes(label=facet_labels_chi),data=f_labels,size=3)
+  geom_text(x=1.5,y=max(df.icc.corpus$icc_child_id,na.rm=T),aes(label=facet_labels_chi),data=f_labels,size=3)+ 
+  theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(),
+panel.background = element_blank(), legend.key=element_blank(), axis.line = element_line(colour = "black")) 
 
 
 ```
 
-## SM U: Code to reproduce text below Figure 7
+## SM V: Code to reproduce text below Figure 8
 
 ```{r reg model corpus}
 
@@ -624,17 +645,19 @@ reg_anova_cor_icc=Anova(cor_icc)
 
 ```
 
-The fact that we cannot infer reliability from one corpus based on another one was confirmed statistically: We checked whether Child ICC differed by talker types and pipelines across corpora by fitting a linear model with the formula $lm(Child_ICC ~ type * pipeline * corpus)$, where type indicates whether the measure pertained to the key child, (female/male) adults, other children;  pipeline LENA or ACLEW; and corpus the corpus ID. We found an adjusted R-squared of `r round(reg_sum_cor_icc$adj.r.squared*100)`%, suggesting this model explained nearly half of the variance in Child ICC. A Type 3 ANOVA on this model revealed several significant effects and interactions, including a three-way interaction of type, pipeline, and corpus  (F(`r reg_anova_cor_icc["Type:data_set:corpus","Df"]`) = `r round(reg_anova_cor_icc["Type:data_set:corpus","F value"],1)`, p<.001); a two-way interaction of type and corpus  (F(`r reg_anova_cor_icc["data_set:corpus","Df"]`) = `r round(reg_anova_cor_icc["data_set:corpus","F value"],1)`, p<.001); and a main effect of corpus (F(`r reg_anova_cor_icc["corpus","Df"]`) = `r round(reg_anova_cor_icc["corpus","F value"],1)`, p<.001). See below for more information.
+> The fact that we cannot infer reliability from one corpus based on another one was confirmed statistically: We checked whether Child ICC differed by talker types and pipelines across corpora by fitting a linear model with the formula $lm(Child_ICC ~ type * pipeline * corpus)$, where type indicates whether the measure pertained to the key child, (female/male) adults, other children;  pipeline LENA or ACLEW; and corpus the corpus ID. We found an adjusted R-squared of `r round(reg_sum_cor_icc$adj.r.squared*100)`%, suggesting this model explained nearly half of the variance in Child ICC. A Type 3 ANOVA on this model revealed several significant effects and interactions, including a three-way interaction of type, pipeline, and corpus  (F(`r reg_anova_cor_icc["Type:data_set:corpus","Df"]`) = `r round(reg_anova_cor_icc["Type:data_set:corpus","F value"],1)`, p<.001); a two-way interaction of type and corpus  (F(`r reg_anova_cor_icc["data_set:corpus","Df"]`) = `r round(reg_anova_cor_icc["data_set:corpus","F value"],1)`, p<.001); and a main effect of corpus (F(`r reg_anova_cor_icc["corpus","Df"]`) = `r round(reg_anova_cor_icc["corpus","F value"],1)`, p<.001). 
+
+See Table below for results of the Type 3 ANOVA.
 
 
 ```{r print out anova results rec on icc by corpus}
-kable(round(reg_anova_cor_icc,2))
+kable(round(reg_anova_cor_icc,2),caption="Type 3 ANOVA on model attempting to explain variation in Child ICC as a function of talker types and pipelines across corpora.")
 
 ```
 
-## SM V: Code to reproduce Figure 8
+## SM W: Code to reproduce Figure 9
 
-```{r icc-bycor-fig8, echo=F,fig.width=4, fig.height=10,fig.cap="Correlations in Child ICC across corpora. Each point indicates the correlation in Child ICC for the corpus named in the x-axis with every other corpus."}
+```{r icc-bycor-fig9, echo=F,fig.width=4, fig.height=10,fig.cap="Figure 9 (reproduced). Correlations in Child ICC across corpora."}
 
 
 
@@ -657,10 +680,12 @@ r_X_corpus$cor=as.numeric(as.character(r_X_corpus$cor))
 ggplot(r_X_corpus, aes(y = cor, x = corpusA)) +
   geom_violin(alpha = 0.5) +
   geom_quasirandom() +  
-  theme() +labs( y = "r",x="Corpus")
+  theme() +labs( y = "Correlation coefficient r",x="Corpus") + 
+  theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(),
+panel.background = element_blank(), legend.key=element_blank(), axis.line = element_line(colour = "black")) 
 ```
 
-## SM W: Code to reproduce text in the Discussion section
+## SM X: Code to reproduce text in the Discussion section
 
 
 ```{r bias}
@@ -684,15 +709,15 @@ bias_tab$rec_per_corpus<-bias_tab$rec_per_corpus/sum(bias_tab$rec_per_corpus)
 
 ```
 
-Our data draws mainly from urban (`r round(sum(bias_tab$rec_per_corpus[urban])*100)`% of recordings, `r round(sum(bias_tab$chi_per_corpus[urban])*100)`% of the children, `r round(sum(urban)/length(urban)*100)`% of the corpora), English-speaking settings (`r round(sum(bias_tab$rec_per_corpus[english])*100)`% of recordings, `r round(sum(bias_tab$chi_per_corpus[english])*100)`% of the children, `r round(sum(english)/length(english)*100)`% of the corpora), and almost exclusively from North America (`r round(sum(bias_tab$rec_per_corpus[northam])*100)`% of recordings, `r round(sum(bias_tab$chi_per_corpus[northam])*100)`% of the children, `r round(sum(northam)/length(northam)*100)`% of the corpora). 
+> Our data draws mainly from urban (`r round(sum(bias_tab$rec_per_corpus[urban])*100)`% of recordings, `r round(sum(bias_tab$chi_per_corpus[urban])*100)`% of the children, `r round(sum(urban)/length(urban)*100)`% of the corpora), English-speaking settings (`r round(sum(bias_tab$rec_per_corpus[english])*100)`% of recordings, `r round(sum(bias_tab$chi_per_corpus[english])*100)`% of the children, `r round(sum(english)/length(english)*100)`% of the corpora), and almost exclusively from North America (`r round(sum(bias_tab$rec_per_corpus[northam])*100)`% of recordings, `r round(sum(bias_tab$chi_per_corpus[northam])*100)`% of the children, `r round(sum(northam)/length(northam)*100)`% of the corpora). 
 
-## SM X: Variability as a function of hardware
+## SM Y: Variability as a function of hardware
 
 Another potential negative contribution to reliability that is currently not discussed is variability in the experimental setup. In a corpus collected in the Solomon Islands, children were wearing two recorders simultaneously. These were USB devices, sourced from two different providers. In this dataset, the duration of the recordings could be very different within the same pair (a ~10% difference was not atypical), which means that what is actually recorded is somewhat random in itself. Even comparing identical audio ranges covered by both recordings of each pair, the corresponding ACLEW metrics differed slightly; they were strongly correlated (R^2 was close to 0.95) but not perfectly correlated. This suggests that randomness in the recorders properties and their placement may also contribute to a decrease reliability. This reliability is importantly not at all due to changing underlying conditions, as both recorders picked up on the exact same day, so it is not due to variability in underlying behaviors. It is also not due to algorithmic variation because ACLEW algorithms are deterministic. Thus, this variability is only due to hardware differences and potentially also differences in e.g. USB placement.
 
-## Save information about packages used
 
 ```{r}
+# Save information about packages used
 writeLines(capture.output(sessionInfo()), "sessionInfo.txt")
 ```
 

File diff suppressed because it is too large
+ 633 - 291
CODE/SM.html


+ 1 - 1
CODE/create-all-rs.R

@@ -17,7 +17,7 @@ mydat_lena = merge(mydat_lena,dist_contig_lena[,c("session_id","next_session")],
 #sum(table(dist_contig_lena$experiment[!duplicated(dist_contig_lena$child_id)])) #and overall
 # maximally, we'll have 148 rows in the samples below
 
-#given those two numbers, with 5 draws we'd cover many combinations in winni, lucid, & trio; but we'll do 10 because there are a lot of recs in cougar & bergelson. Later increased to 20 bc there was a lot of variability still in the average r
+#given those two numbers, with 5 draws we'd cover many combinations in winni, lucid, & trio; but we'll do more because there are a lot of recs in cougar & bergelson. Later increased to 20 bc there was a lot of variability still in the average r
 
 mydat_aclew <- read.csv(paste0('../data_output/', "aclew",'_metrics_scaled.csv')) #1254
 #mydat_aclew=mydat_aclew[order(mydat_aclew$experiment,mydat_aclew$child_id,mydat_aclew$age),]

+ 1 - 1
CODE/regenerate_data.R

@@ -36,7 +36,7 @@ for (data_set in data_sets){ #data_set="aclew";data_set="lena"
     mydat2$lena_CVC_ph=mydat2$lena_CVC/(mydat2$duration_its/(60*60*1000))
   }
   # Remove FauseyElse
-  # if needed, in the terminal, do `datalad get input/el1000-metrics/EL1000/fausey-trio/metadata/recordings.csv`
+  # if needed, in the terminal, do `datalad get input/laac-metrics/datasets/fausey-trio/metadata/recordings.csv`
   fausey_trio <- read.csv('../input/laac-metrics/datasets/fausey-trio/metadata/recordings.csv')
   fausey_trio_full <- fausey_trio[fausey_trio$Trio_Subset == "Trio_Full", ]
   fausey_trio_full$session_id <- paste0(fausey_trio_full$HomeBank_ID, "/", fausey_trio_full$fileName)

+ 31 - 27
CODE/sessionInfo.txt

@@ -1,39 +1,43 @@
-R version 4.2.0 (2022-04-22)
-Platform: x86_64-apple-darwin17.0 (64-bit)
-Running under: macOS Big Sur/Monterey 10.16
+R version 4.3.0 (2023-04-21)
+Platform: aarch64-apple-darwin20 (64-bit)
+Running under: macOS Ventura 13.4.1
 
 Matrix products: default
-BLAS:   /Library/Frameworks/R.framework/Versions/4.2/Resources/lib/libRblas.0.dylib
-LAPACK: /Library/Frameworks/R.framework/Versions/4.2/Resources/lib/libRlapack.dylib
+BLAS:   /Library/Frameworks/R.framework/Versions/4.3-arm64/Resources/lib/libRblas.0.dylib 
+LAPACK: /Library/Frameworks/R.framework/Versions/4.3-arm64/Resources/lib/libRlapack.dylib;  LAPACK version 3.11.0
 
 locale:
 [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
 
+time zone: Europe/Paris
+tzcode source: internal
+
 attached base packages:
 [1] stats     graphics  grDevices utils     datasets  methods   base     
 
 other attached packages:
- [1] ggbeeswarm_0.7.1  car_3.1-1         carData_3.0-5     stringr_1.5.0    
- [5] tidyr_1.2.1       dplyr_1.0.10      psych_2.2.9       kableExtra_1.3.4 
- [9] ggpubr_0.5.0      ggthemes_4.2.4    ggplot2_3.4.0     performance_0.9.0
-[13] lme4_1.1-31       Matrix_1.5-3     
+ [1] ggbeeswarm_0.7.2      car_3.1-2             carData_3.0-5        
+ [4] stringr_1.5.0         tidyr_1.3.0           dplyr_1.1.2          
+ [7] psych_2.3.6           kableExtra_1.3.4.9000 ggpubr_0.6.0         
+[10] ggthemes_5.0.0        ggplot2_3.4.2         performance_0.10.4   
+[13] lme4_1.1-33           Matrix_1.5-4.1       
 
 loaded via a namespace (and not attached):
- [1] httr_1.4.4        sass_0.4.4        jsonlite_1.8.4    viridisLite_0.4.1
- [5] splines_4.2.0     bslib_0.4.2       assertthat_0.2.1  highr_0.10       
- [9] vipor_0.4.5       yaml_2.3.6        pillar_1.8.1      backports_1.4.1  
-[13] lattice_0.20-45   glue_1.6.2        digest_0.6.31     ggsignif_0.6.4   
-[17] rvest_1.0.3       minqa_1.2.5       colorspace_2.0-3  cowplot_1.1.1    
-[21] htmltools_0.5.4   pkgconfig_2.0.3   broom_1.0.2       purrr_1.0.0      
-[25] scales_1.2.1      webshot_0.5.4     svglite_2.1.0     tibble_3.1.8     
-[29] mgcv_1.8-40       generics_0.1.3    farver_2.1.1      cachem_1.0.6     
-[33] withr_2.5.0       cli_3.5.0         mnormt_2.1.1      magrittr_2.0.3   
-[37] evaluate_0.19     fansi_1.0.3       nlme_3.1-157      MASS_7.3-56      
-[41] rstatix_0.7.1     xml2_1.3.3        beeswarm_0.4.0    tools_4.2.0      
-[45] lifecycle_1.0.3   munsell_0.5.0     compiler_4.2.0    jquerylib_0.1.4  
-[49] systemfonts_1.0.4 rlang_1.0.6       grid_4.2.0        nloptr_2.0.3     
-[53] rstudioapi_0.14   labeling_0.4.2    rmarkdown_2.19    boot_1.3-28      
-[57] gtable_0.3.1      abind_1.4-5       DBI_1.1.2         R6_2.5.1         
-[61] gridExtra_2.3     knitr_1.41        fastmap_1.1.0     utf8_1.2.2       
-[65] insight_0.17.1    stringi_1.7.8     parallel_4.2.0    Rcpp_1.0.9       
-[69] vctrs_0.5.1       tidyselect_1.2.0  xfun_0.36        
+ [1] beeswarm_0.4.0    gtable_0.3.3      xfun_0.39         bslib_0.5.0      
+ [5] insight_0.19.2    rstatix_0.7.2     lattice_0.21-8    vctrs_0.6.3      
+ [9] tools_4.3.0       generics_0.1.3    parallel_4.3.0    tibble_3.2.1     
+[13] fansi_1.0.4       highr_0.10        pkgconfig_2.0.3   webshot_0.5.5    
+[17] lifecycle_1.0.3   farver_2.1.1      compiler_4.3.0    mnormt_2.1.1     
+[21] munsell_0.5.0     vipor_0.4.5       htmltools_0.5.5   sass_0.4.7       
+[25] yaml_2.3.7        pillar_1.9.0      nloptr_2.0.3      jquerylib_0.1.4  
+[29] MASS_7.3-60       cachem_1.0.8      boot_1.3-28.1     abind_1.4-5      
+[33] nlme_3.1-162      tidyselect_1.2.0  rvest_1.0.3       digest_0.6.33    
+[37] stringi_1.7.12    purrr_1.0.1       labeling_0.4.2    splines_4.3.0    
+[41] cowplot_1.1.1     fastmap_1.1.1     grid_4.3.0        colorspace_2.1-0 
+[45] cli_3.6.1         magrittr_2.0.3    utf8_1.2.3        broom_1.0.5      
+[49] withr_2.5.0       scales_1.2.1      backports_1.4.1   rmarkdown_2.23   
+[53] httr_1.4.6        gridExtra_2.3     ggsignif_0.6.4    evaluate_0.21    
+[57] knitr_1.43        viridisLite_0.4.2 mgcv_1.8-42       rlang_1.1.1      
+[61] Rcpp_1.0.10       glue_1.6.2        xml2_1.3.5        svglite_2.1.1    
+[65] rstudioapi_0.15.0 minqa_1.2.5       jsonlite_1.8.7    R6_2.5.1         
+[69] systemfonts_1.0.4

+ 400 - 400
OUTPUT/df.icc.age.csv

@@ -1,409 +1,409 @@
 "data_set","age_bin","metric","iqr","age_b","age_se","age_t","icc_adjusted","icc_conditional","icc_child_id","icc_corpus","child_id_var","corpus_var","residual_var","child_id_sd","corpus_sd","residual_sd","r2_cond","r2_marg","nobs","nchi","ncor","formula","sw"
-"aclew","(0,6]","wc_adu_ph","1.39997382975514","-1.177052078172","0.610030542949842","-1.92949696007071","0.330030132314814","0.31939567837105","0.330030132314813",NA,"0.318647264236867",NA,"0.64686234545208","0.564488497878272",NA,"0.804277530117608","0.351618354128486","0.0322226757574363","124","64",NA,"no_exp","0.208274604712742"
-"aclew","(0,6]","sc_fem_ph","1.44487159073443","-1.51301590935268","0.57515228665316","-2.63063530209885","0.458966154282723","0.436082477564865","0.458966154282723",NA,"0.471283420529921",NA,"0.555553561091191","0.686500852534009",NA,"0.74535465457136","0.48594165891043","0.0498591813455649","128","64",NA,"no_exp","0.0171695398771508"
-"aclew","(0,6]","sc_mal_ph","1.50613056246636","-1.10628281411005","0.626183845210403","-1.76670609210356","0.176284911678586","0.17086860541427","0.176284911678586",NA,"0.168956271570871",NA,"0.789471026387121","0.411042907213919",NA,"0.888521820996604","0.201593335130172","0.0307247297159017","127","63",NA,"no_exp","0.398424717472775"
-"aclew","(0,6]","pc_fem_ph","1.46158723937821","-1.49757029323703","0.575431206815314","-2.60251838186747","0.456817227415525","0.434440318333659","0.456817227415525",NA,"0.468186203815171",NA,"0.556701159702109","0.684241334483069",NA,"0.746124091356196","0.483424699260939","0.0489843809272804","128","64",NA,"no_exp","0.0189371478732747"
-"aclew","(0,6]","pc_mal_ph","1.50146890346499","-1.02033461410979","0.629386064812931","-1.62115857206507","0.189974690471187","0.185072001403593","0.189974690471187",NA,"0.184805068313472",NA,"0.787982769135334","0.429889600145749",NA,"0.887683935382033","0.210879065783769","0.0258070643801763","128","64",NA,"no_exp","0.621019482224646"
-"aclew","(0,6]","sc_adu_ph","1.40457701990613","-1.18835525771088","0.608287510473829","-1.95360785360396","0.340840308637312","0.329692489032433","0.340840308637313",NA,"0.330304170922305",NA,"0.638783588218826","0.574720950481453",NA,"0.799239381048523","0.362399358854985","0.0327068698225525","124","64",NA,"no_exp","0.193302397415995"
-"aclew","(0,6]","pc_adu_ph","1.40783336887353","-1.18285522434645","0.609092872386157","-1.94199485492672","0.335441159827977","0.324545752594483","0.335441159827978",NA,"0.324386970030734",NA,"0.642658845685762","0.569549795918437",NA,"0.801660056187011","0.357026582433854","0.0324808298393709","124","64",NA,"no_exp","0.211739186293532"
-"aclew","(0,6]","wc_fem_ph","1.46463840089396","-1.50645776283153","0.576550437321246","-2.61288113808533","0.4524760757643","0.430021495220448","0.452476075764301",NA,"0.462877891772671",NA,"0.56011076235849","0.68035130026529",NA,"0.748405479909447","0.479647501426242","0.0496260062057947","128","64",NA,"no_exp","0.0189499430402897"
-"aclew","(0,6]","wc_mal_ph","1.49024842018284","-0.994358357738507","0.630006588769009","-1.57833009283509","0.186040663711606","0.181480393585608","0.186040663711607",NA,"0.181200504326598",NA,"0.792782821208559","0.425676525458708",NA,"0.890383524784999","0.205992615994507","0.0245122224088981","128","64",NA,"no_exp","0.593309053234841"
-"aclew","(0,6]","can_voc_dur_chi_ph","1.12784403254264","0.829593484447604","0.633751976789629","1.30901916653584","0.3812096306204","0.375084244833694","0.290627765043377","0.090581865577022","0.302647301255987","0.0943280734224639","0.644381775801701","0.55013389393491","0.307128757075048","0.802733938364201","0.391152531924808","0.0160682870911138","127","62","6","full","1.28266640887165e-05"
-"aclew","(0,6]","non_can_voc_chi_ph","1.49536846491337","-0.958205822236426","0.579344189886053","-1.65394913587532","0.528141664445667","0.517171446583912","0.329152203736556","0.198989460709111","0.35245270791122","0.213075815615237","0.505260928618037","0.593677275892568","0.461601360066494","0.710817085204089","0.537942801317437","0.020771354733525","128","63","6","full","0.247902576132545"
-"aclew","(0,6]","avg_cry_voc_dur_chi","1.54236813825634","-0.934470496973612","0.67505248672252","-1.3842930962459","0.021915715533159","0.0215234917703742","0.021915715533159",NA,"0.0218353294412939",NA,"0.974496704904403","0.147767822753446",NA,"0.987165996630963","0.0394204097236731","0.0178969179532989","112","63",NA,"no_exp","0.103198194320084"
-"aclew","(0,6]","cry_voc_dur_chi_ph","1.40856641903455","0.311389374888206","0.524133059202743","0.594103671617011","0.50607321687183","0.504669849210406","0.354979094060368","0.151094122811462","0.303278496413496","0.12908816082387","0.421989279458783","0.550707269257902","0.359288408975115","0.649607019249933","0.507442901833302","0.0027730526228953","130","64","6","full","0.000488193323281324"
-"aclew","(0,6]","cry_voc_chi_ph","1.65044475895411","0.654137697256949","0.434376886626704","1.50592197097979","0.603901540303384","0.595385995009939","0.572054897672314","0.0318466426310704","0.419532161574361","0.0233556095337418","0.290489677946934","0.647713024088879","0.152825421752213","0.538970943508955","0.609486878556563","0.0141008835466241","130","64","6","full","0.0272107638653077"
-"aclew","(0,6]","non_can_voc_dur_chi_ph","1.40493139621969","-1.05373390185902","0.555588466355214","-1.89660866931194","0.551886693393501","0.537563097705826","0.394698211102681","0.15718848229082","0.407128007059334","0.162138646002362","0.462225245322965","0.638065832856872","0.402664433495636","0.679871491771029","0.56351696805483","0.025953870349003","128","63","6","full","0.27541073899797"
-"aclew","(0,6]","avg_non_can_voc_dur_chi","1.28592252459363","0.319472663980983","0.620896646490757","0.514534368620943","0.251585030322788","0.250953032147815","0.251065713000021","0.000519317322767007","0.251339744215464","0.000519884143124346","0.749231843719252","0.501337954094306","0.0228009680304224","0.865581794932895","0.253465098045226","0.00251206589741091","127","63","6","full","0.347652129345222"
-"aclew","(0,6]","lp_n","1.68359465235753","-1.18683575107102","0.511638987637286","-2.31967418384543","0.372031506024936","0.354516998098228","0.307293848581067","0.0647376574438693","0.214181635447841","0.0451216886065721","0.437689591478479","0.462797618239162","0.212418663508111","0.661581129929262","0.40159502144589","0.0470780233476615","131","64","6","full","0.000393279028232265"
-"aclew","(0,6]","lp_dur","1.40345131110846","-0.411100319683412","0.559321333218882","-0.734998462006694","0.346840398555922","0.345026127456532","0.304034859668232","0.0428055388876914","0.235544536063924","0.0331626801257916","0.506021498540413","0.48532930682571","0.182106233077815","0.711351880956544","0.350256980341445","0.00523085288491287","126","64","6","full","0.00308373465408833"
-"aclew","(0,6]","cp_n","1.35444914799944","1.80060608161616","0.634708575091554","2.83690208747601","0.254101003960345","0.234826356624379","0.215560021179439","0.0385409827809061","0.210219547034593","0.0375861344702954","0.727419436234359","0.458497052372851","0.193871437995119","0.852888876838219","0.31068063124572","0.0758542746213409","129","63","6","full","0.568932732848658"
-"aclew","(0,6]","cp_dur","1.49247535245342","1.30373274664621","0.656538945133883","1.98576604831926","0.149183121134841","0.143197970685483","0.11207743385981","0.0371056872750314","0.111727521080077","0.0369898409915187","0.848160575193005","0.334256669462371","0.192327431718719","0.920956337289127","0.183317458760467","0.0401194880749842","130","63","6","full","0.668395278363138"
-"aclew","(0,6]","avg_can_voc_dur_chi","1.4730247029066","0.592366006393355","0.645865798181575","0.917165776638355","0.0743323680777528","0.0737370337173068","0.074332368077753",NA,"0.0745322782224193",NA,"0.928157130844398","0.273006004004343",NA,"0.963409119141187","0.0817461201468322","0.00800908642952538","122","61",NA,"no_exp","0.109768270159305"
-"aclew","(0,6]","can_voc_chi_ph","1.43017538407248","1.04513332678905","0.579030391272293","1.80497145321267","0.505419747485622","0.492634270881688","0.430189533687406","0.0752302137982145","0.447388271729528","0.0782378758602779","0.514353295644671","0.668870893169622","0.279710342783884","0.717184282904102","0.517931020103576","0.0252967492218883","127","62","6","full","0.00974474357672004"
-"aclew","(0,6]","peak_voc_chi","1.47264563041752","-0.634395112192915","0.647540080566758","-0.979700147113152","0.298093165130105","0.295160635597787","0.067022715003012","0.231070450127093","0.0668120849124506","0.230344272594086","0.699700975256662","0.258480337574158","0.479941947108279","0.836481305981588","0.304998263142982","0.00983762754519519","128","64","6","full","0.134503054869378"
-"aclew","(0,6]","voc_fem_ph","1.50971740663039","-1.97474245310023","0.551383428372304","-3.5814323599273","0.539124264879389","0.493192673762422","0.472396667716825","0.0667275971625638","0.487054006828757","0.0687979949586853","0.475175607240312","0.697892546764011","0.262293718870059","0.689329824714057","0.578389341968856","0.0851966682064339","130","64","6","full","0.00310126272659958"
-"aclew","(0,6]","peak_voc_fem_ph","1.38262157869046","-1.49289888796614","0.657127938393447","-2.27185423224584","0.0669804243079954","0.063482631645807","0.0446454885503204","0.0223349357576749","0.0434007796157924","0.0217122413938681","0.90700714219283","0.208328537689373","0.147350742766598","0.952369225769517","0.11570374995501","0.0522211183092027","123","63","6","full","0.442972409125555"
-"aclew","(0,6]","peak_simple_CTC","1.50564190462217","-0.806281391362658","0.633155058912608","-1.27343433494377","0.389159960323971","0.383210078172924","0.125573986993795","0.263585973330175","0.130188171217096","0.2732713729001","0.633285201620062","0.36081597971417","0.522753644559366","0.79579218494533","0.398499118047666","0.0152890398747417","126","62","6","full","0.0540862300276883"
-"aclew","(0,6]","peak_voc_mal_ph","1.45504210615513","-0.719972247507181","0.647084551756551","-1.11264014193009","0.235036670651536","0.232105287500403","0.235036670651536",NA,"0.241533638881595",NA,"0.786108720976757","0.491460719571356",NA,"0.886627724006393","0.24457731215514","0.0124720246547366","125","63",NA,"no_exp","0.302100673669915"
-"aclew","(0,6]","voc_och_ph","1.17909198259619","0.112817461173307","0.385149217377265","0.292918837902763","0.833282881016486","0.833074618480259","0.689193258311386","0.144089622705101","0.86463399451714","0.180769014417274","0.20915655631091","0.929856975301654","0.425169394967787","0.457336371078127","0.833324548655199","0.000249930174939409","128","62","6","full","0.012387897736812"
+"aclew","(0,6]","wc_adu_ph","1.39997382975514","-1.17705207816981","0.610030542948715","-1.92949696007067","0.330030132327187","0.319395678383134","0.330030132327187",NA,"0.318647264251022",NA,"0.646862345444617","0.564488497890809",NA,"0.804277530112969","0.351618354140237","0.0322226757571038","124","64",NA,"no_exp","0.208274604703467"
+"aclew","(0,6]","sc_fem_ph","1.44487159073443","-1.51301590935065","0.575152286654393","-2.63063530208969","0.458966154275154","0.436082477557603","0.458966154275154",NA,"0.471283420519378",NA,"0.555553561095697","0.68650085252633",NA,"0.745354654574382","0.485941658903319","0.0498591813457165","128","64",NA,"no_exp","0.017169539880561"
+"aclew","(0,6]","sc_mal_ph","1.50613056246636","-1.10628281411014","0.626183845210203","-1.76670609210426","0.176284911675907","0.170868605411667","0.176284911675907",NA,"0.168956271568124",NA,"0.789471026388852","0.411042907210578",NA,"0.888521820997578","0.201593335127605","0.0307247297159378","127","63",NA,"no_exp","0.398424717464046"
+"aclew","(0,6]","pc_fem_ph","1.46158723937821","-1.49757029203354","0.575431207547882","-2.6025183764628","0.456817222856334","0.434440313957026","0.456817222856333",NA,"0.468186197493046",NA,"0.556701162413452","0.684241329863263",NA,"0.746124093173148","0.483424694973556","0.0489843810165298","128","64",NA,"no_exp","0.0189371501230177"
+"aclew","(0,6]","pc_mal_ph","1.50146890346499","-1.02033461411284","0.629386064814065","-1.621158572067","0.189974690488381","0.185072001420348","0.189974690488381",NA,"0.184805068331494",NA,"0.787982769124134","0.429889600166711",NA,"0.887683935375725","0.210879065800499","0.0258070643801503","128","64",NA,"no_exp","0.62101948223902"
+"aclew","(0,6]","sc_adu_ph","1.40457701990613","-1.18835525770927","0.608287510472664","-1.95360785360507","0.34084030864921","0.329692489044045","0.34084030864921",NA,"0.330304170936091",NA,"0.638783588211659","0.574720950493447",NA,"0.799239381044039","0.362399358866296","0.032706869822251","124","64",NA,"no_exp","0.19330239740484"
+"aclew","(0,6]","pc_adu_ph","1.40783336887353","-1.18285522434733","0.609092872386728","-1.94199485492634","0.335441159821807","0.324545752588461","0.335441159821806",NA,"0.324386970023631",NA,"0.64265884568948","0.569549795912202",NA,"0.80166005618933","0.357026582427989","0.0324808298395277","124","64",NA,"no_exp","0.211739186298045"
+"aclew","(0,6]","wc_fem_ph","1.46463840089396","-1.50645778870475","0.576550420800806","-2.61288125783057","0.452476180198163","0.430021595443128","0.452476180198162",NA,"0.462878035578254",NA,"0.560110700260914","0.680351405950082",NA,"0.748405438422861","0.479647599501951","0.0496260040588233","128","64",NA,"no_exp","0.018949892054161"
+"aclew","(0,6]","wc_mal_ph","1.49024842018284","-0.994358357278286","0.630006588577291","-1.57833009258489","0.186040661013317","0.181480390952734","0.186040661013316",NA,"0.181200501501227",NA,"0.792782822973505","0.425676522140024",NA,"0.890383525776115","0.205992613365532","0.0245122224127978","128","64",NA,"no_exp","0.593309050649631"
+"aclew","(0,6]","can_voc_dur_chi_ph","1.12784403254264","0.829593484467639","0.633751976782834","1.30901916658149","0.381209630642064","0.375084244854768","0.290627765078934","0.0905818655631293","0.302647301295507","0.0943280734087737","0.64438177578445","0.550133893970829","0.307128757052761","0.802733938353456","0.391152531946515","0.0160682870917472","127","62","6","full","1.28266640909059e-05"
+"aclew","(0,6]","non_can_voc_chi_ph","1.49536846491337","-0.958205822224575","0.579344189897316","-1.65394913582271","0.528141664401043","0.517171446540034","0.32915220369264","0.198989460708403","0.352452707849551","0.213075815605625","0.505260928644826","0.593677275840629","0.461601360056083","0.710817085222933","0.537942801273901","0.0207713547338671","128","63","6","full","0.247902576135811"
+"aclew","(0,6]","avg_cry_voc_dur_chi","1.54236813825634","-0.934470496972749","0.675052486722402","-1.38429309624486","0.0219157155329844","0.0215234917702035","0.0219157155329844",NA,"0.0218353294411194",NA,"0.974496704904553","0.147767822752856",NA,"0.987165996631039","0.0394204097234703","0.0178969179532669","112","63",NA,"no_exp","0.103198194319565"
+"aclew","(0,6]","cry_voc_dur_chi_ph","1.40856641903455","0.311389374890187","0.524133059203176","0.5941036716203","0.506073216859792","0.50466984919836","0.354979094061963","0.151094122797829","0.303278496409546","0.129088160809961","0.421989279461676","0.550707269254316","0.35928840895576","0.64960701925216","0.507442901821339","0.00277305262297892","130","64","6","full","0.000488193323289419"
+"aclew","(0,6]","cry_voc_chi_ph","1.65044475895411","0.654137697260646","0.434376886628469","1.50592197098218","0.603901540318723","0.595385995025181","0.572054897664294","0.0318466426544284","0.419532161579183","0.0233556095514679","0.290489677943095","0.647713024092601","0.152825421810208","0.538970943505394","0.609486878571608","0.0141008835464267","130","64","6","full","0.0272107638638624"
+"aclew","(0,6]","non_can_voc_dur_chi_ph","1.40493139621969","-1.05373390183633","0.555588466345925","-1.8966086693028","0.551886693393151","0.537563097705679","0.394698211159257","0.157188482233893","0.407128007105818","0.162138645938913","0.462225245309845","0.638065832893298","0.40266443341685","0.679871491761381","0.563516968054331","0.0259538703486514","128","63","6","full","0.275410739054777"
+"aclew","(0,6]","avg_non_can_voc_dur_chi","1.28592252459363","0.319472663726852","0.620896646440432","0.514534368253351","0.251585030345755","0.250953032171729","0.251065713060058","0.000519317285697599","0.251339744276153","0.000519884106015692","0.74923184369801","0.501337954154832","0.0228009672166707","0.865581794920624","0.253465098065147","0.00251206589341856","127","63","6","full","0.347652129417537"
+"aclew","(0,6]","lp_n","1.68359465235752","-1.18683575109407","0.511638987639956","-2.31967418387837","0.372031506055071","0.354516998126816","0.307293848583467","0.064737657471604","0.214181635456174","0.045121688627306","0.437689591471085","0.462797618248164","0.212418663556915","0.661581129923674","0.401595021474825","0.0470780233480091","131","64","6","full","0.000393279028243277"
+"aclew","(0,6]","lp_dur","1.40345131110846","-0.411100319562504","0.559321333198254","-0.734998461817632","0.346840398531468","0.345026127433189","0.304034859717349","0.0428055388141185","0.235544536091914","0.033162680067376","0.506021498537742","0.485329306854546","0.182106232917426","0.711351880954666","0.350256980315264","0.00523085288207437","126","64","6","full","0.00308373465446779"
+"aclew","(0,6]","cp_n","1.35444914799944","1.80062529314676","0.634705795614826","2.83694477912012","0.254101311410797","0.234826223558189","0.215566219524163","0.0385350918866336","0.210225154070231","0.0375803112698276","0.727417621720047","0.458503166914069","0.193856419212333","0.852887813091527","0.310682140025485","0.0758559164672964","129","63","6","full","0.568908658452603"
+"aclew","(0,6]","cp_dur","1.49247535245342","1.30373274666118","0.656538945132075","1.98576604834753","0.149183121136019","0.143197970686476","0.112077433864321","0.0371056872716978","0.111727521084477","0.0369898409881632","0.848160575191093","0.334256669468953","0.192327431709996","0.920956337288089","0.183317458762378","0.040119488075902","130","63","6","full","0.668395278358477"
+"aclew","(0,6]","avg_can_voc_dur_chi","1.4730247029066","0.592366006393391","0.645865798181583","0.917165776638399","0.0743323680777457","0.0737370337172996","0.0743323680777456",NA,"0.0745322782224117",NA,"0.928157130844404","0.273006004004329",NA,"0.96340911914119","0.081746120146826","0.00800908642952638","122","61",NA,"no_exp","0.10976827015929"
+"aclew","(0,6]","can_voc_chi_ph","1.43017538407248","1.04513332684549","0.579030391264112","1.80497145333564","0.505419747482734","0.492634270877286","0.43018953372599","0.0752302137567446","0.447388271760971","0.0782378758156315","0.51435329563769","0.668870893193127","0.279710342704076","0.717184282899235","0.517931020102316","0.0252967492250297","127","62","6","full","0.00974474358145017"
+"aclew","(0,6]","peak_voc_chi","1.47264563041752","-0.634395112189496","0.647540080567786","-0.979700147106316","0.298093165132893","0.295160635600611","0.0670227149917823","0.23107045014111","0.0668120849020026","0.230344272610632","0.6997009752617","0.258480337553947","0.479941947125516","0.836481305984599","0.304998263145592","0.00983762754498138","128","64","6","full","0.134503054875647"
+"aclew","(0,6]","voc_fem_ph","1.50971740663039","-1.97474245312617","0.551383428376626","-3.58143235994627","0.53912426488116","0.493192673763385","0.472396667696279","0.0667275971848812","0.487054006812741","0.0687979949824252","0.475175607243528","0.697892546752536","0.262293718915313","0.689329824716389","0.578389341971039","0.0851966682076542","130","64","6","full","0.00310126272721299"
+"aclew","(0,6]","peak_voc_fem_ph","1.38262157869046","-1.4928988881322","0.657127938426047","-2.27185423238585","0.066980424338589","0.0634826316741244","0.0446454885546457","0.0223349357839433","0.0434007796207694","0.0217122414197905","0.907007142179231","0.208328537701318","0.14735074285456","0.952369225762378","0.115703749993457","0.0522211183193331","123","63","6","full","0.44297240917875"
+"aclew","(0,6]","peak_simple_CTC","1.50564190462217","-0.806281391341414","0.633155058911345","-1.27343433491275","0.38915996030172","0.383210078151122","0.125573987001057","0.263585973300662","0.130188171220167","0.273271372860146","0.633285201621447","0.360815979718426","0.522753644521151","0.7957921849462","0.398499118025586","0.0152890398744638","126","62","6","full","0.05408623002236"
+"aclew","(0,6]","peak_voc_mal_ph","1.45504210615513","-0.719972230686907","0.647084551370147","-1.11264011660057","0.235036646415997","0.232105263669544","0.235036646415997",NA,"0.241533611235569",NA,"0.786108736962646","0.491460691444971",NA,"0.886627733021388","0.244577287888544","0.0124720242190008","125","63",NA,"no_exp","0.302100614556818"
+"aclew","(0,6]","voc_och_ph","1.17909198259619","0.112817461150184","0.385149217379179","0.292918837841269","0.833282881045388","0.833074618509275","0.689193258154541","0.144089622890848","0.864633994467004","0.180769014680962","0.209156556310122","0.929856975274695","0.425169395277885","0.457336371077265","0.83332454868407","0.000249930174794606","128","62","6","full","0.0123878977374374"
 "aclew","(0,6]","peak_voc_och_ph","1.37901023022689","0.148098366305017","0.437193359906224","0.338747977180585","0.780120865012691","0.779779082952779","0.716761569444751","0.0633592955679424","0.88728829579033","0.0784332807219358","0.272191187808625","0.941959816441407","0.280059423554959","0.521719453162928","0.780217197192816","0.000438114240037475","128","63","6","full","0.323675328188139"
-"aclew","(0,6]","voc_chi_ph","1.40859661527064","-0.506027191605944","0.507608016107175","-0.996885737712824","0.625300997706718","0.621490735301375","0.410539257000281","0.214761740706435","0.422207960186084","0.220865885353357","0.385349022643891","0.649775315156004","0.469963706421419","0.620764869047766","0.627584220549787","0.00609348524841179","130","64","6","full","0.638645594066075"
-"aclew","(0,6]","peak_voc_chi_ph","1.47264563041752","-0.634395112192915","0.647540080566758","-0.979700147113152","0.298093165130105","0.295160635597787","0.067022715003012","0.231070450127093","0.0668120849124506","0.230344272594086","0.699700975256662","0.258480337574158","0.479941947108279","0.836481305981588","0.304998263142982","0.00983762754519519","128","64","6","full","0.134503054869378"
-"aclew","(0,6]","voc_mal_ph","1.47835423817313","-1.31569611992804","0.610999643234445","-2.15335006246999","0.164441156347631","0.157416343080461","0.164441156347631",NA,"0.154051494082807",NA,"0.782766863951235","0.392493941460001",NA,"0.884741128212787","0.20013565631808","0.0427193132376197","128","64",NA,"no_exp","0.47379538635183"
-"aclew","(0,6]","voc_dur_mal_ph","1.70089092893573","-1.15555949392781","0.659045377182753","-1.75338380927201","0.24358254273138","0.236082145974571","0.24358254273138",NA,"0.251195074288678",NA,"0.780057294916174","0.501193649489574",NA,"0.883208522896023","0.266874158705469","0.0307920127308986","124","63",NA,"no_exp","0.552971233001849"
-"aclew","(0,6]","voc_dur_och_ph","1.03509191209067","0.24385291553909","0.360993864214514","0.675504322129379","0.852672249861984","0.851663934083061","0.779805014955968","0.0728672349060149","0.97306670034805","0.0909261654818749","0.183840479282626","0.986441432801791","0.301539658224047","0.428766229176957","0.852846470255766","0.00118253617270451","125","59","6","full","0.00027981691855035"
-"aclew","(0,6]","voc_dur_chi_ph","1.45847259869852","-0.163243522032644","0.485828531402676","-0.336010570563508","0.644758964971566","0.644320281518789","0.46343198868027","0.181326976291295","0.445705436447993","0.174391110414833","0.3416528518294","0.667611740795496","0.417601616872867","0.584510779908635","0.645000665160755","0.000680383641966213","129","64","6","full","0.354794086031936"
-"aclew","(0,6]","avg_voc_dur_fem","1.50522828468344","-1.32827973936812","0.575228459977195","-2.30913425149509","0.559354757572955","0.539133429858019","0.513328256987505","0.0460265005854513","0.567813945279301","0.0509118454499208","0.487416210125257","0.753534302656024","0.225636533943244","0.698151996434342","0.575284597683384","0.0361511678253655","122","63","6","full","0.119384552661787"
-"aclew","(0,6]","avg_voc_dur_mal","1.43013146386038","-0.319091139516063","0.637747220830225","-0.500341089845389","0.639269953274342","0.63818489179702","0.281267768103553","0.358002185170789","0.423632612084987","0.53920647167861","0.543315051640285","0.650870656954964","0.73430679669918","0.737099078577829","0.639882236513074","0.00169734471605405","124","64","6","full","0.539513444017241"
-"aclew","(0,6]","avg_voc_dur_och","1.35718240243259","0.843761924161075","0.500055223177838","1.6873374880458","0.612530129466828","0.602338356546006","0.612530129466828",NA,"0.635177339339872",NA,"0.401795878439238","0.796980137355927",NA,"0.633873708588105","0.618977167325312","0.0166388107793055","128","61",NA,"no_exp","0.00024194537418672"
-"aclew","(0,6]","avg_voc_dur_chi","1.36471047599816","0.499505846248829","0.661757143634247","0.754817459930445","0.342921282112084","0.341019205658628","0.0832408537808605","0.259680428331224","0.0919810321189481","0.286946526063726","0.726071104626539","0.303283748524295","0.535673898994272","0.852098060452281","0.346565891013766","0.00554668535513863","127","63","6","full","0.143266989552209"
-"aclew","(0,6]","voc_dur_fem_ph","1.53364550225071","-1.86019176630539","0.56295004462424","-3.30436383133612","0.444721941867662","0.410008290320682","0.444721941867661",NA,"0.441135026465359",NA,"0.550799449744115","0.664179965420035",NA,"0.742158641898156","0.4880652699273","0.0780569796066178","130","64",NA,"no_exp","0.0172046544001357"
-"aclew","(0,6]","simple_CTC_ph","1.35010833513439","-0.197417883072709","0.491748335857651","-0.401461212326007","0.670628451660519","0.670029468857499","0.485314062078429","0.185314389582091","0.521364310145863","0.199079969928741","0.35383802675377","0.722055614302571","0.44618378492359","0.594842858874317","0.670922635262141","0.000893166404641247","128","62","6","full","0.088308016741458"
-"aclew","(6,12]","wc_adu_ph","1.42295855551096","-0.545076250935824","0.304114080845533","-1.7923413786706","0.483187143160126","0.480739783615116","0.329899358924752","0.153287784235373","0.342401760574875","0.159097026947497","0.536398835834254","0.585151057911438","0.398869686674103","0.732392542175474","0.485804818104659","0.00506503448954375","418","129","8","full","0.000370898387876723"
-"aclew","(6,12]","sc_fem_ph","1.39602920213464","-0.488889162520412","0.294740733781752","-1.65870918568867","0.530465843447215","0.528323272991253","0.412172360134887","0.11829348331233","0.434063137253143","0.124576137192578","0.494471460857086","0.65883468127683","0.352953449044741","0.703186647240323","0.532362308647231","0.00403903565597837","420","129","8","full","0.00674288338147925"
-"aclew","(6,12]","sc_mal_ph","1.33895635259617","-0.526064905540312","0.311550123527296","-1.68854019245549","0.477188089006927","0.474945632444857","0.37496888933565","0.102219199671278","0.396773899729125","0.108163401376102","0.553214217630389","0.629899912469532","0.328882047816693","0.743783716970457","0.479644946224329","0.00469931377947122","412","129","8","full","1.69305880623149e-07"
-"aclew","(6,12]","pc_fem_ph","1.39903931006554","-0.518014499499501","0.292651361391136","-1.77007377323341","0.535602453628812","0.533178262734632","0.4126401368797","0.122962316749113","0.436333481659099","0.130022678321404","0.491062744924298","0.660555434206017","0.360586575348285","0.700758692364424","0.537704363908657","0.00452610117402451","421","129","8","full","0.00375417173277045"
-"aclew","(6,12]","pc_mal_ph","1.33290856370368","-0.396509090850183","0.305900101464566","-1.29620450909237","0.490412808049417","0.489098973772464","0.390363212206214","0.100049595843204","0.411864773395972","0.105560418686564","0.537655718509009","0.64176691516155","0.324900628941472","0.73325010638186","0.491778011218852","0.00267903744638744","415","129","8","full","2.18183487433229e-07"
-"aclew","(6,12]","sc_adu_ph","1.42534494151096","-0.581311716569316","0.304593804898254","-1.90848174592224","0.477309409507444","0.474544448602117","0.325573161635546","0.151736247871898","0.335801291684388","0.156503158229498","0.539111315431944","0.579483642292333","0.395604800564273","0.734242000591048","0.480337254799214","0.00579280619709754","418","129","8","full","0.000216477361509536"
-"aclew","(6,12]","pc_adu_ph","1.42441272509974","-0.608558459503248","0.302497593576615","-2.0117795064347","0.483671156989809","0.480607873281676","0.329213751983799","0.154457405006011","0.341119369921149","0.160043170608193","0.535001252342643","0.584054252549495","0.40005395962069","0.731437797999696","0.486941274940765","0.00633340165908924","419","129","8","full","0.000189407514538758"
-"aclew","(6,12]","wc_fem_ph","1.39636538915955","-0.517415541419823","0.292906378302895","-1.76648779182529","0.535449787094788","0.533034995732576","0.413856646257114","0.121593140837671","0.438190139871368","0.128742442275426","0.491864331795082","0.661959318894574","0.358806970773181","0.70133040130532","0.537544832920697","0.00450983718812172","421","129","8","full","0.00266928346915352"
-"aclew","(6,12]","wc_mal_ph","1.34005946441373","-0.399208512872737","0.306293165657425","-1.30335429462123","0.488270592020407","0.486942806638891","0.392303054779281","0.0959675372411253","0.413327835049963","0.101110745684272","0.539154629959755","0.642905774627949","0.317979159198008","0.734271496082855","0.489662170457264","0.00271936381837242","415","129","8","full","1.95021021691988e-07"
-"aclew","(6,12]","can_voc_dur_chi_ph","1.349755980015","1.08866148238175","0.301573137704716","3.60994182262914","0.486502947876166","0.476611376287201","0.385882856826053","0.10062009105011","0.394439969718904","0.102851383431137","0.524884062890032","0.6280445602972","0.320704511086353","0.724488828685461","0.496943363240511","0.0203319869533106","419","129","8","full","6.27161290198775e-08"
-"aclew","(6,12]","non_can_voc_chi_ph","1.4661538237972","0.734100417110096","0.284583348100579","2.57956209317857","0.54634865297021","0.54126669582781","0.493048347211346","0.0533003057588595","0.513016756007222","0.055458962816241","0.472024181254924","0.716251880281805","0.23549726710992","0.687040159855975","0.550568369978139","0.00930167415032863","424","126","8","full","0.1361995382601"
-"aclew","(6,12]","avg_cry_voc_dur_chi","1.33400253076701","-0.708548197231026","0.322758054323914","-2.19529207013976","0.382727734314257","0.379350970844644","0.374759113564273","0.00796862074998453","0.380758318155822","0.00809618372166773","0.627153660097523","0.617056170989175","0.089978795955868","0.791930337907018","0.388173857630374","0.00882288678573064","417","128","8","full","0.00128355581480605"
-"aclew","(6,12]","cry_voc_dur_chi_ph","1.46992811405957","0.0803248071237021","0.299358777164729","0.268322872923487","0.471129221948685","0.471075376974439","0.469786607490758","0.00134261445792715","0.477848651367396","0.0013656551672548","0.537946769894706","0.69126597729629","0.0369547719145282","0.733448546180785","0.471189666158251","0.000114289183812599","421","127","8","full","1.30291789005567e-05"
-"aclew","(6,12]","cry_voc_chi_ph","1.37566244369682","0.523026313337726","0.287146332372842","1.82146262853397","0.509173415026365","0.506671121016467","0.496124511335284","0.0130489036910775","0.500306686356043","0.0131589018826972","0.494964100126184","0.707323607944796","0.114712256898281","0.703536850581534","0.511585544935808","0.0049144239193405","425","127","8","full","0.00132563301386826"
-"aclew","(6,12]","non_can_voc_dur_chi_ph","1.40737178594179","0.706968777905511","0.300936630415087","2.34922806482673","0.462365156554104","0.458241809300413","0.452136987422109","0.0102281691319908","0.458259994038187","0.010366682788267","0.544915693708164","0.676949033560273","0.101816908164936","0.738184051377543","0.467159754771092","0.00891794547067803","422","124","8","full","0.00273167606383958"
-"aclew","(6,12]","avg_non_can_voc_dur_chi","1.4105058535071","0.828302927862552","0.319957547996027","2.58879008496726","0.436005584638278","0.431052106286511","0.352083562561615","0.0839220220766617","0.378415980021958","0.0901985710395291","0.606175698357595","0.61515524871528","0.300330769385238","0.778572860018634","0.442413149645341","0.0113610433588302","422","129","8","full","0.651435424595424"
-"aclew","(6,12]","lp_n","1.48185857313813","0.0940164445426582","0.307158335024965","0.306084627444724","0.413127771817263","0.413061238336442","0.413127771817265",NA,"0.410405187021677",NA,"0.583004636811732","0.640628743518176",NA,"0.763547403120285","0.413222286528695","0.000161048192253209","425","128",NA,"no_exp","0.0505801691932161"
-"aclew","(6,12]","lp_dur","1.42798132423791","0.58986784128388","0.323752255347486","1.82197291768909","0.333481955249575","0.331384208063311","0.333481955249576",NA,"0.330841430778851",NA,"0.661240526193158","0.575188169887778",NA,"0.813166973132307","0.337674644931759","0.00629043686844752","424","128",NA,"no_exp","0.0233588603016291"
-"aclew","(6,12]","cp_n","1.33254670582195","0.901145583567949","0.298501066910092","3.01890238750595","0.504577598611326","0.497585409430184","0.405306092289346","0.09927150632198","0.425309278794892","0.104170881123944","0.519873123651513","0.652157403388854","0.322755141127054","0.721022276806697","0.511442919554266","0.0138575101240822","420","129","8","full","0.0604325921056011"
-"aclew","(6,12]","cp_dur","1.39904700131512","0.698389348940634","0.303077703811806","2.3043244031382","0.456065963737471","0.452147144745971","0.366173613224914","0.089892350512556","0.37322229597969","0.0916227391532443","0.554404529828063","0.61091922213963","0.302692482815884","0.744583460619468","0.460739803052206","0.00859265830623531","426","129","8","full","0.114219985485036"
-"aclew","(6,12]","avg_can_voc_dur_chi","1.37060950919718","-0.234406335412454","0.313003909139198","-0.748892676954426","0.428144097438557","0.427737148127648","0.428144097438557",NA,"0.445177923714566",NA,"0.594607341054742","0.667216549341041",NA,"0.771107866030909","0.428687644265149","0.00095049613750157","419","128",NA,"no_exp","0.601933897529673"
-"aclew","(6,12]","can_voc_chi_ph","1.37928155042673","1.24130423927665","0.296597721423448","4.18514421931267","0.495750263662524","0.482592915539735","0.366330261175405","0.129420002487123","0.371461418089558","0.131232777490916","0.511312719648672","0.609476347440619","0.362260648554208","0.715061339780492","0.509133190123928","0.0265402745841932","421","129","8","full","1.18140624849459e-05"
-"aclew","(6,12]","peak_voc_chi","1.28674727669548","0.794782890817058","0.300560029863576","2.64433993827392","0.44807521385756","0.442936076639182","0.419515983818928","0.028559230038636","0.414495700357583","0.0282174661112487","0.545319986843605","0.643813404922252","0.167980552776947","0.738457843646884","0.45440543950381","0.0114693628646286","426","128","8","full","0.0118504037936313"
-"aclew","(6,12]","voc_fem_ph","1.36558374650489","-0.0437145418410082","0.286242241553367","-0.152718695898202","0.529957968657212","0.529940109188476","0.404307837564642","0.125650131092567","0.41485062320475","0.128926600838342","0.482298910675471","0.644088987023338","0.359063505300027","0.694477437124829","0.52997380897184","3.3699783363452e-05","423","127","8","full","0.877674584807725"
-"aclew","(6,12]","peak_voc_fem_ph","1.49087919984365","-0.147698335450341","0.333009709188416","-0.443525613142929","0.348755079407533","0.348627232787368","0.216410226974348","0.132344852433189","0.23378255664635","0.142968834668254","0.703523602685853","0.483510658255172","0.378112198518183","0.838763138606992","0.34899381273907","0.000366579951701287","423","127","8","full","0.291922639282524"
-"aclew","(6,12]","peak_simple_CTC","1.44372617759412","0.894195099013926","0.292917736296319","3.05271749782112","0.483104247393932","0.476116731961249","0.441836306243681","0.0412679411502486","0.437605772222572","0.040872805154066","0.511946532644138","0.661517779218799","0.202170238052157","0.715504390373768","0.490580515855464","0.0144637838942154","424","127","8","full","0.011852026206288"
-"aclew","(6,12]","peak_voc_mal_ph","1.44709690161229","-0.524634273892837","0.333247484650207","-1.57430827855616","0.349928533803921","0.348327633643194","0.19395224044479","0.155976293359131","0.211297843737744","0.169925618726594","0.708208880535027","0.459671451949916","0.412220352149908","0.84155147230281","0.35290256825434","0.00457493461114672","423","128","8","full","0.000183554906284605"
-"aclew","(6,12]","voc_och_ph","1.43780524635336","0.552611351863474","0.210552745784042","2.62457442578437","0.754653800252389","0.750496258592453","0.687018990313299","0.0676348099390858","0.684395586908402","0.0673765443115187","0.244409337645003","0.827282047979044","0.259569921815912","0.494377727699179","0.75600546249303","0.00550920390057712","420","127","8","full","0.00625927401365784"
-"aclew","(6,12]","peak_voc_och_ph","1.5697054832443","0.59220921700346","0.236653029356785","2.50243666270854","0.681064698596749","0.676760179330448","0.673474434892115","0.00759026370463432","0.675392993145238","0.00761188644533455","0.319843867375496","0.821822969468022","0.0872461256752101","0.565547405064771","0.683080458850397","0.00632027951994895","425","128","8","full","4.77071458732135e-06"
-"aclew","(6,12]","voc_chi_ph","1.45924662592493","0.904239265502681","0.278505864714862","3.24675125397612","0.553259747816495","0.545262632376516","0.481997316222128","0.0712624315943634","0.487118370268165","0.0720195701745263","0.451486712171921","0.697938657955099","0.268364621689459","0.671927609324041","0.559717172891238","0.0144545405147225","424","126","8","full","0.0715210654342529"
-"aclew","(6,12]","peak_voc_chi_ph","1.28674727669548","0.794782890817058","0.300560029863576","2.64433993827392","0.44807521385756","0.442936076639182","0.419515983818928","0.028559230038636","0.414495700357583","0.0282174661112487","0.545319986843605","0.643813404922252","0.167980552776947","0.738457843646884","0.45440543950381","0.0114693628646286","426","128","8","full","0.0118504037936313"
-"aclew","(6,12]","voc_mal_ph","1.39902605075719","-0.0651389987390397","0.299641207185566","-0.217389989016762","0.499279085558213","0.499242734902863","0.3580292160857","0.141249869472511","0.376735912375888","0.148630044861937","0.526883120350608","0.613788165718343","0.385525673414803","0.725867150620971","0.499315541187768","7.28062849050153e-05","420","128","8","full","8.78470633977113e-08"
-"aclew","(6,12]","voc_dur_mal_ph","1.34201037007669","-0.51457299089763","0.315960675374645","-1.62859821174734","0.45820994101669","0.456131898427382","0.382151138484683","0.0760588025320077","0.402697584136804","0.0801481219012655","0.570919528663553","0.634584576031284","0.283104436385701","0.755592170859091","0.460667030477764","0.00453513205038204","410","128","8","full","2.02713869189453e-08"
-"aclew","(6,12]","voc_dur_och_ph","1.34081287279346","0.426751752440274","0.207309843227654","2.0585214179707","0.760895020887518","0.758357189444733","0.721454391699615","0.0394406291879042","0.705690753047047","0.0385788590830978","0.233880581653511","0.840054017933994","0.196415017458182","0.483612015621522","0.761692513468571","0.00333532402383767","419","127","8","full","7.74332651340925e-05"
-"aclew","(6,12]","voc_dur_chi_ph","1.5004052450901","0.729756707267126","0.284348917036614","2.56641282433005","0.522576592860031","0.517546627506037","0.490475455581491","0.0321011372785434","0.487342943085348","0.0318961174095141","0.474374253972776","0.698099522335711","0.178594841497491","0.688748324116129","0.527171944488692","0.00962531698265491","423","125","8","full","0.0725532311929999"
-"aclew","(6,12]","avg_voc_dur_fem","1.44296293534848","-0.862784001581824","0.300357530706321","-2.87252328767287","0.499011221807811","0.492791919529771","0.421330138989599","0.0776810828182145","0.444529639606946","0.081958399254962","0.52857448449088","0.666730559976776","0.286283773998741","0.727031281645349","0.505255170868105","0.0124632513383335","419","125","8","full","0.217272758182066"
-"aclew","(6,12]","avg_voc_dur_mal","1.4551533189913","-0.462956438266823","0.297489286840468","-1.5562121351788","0.46387550717143","0.462076904281319","0.463875507171429",NA,"0.456965849105407",NA,"0.528138649926768","0.675992491900174",NA,"0.72673148406187","0.465954243917288","0.00387733963596889","425","129",NA,"no_exp","0.38844137531767"
-"aclew","(6,12]","avg_voc_dur_och","1.58854561961483","0.419472085171305","0.243174672684229","1.72498262479829","0.654366629279535","0.652249494516557","0.651366770970105","0.00299985830942285","0.63923435172329","0.00294398266406753","0.339195570780156","0.799521326621929","0.0542584801120298","0.58240498862918","0.655484889887053","0.00323539537049573","424","129","8","full","0.000332484986780175"
-"aclew","(6,12]","avg_voc_dur_chi","1.55740545817867","0.0307948484959447","0.308183650541756","0.0999236930376107","0.454527709112742","0.45452019313769","0.447793150917955","0.00673455819478326","0.462303589565992","0.00695278706520416","0.563147956973035","0.679929106279465","0.0833833740334616","0.750431846987477","0.454536728928361","1.6535790671561e-05","422","129","8","full","0.677416519605636"
-"aclew","(6,12]","voc_dur_fem_ph","1.36841010946693","-0.558179506390883","0.297168936020881","-1.87832387148185","0.533247479155375","0.530525754437056","0.395735415348252","0.137512063807119","0.431532531265841","0.149951019476119","0.508973644973226","0.65691135723615","0.387235095873449","0.713423888703782","0.535629809917317","0.00510405548026042","421","129","8","full","5.82218160888712e-05"
-"aclew","(6,12]","simple_CTC_ph","1.49017116479248","1.00091278187782","0.277318847782271","3.60924902826532","0.542144677718745","0.532259685678796","0.48663452182975","0.0555101558889959","0.476972709090719","0.0544080377546364","0.448764901879478","0.690632108354889","0.233255305951733","0.669899172920431","0.550492811348392","0.0182331256695963","423","126","8","full","0.328782486083323"
-"aclew","(12,18]","wc_adu_ph","1.42151719731201","0.134772171258519","0.324971468731596","0.414720011527631","0.439152268892994","0.438997097693069","0.424505045396406","0.014647223496586","0.424324275675242","0.0146409861749427","0.560608901700696","0.651401777457847","0.120999942871651","0.748738206385046","0.439350440282681","0.000353342589611908","318","97","7","full","0.0865983789533906"
-"aclew","(12,18]","sc_fem_ph","1.40193391309404","-0.124826896885852","0.305259843752003","-0.408920136207837","0.518235107932791","0.518081950612284","0.462107948921316","0.0561271590114778","0.466958409180625","0.0567162909554069","0.486821679055524","0.683343551356582","0.238151823330007","0.6977260773796","0.518377486978237","0.00029553636595318","320","97","7","full","0.0974203644547518"
-"aclew","(12,18]","sc_mal_ph","1.5143442388185","-0.0199368474958357","0.319806070488542","-0.0623404285771681","0.440568639893391","0.440565140152698","0.440568639893391",NA,"0.433004067225583",NA,"0.549825912071993","0.658030445515694",NA,"0.741502469363382","0.440573083842685","7.94368998734275e-06","317","97",NA,"no_exp","1.92777018680379e-05"
-"aclew","(12,18]","pc_fem_ph","1.42900443317068","-0.0871847491423332","0.304876229905162","-0.28596768324462","0.521394991525493","0.521320074006468","0.457402821117633","0.0639921704078594","0.463829808253706","0.064891327205834","0.485329908476676","0.681050518136288","0.254737761640935","0.6966562340758","0.52146376069361","0.000143686687141381","320","97","7","full","0.102086885654632"
-"aclew","(12,18]","pc_mal_ph","1.51944896094212","0.0219706034136874","0.32004359317082","0.0686487837360358","0.440958246277017","0.440954001255339","0.440958246277017",NA,"0.434296142865195",NA,"0.55059561623429","0.659011489175413",NA,"0.742021304434239","0.440963628066298","9.62681095862647e-06","317","97",NA,"no_exp","3.36475382999703e-05"
-"aclew","(12,18]","sc_adu_ph","1.43385639968398","0.104355081880807","0.324011154707343","0.322072497704791","0.437632934134579","0.437539785371192","0.431241072999921","0.0063918611346554","0.429093386947296","0.00636002810234769","0.55956634028654","0.655052201696396","0.0797497843404463","0.748041670153836","0.437752632156982","0.000212846785789633","318","97","7","full","0.0975285469612867"
-"aclew","(12,18]","pc_adu_ph","1.42878713366556","0.147014453686321","0.324607585262372","0.452899009021902","0.439783296073929","0.439598251371938","0.426375371520566","0.01340792455336","0.425848892229845","0.0133913687317052","0.5595249601889","0.65257098635309","0.115721081621739","0.748014010690241","0.440019014742541","0.000420763370603294","318","97","7","full","0.0913228789497802"
-"aclew","(12,18]","wc_fem_ph","1.41838064605399","-0.098433847753053","0.305058271102383","-0.322672279618398","0.520514994935759","0.520419614526223","0.456524207099984","0.063990787835775","0.462705773954768","0.0648572552146024","0.485977472645532","0.680224796633266","0.254670876259148","0.697120845080343","0.520602856912061","0.000183242385838052","320","97","7","full","0.0790626928660477"
-"aclew","(12,18]","wc_mal_ph","1.54286356858754","0.0686792857623292","0.32290255525088","0.212693534459548","0.434449379620326","0.43440871022453","0.434449379620326",NA,"0.428492096369622",NA,"0.557795642708495","0.654593076933771",NA,"0.746857176914365","0.434502321581121","9.36113565916208e-05","316","97",NA,"no_exp","4.18661001392253e-05"
-"aclew","(12,18]","can_voc_dur_chi_ph","1.4796215556044","1.52398599589056","0.301740720797559","5.05064742956261","0.521588174890413","0.498863886208798","0.499949862841739","0.021638312048674","0.497999572819006","0.0215539016162809","0.476545554352025","0.705690847906508","0.146812470915386","0.690322789970043","0.542431378294656","0.0435674920858583","317","97","7","full","4.84369619294593e-05"
-"aclew","(12,18]","non_can_voc_chi_ph","1.43168888314072","1.17630601457591","0.313319539400787","3.75433340935441","0.474362304871583","0.46182384736041","0.371689765148766","0.10267253972282","0.366178401532671","0.101150125729058","0.517843613235903","0.60512676484574","0.318041075537513","0.719613516573934","0.488256085720007","0.0264322383595975","321","97","7","full","0.0709763716823166"
-"aclew","(12,18]","avg_cry_voc_dur_chi","1.4080030509883","-0.397401102578509","0.332600894266493","-1.19482872544563","0.426172665688254","0.424917932976935","0.426172665688253",NA,"0.436988502073175",NA,"0.588390498636442","0.661051058597727",NA,"0.767066163141383","0.427862121594224","0.00294418861728935","316","95",NA,"no_exp","0.00223177052284752"
-"aclew","(12,18]","cry_voc_dur_chi_ph","1.43635353796179","0.610704682890549","0.33015927154027","1.84972749679713","0.421852772407359","0.418844129639746","0.421852772407358",NA,"0.422834605617336",NA,"0.579492825359054","0.650257337995763",NA,"0.761244261297945","0.425976103077882","0.0071319734381354","316","95",NA,"no_exp","2.9011832177945e-06"
-"aclew","(12,18]","cry_voc_chi_ph","1.42718888172932","0.556409965559232","0.324147134226063","1.7165351990161","0.458462091128181","0.455756009062299","0.435716902825197","0.0227451883029856","0.44159640143926","0.0230521084665985","0.548845340288938","0.664527201429152","0.15182920821304","0.74084096828465","0.461658529942973","0.00590252088067326","317","97","7","full","0.000706503866044695"
-"aclew","(12,18]","non_can_voc_dur_chi_ph","1.48935287973808","1.30476051659949","0.327960190365104","3.97841126737654","0.424741977409716","0.410868759159619","0.342498255558351","0.0822437218513667","0.334993438118618","0.0804415984593733","0.56265297608211","0.578786176509614","0.283622281316848","0.750101977121851","0.443531455544617","0.0326626963849978","318","97","7","full","0.0162047556231461"
-"aclew","(12,18]","avg_non_can_voc_dur_chi","1.37336169845124","0.618302382083263","0.307834158302344","2.00855676801139","0.511461291670038","0.507712880196513","0.511461291670038",NA,"0.516484193283182",NA,"0.49333649441098","0.718668347211133",NA,"0.702379167124837","0.515041707489162","0.00732882729264935","316","97",NA,"no_exp","0.0624972353128866"
-"aclew","(12,18]","lp_n","1.29597169553086","-0.138272473258563","0.318113254870513","-0.434664293742951","0.469318261963602","0.469147922459271","0.469318261963604",NA,"0.479750229445758",NA,"0.542477687785734","0.692640043201199",NA,"0.736530846459084","0.469510873399255","0.000362950939983268","320","97",NA,"no_exp","0.0393356360200607"
-"aclew","(12,18]","lp_dur","1.46953660055276","0.259479980278609","0.317951185071453","0.816100057058433","0.465192005548125","0.464596537261513","0.465192005548121",NA,"0.474619415842078",NA,"0.545646216803194","0.688926277508761",NA,"0.738678696594936","0.465876585670579","0.00128004840906607","322","97",NA,"no_exp","0.0633906344125939"
-"aclew","(12,18]","cp_n","1.51527927053781","0.805535432433309","0.269807592346372","2.98559216005747","0.665491070715663","0.65810468342751","0.552527697195171","0.112963373520494","0.620593916694086","0.126879399479764","0.375717285572351","0.787777834604456","0.356201346824747","0.612957817123129","0.669203836538926","0.011099153111416","321","97","7","full","0.20423141131844"
-"aclew","(12,18]","cp_dur","1.52746140606514","0.907871644452487","0.288571096053655","3.14609348222347","0.599368505108239","0.59072041961339","0.504168462600494","0.0952000425077418","0.549316942393987","0.103725242940412","0.436508199393388","0.741159188294922","0.322064035465639","0.660687671591795","0.605149081481914","0.0144286618685243","324","97","7","full","0.0597174731709935"
-"aclew","(12,18]","avg_can_voc_dur_chi","1.2059237571317","0.601434927941595","0.314179753077826","1.91430199447834","0.497664157385849","0.494308208275771","0.497664157385849",NA,"0.507205231350837",NA,"0.511966480783519","0.71218342535532",NA,"0.715518330152009","0.501051609544021","0.00674340126824952","317","96",NA,"no_exp","0.0129944137966741"
-"aclew","(12,18]","can_voc_chi_ph","1.44475289184418","1.31238536557025","0.30290840946017","4.33261449528298","0.528403741660171","0.51151688146975","0.496757231442963","0.0316465102172091","0.500527034112377","0.0318866699796507","0.475175118839576","0.707479352428307","0.178568390202887","0.689329470456309","0.543475133955557","0.0319582524858064","316","96","7","full","6.106749624993e-05"
-"aclew","(12,18]","peak_voc_chi","1.43380199199642","1.13967216546409","0.343591591387647","3.31693846424283","0.400023481443464","0.390697609918802","0.279012110856998","0.121011370586468","0.293232007675487","0.12717873442712","0.630554417706452","0.541509009782374","0.356621275903612","0.794074566842719","0.414010920155016","0.0233133102362138","318","96","7","full","0.148704270288972"
-"aclew","(12,18]","voc_fem_ph","1.40201374055533","0.15076854607435","0.297395773407157","0.506962638866885","0.566848725349265","0.566614823581721","0.438327952110723","0.128520773238539","0.465917394221545","0.136610187605632","0.460414883917858","0.682581419481621","0.36960815413845","0.678538785861102","0.567027458835333","0.000412635253612755","321","97","7","full","0.169095369197986"
-"aclew","(12,18]","peak_voc_fem_ph","1.4743056403547","0.329394920822745","0.35341170287352","0.932043048219682","0.355013198406702","0.354305829285139","0.25414619125277","0.100867007153932","0.26878864305851","0.106678387933476","0.682147256806554","0.518448303168706","0.326616576329916","0.825922064608129","0.356298344281027","0.00199251499588869","322","97","7","full","0.936319065440258"
-"aclew","(12,18]","peak_simple_CTC","1.59831201553565","1.07592293585292","0.29754099903462","3.61604934897638","0.587356264893787","0.575870001125442","0.389644836528963","0.197711428364822","0.432184477374104","0.219296657694543","0.457694290490927","0.657407390720628","0.46829121035371","0.676531071341832","0.595425872842281","0.0195558717168399","320","97","7","full","0.214246711982841"
-"aclew","(12,18]","peak_voc_mal_ph","1.44249328747117","0.0161730404449676","0.369666763896885","0.0437503233303358","0.239932219017232","0.239930992516","0.236066094990586","0.00386612402664601","0.237978697858404","0.00389744728762087","0.766225835224747","0.487830603650903","0.062429538582476","0.875343267081404","0.239936104381498","5.11186549791495e-06","316","97","7","full","0.0946214811575403"
-"aclew","(12,18]","voc_och_ph","1.4448054339404","0.541874732485474","0.252736668393757","2.14402894494616","0.674308170461426","0.670509514920792","0.674308170461423",NA,"0.666895684694584",NA,"0.322111588105079","0.816636813212939",NA,"0.56754875394549","0.676142926626355","0.00563341170556242","314","97",NA,"no_exp","2.9031215340584e-05"
-"aclew","(12,18]","peak_voc_och_ph","1.55422117417567","0.52087147672116","0.262002328454427","1.98804140327234","0.628922349092968","0.62555021764473","0.628922349092969",NA,"0.607337877791112",NA,"0.358342350725198","0.779318855020916",NA,"0.598617031770061","0.630911978843233","0.00536176119850271","321","97",NA,"no_exp","8.77271363672728e-06"
-"aclew","(12,18]","voc_chi_ph","1.33978080895674","1.42291069113477","0.317935855733184","4.47546467463831","0.449837778174276","0.432311432193656","0.368374380981735","0.0814633971925382","0.358362462006165","0.0792493318984405","0.535209554450595","0.598633829653959","0.281512578579431","0.73158017636524","0.47127291304516","0.0389614808515044","320","97","7","full","0.126900497296306"
-"aclew","(12,18]","peak_voc_chi_ph","1.43380199199642","1.13967216546409","0.343591591387647","3.31693846424283","0.400023481443464","0.390697609918802","0.279012110856998","0.121011370586468","0.293232007675487","0.12717873442712","0.630554417706452","0.541509009782374","0.356621275903612","0.794074566842719","0.414010920155016","0.0233133102362138","318","96","7","full","0.148704270288972"
-"aclew","(12,18]","voc_mal_ph","1.54506542862621","0.314469054486649","0.317167276254888","0.991492748558111","0.463893894680495","0.462994900862374","0.463893894680495",NA,"0.462650626764925",NA,"0.534669303654883","0.68018425942161",NA,"0.731210847604768","0.464932830695962","0.00193792983358791","316","97",NA,"no_exp","0.00256920449150388"
-"aclew","(12,18]","voc_dur_mal_ph","1.5361008277448","0.180102490125617","0.316612538326769","0.568841938722394","0.458096441244126","0.457800162618672","0.458096441244129",NA,"0.450822987777434",NA,"0.53329945280093","0.6714335319132",NA,"0.730273546556994","0.458446922992207","0.000646760373535493","315","97",NA,"no_exp","6.0601723630234e-05"
-"aclew","(12,18]","voc_dur_och_ph","1.47626344072195","0.34970938915815","0.235343872903834","1.48595068502611","0.723819434914329","0.722129630788431","0.721272488573029","0.00254694634129583","0.724575308891718","0.00255860920971229","0.277445239388993","0.851219894558226","0.0505826967421893","0.526730708606393","0.7244641966268","0.00233456583836908","314","97","7","full","2.07889270240015e-09"
-"aclew","(12,18]","voc_dur_chi_ph","1.29525503494436","1.33790189045976","0.320698884538435","4.17183206728433","0.441178762987857","0.425970155049822","0.398863637881191","0.0423151251066699","0.388730405608775","0.0412400985797596","0.544624241208055","0.623482482198799","0.203076583041373","0.737986613163176","0.460442820585751","0.0344726655359295","319","97","7","full","0.0041736497493301"
-"aclew","(12,18]","avg_voc_dur_fem","1.4276229039361","-0.401341983913042","0.302072496875339","-1.3286280216324","0.541716571128149","0.540087138548282","0.493195813163802","0.0485207579643485","0.503629110342219","0.0495471889957003","0.467978172983103","0.709668310087339","0.222591978731715","0.684089301906632","0.543095044650312","0.00300790610202976","317","96","7","full","0.945804369011659"
-"aclew","(12,18]","avg_voc_dur_mal","1.4391625458889","-0.168698002584178","0.316649122644046","-0.532760050542808","0.440225111156293","0.439972304059117","0.440225111156295",NA,"0.427703054223547",NA,"0.543852278229304","0.653990102542498",NA,"0.737463408061243","0.440546571838872","0.000574267779754467","319","97",NA,"no_exp","0.650125930053359"
-"aclew","(12,18]","avg_voc_dur_och","1.66356761150842","0.268866860690081","0.222796416741377","1.20678269705829","0.747023468500106","0.745983329481664","0.733880886701367","0.0131425817987422","0.735750712192303","0.0131760672524573","0.253621080194074","0.857759122476877","0.114787051763068","0.503608062082086","0.747375707448759","0.00139237796709449","322","97","7","full","0.00559967041430653"
-"aclew","(12,18]","avg_voc_dur_chi","1.35894593793081","0.66113854255764","0.293144411811152","2.25533394436172","0.558941801097897","0.55433418357098","0.558941801097898",NA,"0.563376782548526",NA,"0.444557820735603","0.750584294099287",NA,"0.666751693462868","0.562577649201689","0.0082434656307096","318","95",NA,"no_exp","0.423969347767402"
-"aclew","(12,18]","voc_dur_fem_ph","1.53983347126136","-0.142240481581649","0.303614828832368","-0.468489902580428","0.540857968950069","0.540655553871196","0.438480026746928","0.102377942203139","0.454288518340392","0.106068967426526","0.47569544852691","0.674009286538688","0.325682310582761","0.689706784457649","0.541029801992686","0.000374248121490809","320","97","7","full","0.111126210443584"
-"aclew","(12,18]","simple_CTC_ph","1.39528614916253","1.54043897826065","0.293646602338183","5.24589409853473","0.540084526178782","0.515639881745927","0.439456038970794","0.100628487207986","0.42977121816244","0.0984108163139696","0.449779763861743","0.65556938470496","0.31370498292818","0.670656218834764","0.560900657139375","0.0452607753934478","319","97","7","full","0.0343495070557213"
-"aclew","(18,24]","wc_adu_ph","1.12621605575973","1.84022935041372","0.573131266479979","3.2108339887229","0.565171231344487","0.528976833834031","0.384129368427394","0.181041862917094","0.406907507858812","0.191777300338429","0.460613285891923","0.637893022268477","0.437923852214547","0.678684968075706","0.59301830569797","0.0640414718639395","94","53","5","full","0.236048506821997"
-"aclew","(18,24]","sc_fem_ph","1.55260646372282","1.56620435508251","0.549164617483729","2.85197608370848","0.592137315832653","0.563305458234726","0.45246513977154","0.139672176061113","0.465375062167159","0.14365736032235","0.419499990863125","0.682184038340945","0.379021582924179","0.647688189534999","0.611996626359106","0.0486911681243802","93","52","5","full","0.480707129890182"
-"aclew","(18,24]","sc_mal_ph","1.40784890183513","1.23222320795685","0.620015396375042","1.9874074340107","0.362164215530689","0.350060596848984","0.362164215530689",NA,"0.339600249952872",NA,"0.598096616247028","0.582752305832309",NA,"0.77336706436661","0.383480847008071","0.0334202501590871","95","52",NA,"no_exp","0.0120932355443674"
-"aclew","(18,24]","pc_fem_ph","1.53138877533162","1.62764867737509","0.55314760369923","2.94252142916289","0.573792734932363","0.54301516948097","0.462241283004396","0.111551451927967","0.463679142619748","0.111898446741409","0.427533036340655","0.680939896481142","0.334512252004928","0.653860104564161","0.596653989873182","0.0536388203922111","93","52","5","full","0.390509710247542"
-"aclew","(18,24]","pc_mal_ph","1.4117696838249","1.27953571287592","0.621337897642673","2.0593234659119","0.357048247526419","0.344208205554984","0.357048247526418",NA,"0.334612534813536",NA,"0.602550823728865","0.578457029357874",NA,"0.776241472564346","0.38016984956357","0.0359616440085857","95","52",NA,"no_exp","0.0131251593234101"
-"aclew","(18,24]","sc_adu_ph","1.1004218429866","1.55536367738172","0.55679785640252","2.79340816329817","0.60077127398812","0.573402849374959","0.419657913140915","0.181113360847205","0.453968877685838","0.195921074244363","0.431869413187267","0.673772125934161","0.442629725893283","0.657167720743546","0.618958330800495","0.0455554814255357","95","53","5","full","0.127681637834662"
-"aclew","(18,24]","pc_adu_ph","1.15161375865217","1.71502450807589","0.583940352710439","2.93698577280259","0.515646015918386","0.485420563275089","0.421149075741311","0.0944969401770746","0.425795290058137","0.095539452345893","0.489697489611789","0.652529915067606","0.309094568612735","0.69978388779093","0.544037233840194","0.0586166705651049","94","53","5","full","0.088329397983353"
-"aclew","(18,24]","wc_fem_ph","1.5542207487804","1.59216777314465","0.553893614695606","2.87450104298391","0.571787228928124","0.542287931748212","0.469993219143227","0.101794009784897","0.470042702027477","0.101804727091016","0.428257855132926","0.685596602987119","0.31906853039906","0.654414131214269","0.593879320445738","0.0515913886975265","93","52","5","full","0.419390171328648"
-"aclew","(18,24]","wc_mal_ph","1.39223116237191","1.24662253933076","0.622340347678894","2.00312022831271","0.357022719766256","0.344850998481316","0.357022719766255",NA,"0.335661084040395",NA,"0.604506209122779","0.579362653301362",NA,"0.777499973712398","0.378943286201573","0.0340922877202574","95","52",NA,"no_exp","0.0120433004359758"
-"aclew","(18,24]","can_voc_dur_chi_ph","1.21413179332851","1.88572411879149","0.483652032295827","3.89892731317644","0.606225933914674","0.55556658350736","0.606225933914673",NA,"0.514420544457343",NA,"0.334141873741262","0.717231165285881",NA,"0.578050061622055","0.639131715866815","0.0835651323594544","96","53",NA,"no_exp","0.591905614756921"
-"aclew","(18,24]","non_can_voc_chi_ph","1.46999543186656","0.934653219870542","0.591988129086734","1.57883777384597","0.449919801948241","0.441558087896909","0.449919762973812","3.89744290215607e-08","0.447230668657038","3.8741485452048e-08","0.546792461757239","0.668753070016907","0.000196828568688715","0.739454164743995","0.460142986839174","0.0185848989422649","97","52","5","full","0.324325440105643"
-"aclew","(18,24]","avg_cry_voc_dur_chi","1.29669324234364","0.145558515361222","0.570609737931139","0.255092939508837","0.613542213149564","0.613323330076629","0.276357812587402","0.337184400562164","0.359533112390012","0.438666654104939","0.50276983166434","0.599610800761637","0.662319148224584","0.709062642976162","0.613680083154484","0.000356753077855047","96","53","5","full","0.0956157756204544"
-"aclew","(18,24]","cry_voc_dur_chi_ph","1.39920659333122","1.59034857561239","0.605298645255961","2.62737838268229","0.384176460318636","0.363324236434483","0.37389843498733","0.0102780253313063","0.353379583322359","0.00971398639065378","0.582028287601887","0.594457385623528","0.0985595575814633","0.762907784468009","0.417601960444064","0.0542777240095808","96","52","5","full","0.744933598193148"
-"aclew","(18,24]","cry_voc_chi_ph","1.28648946131856","1.80950833508202","0.629689247760736","2.87365290342321","0.329144683566192","0.306885883523506","0.329144683566192",NA,"0.311996528289644",NA,"0.635904330716333","0.558566494062832",NA,"0.797436098202441","0.374512070893505","0.0676261873699992","95","52",NA,"no_exp","0.81400831891905"
-"aclew","(18,24]","non_can_voc_dur_chi_ph","1.46072437579679","0.630048607274795","0.567315243102889","1.11057937352219","0.540587798647015","0.536100442901629","0.540587798647014",NA,"0.548717738618129",NA,"0.466321335499826","0.740754843803352",NA,"0.682877247753816","0.544401325305221","0.00830088240359154","94","52",NA,"no_exp","0.930791845925065"
-"aclew","(18,24]","avg_non_can_voc_dur_chi","1.28280425691138","-0.0557251983960322","0.583994998068141","-0.0954206775406835","0.574531614212351","0.574497065224643","0.459877501439829","0.114654112772521","0.508462616072647","0.126767084585094","0.470418247938793","0.713065646397754","0.356043655448449","0.685870430867808","0.574557199404998","6.01341803549851e-05","91","51","5","full","0.971196801819175"
-"aclew","(18,24]","lp_n","1.49171773534833","-0.801530245025135","0.614372736878969","-1.30463185768453","0.385692398097658","0.38043079972808","0.385692398097658",NA,"0.385166481064121",NA,"0.613469952953943","0.62061782206453",NA,"0.783243227199536","0.394072754808164","0.0136419550800847","98","53",NA,"no_exp","0.0854166389735645"
-"aclew","(18,24]","lp_dur","1.58868118126291","-0.277655708541258","0.637259907227287","-0.435702458906187","0.331417594863838","0.330879099822131","0.321064798542524","0.0103527963213129","0.326966406409837","0.0105430948046593","0.680871859476874","0.571809764178469","0.102679573453824","0.825149598240752","0.332503923156957","0.0016248233348257","98","53","5","full","0.545805805456025"
-"aclew","(18,24]","cp_n","1.39673845325853","1.40610600558328","0.560455943989297","2.50886090274052","0.537365261355351","0.515537547653497","0.373828754215758","0.163536507139595","0.367057387456684","0.160574280034665","0.454254780025834","0.605852611991303","0.400717207060871","0.673984257995566","0.556157430015823","0.040619882362326","95","53","5","full","0.665709618976364"
-"aclew","(18,24]","cp_dur","1.47107387252174","1.59323696718432","0.604785301807024","2.63438440455468","0.368052414155344","0.347890456194641","0.314697326672477","0.053355087482868","0.292761813612363","0.0496360497945623","0.587898611329438","0.541074683950712","0.222791493990597","0.7667454671072","0.402670583114807","0.0547801269201657","97","53","5","full","0.747228484877589"
-"aclew","(18,24]","avg_can_voc_dur_chi","1.37196413228695","0.464477739813145","0.566688383330718","0.819635188360791","0.588454872501294","0.585953201224308","0.524066154162787","0.0643887183385067","0.573536266604277","0.070466800486853","0.450393627006621","0.757321772171035","0.265455835284992","0.671113721366671","0.590204455473173","0.00425125424886536","95","53","5","full","0.34390986816193"
-"aclew","(18,24]","can_voc_chi_ph","1.52826717656485","2.04515215659523","0.535643509366419","3.81812179338143","0.549425971332904","0.500248009505366","0.468093475134591","0.0813324961983142","0.417247705300122","0.0724979073791189","0.401631275623145","0.645947138162343","0.269254354429262","0.633743856477635","0.589755903914203","0.0895078944088364","93","52","5","full","0.885058725589044"
-"aclew","(18,24]","peak_voc_chi","1.27288574642999","1.64853305191667","0.665897059434901","2.4756575037524","0.19490889187073","0.183927422086995","0.126122042057288","0.0687868498134414","0.122847641547847","0.0670009946813965","0.784189204769605","0.350496278935807","0.258845503498509","0.885544580904657","0.240268975714102","0.0563415536271067","94","52","5","full","0.116521589564632"
-"aclew","(18,24]","voc_fem_ph","1.54125637918678","2.21324336093544","0.557832940603443","3.96757380182897","0.513785304294401","0.462115901510854","0.396406703208048","0.117378601086353","0.371746140045823","0.110076448063818","0.455967154186208","0.609709881866632","0.331777708810912","0.675253399981228","0.56268203750516","0.100566135994306","94","52","5","full","0.730097197390139"
+"aclew","(0,6]","voc_chi_ph","1.40859661527064","-0.506027191620362","0.507608016105043","-0.996885737745415","0.625300997736427","0.621490735330922","0.410539256983138","0.21476174075329","0.422207960194726","0.220865885415288","0.385349022637317","0.649775315162654","0.469963706487307","0.620764869042471","0.627584220579302","0.00609348524838002","130","64","6","full","0.638645594113388"
+"aclew","(0,6]","peak_voc_chi_ph","1.47264563041752","-0.634395112189496","0.647540080567786","-0.979700147106316","0.298093165132893","0.295160635600611","0.0670227149917823","0.23107045014111","0.0668120849020026","0.230344272610632","0.6997009752617","0.258480337553947","0.479941947125516","0.836481305984599","0.304998263145592","0.00983762754498138","128","64","6","full","0.134503054875647"
+"aclew","(0,6]","voc_mal_ph","1.47835423817313","-1.31569611991744","0.610999643235611","-2.15335006244854","0.16444115636443","0.157416343096694","0.164441156364431",NA,"0.154051494099541",NA,"0.78276686394056","0.392493941481319",NA,"0.884741128206754","0.20013565633339","0.0427193132366965","128","64",NA,"no_exp","0.473795386394412"
+"aclew","(0,6]","voc_dur_mal_ph","1.70089092893573","-1.15555949392757","0.659045377182745","-1.75338380927167","0.243582542731159","0.236082145974359","0.243582542731158",NA,"0.251195074288424",NA,"0.780057294916324","0.50119364948932",NA,"0.883208522896107","0.266874158705248","0.0307920127308892","124","63",NA,"no_exp","0.552971233001018"
+"aclew","(0,6]","voc_dur_och_ph","1.03509191209067","0.243852915531168","0.360993864220079","0.675504322097019","0.852672249863656","0.85166393408483","0.779805014877888","0.0728672349857695","0.973066700283928","0.0909261655845076","0.183840479286834","0.986441432769289","0.301539658394228","0.428766229181863","0.852846470257418","0.00118253617258733","125","59","6","full","0.00027981691858376"
+"aclew","(0,6]","voc_dur_chi_ph","1.45847259869852","-0.16324352204752","0.485828531403297","-0.336010570593697","0.644758964992415","0.644320281539566","0.463431988650098","0.181326976342317","0.445705436442818","0.174391110473232","0.341652851827626","0.66761174079162","0.41760161694279","0.584510779907117","0.64500066518162","0.000680383642053754","129","64","6","full","0.354794086013502"
+"aclew","(0,6]","avg_voc_dur_fem","1.50522828468344","-1.32827973937869","0.575228459990483","-2.30913425146014","0.559354757575757","0.539133429860849","0.513328256937684","0.0460265006380734","0.567813945237035","0.05091184550928","0.487416210133185","0.753534302627979","0.225636534074781","0.698151996440019","0.575284597685981","0.0361511678251322","122","63","6","full","0.119384552708019"
+"aclew","(0,6]","avg_voc_dur_mal","1.43013146386038","-0.319091139484455","0.637747220828919","-0.500341089796852","0.639269953233256","0.638184891756098","0.281267768143842","0.358002185089415","0.42363261209876","0.539206471496344","0.543315051642008","0.650870656965545","0.734306796575072","0.737099078578998","0.639882236472004","0.00169734471590597","124","64","6","full","0.53951344400282"
+"aclew","(0,6]","avg_voc_dur_och","1.35718240243259","0.843761924158939","0.500055223181914","1.68733748802777","0.612530129449605","0.60233835652891","0.612530129449604",NA,"0.635177339308639",NA,"0.401795878448639","0.796980137336332",NA,"0.633873708595521","0.618977167308477","0.0166388107795671","128","61",NA,"no_exp","0.000241945374236975"
+"aclew","(0,6]","avg_voc_dur_chi","1.36471047599816","0.499505846213767","0.66175714363399","0.754817459877756","0.342921282137445","0.34101920568416","0.0832408537902982","0.259680428347147","0.0919810321316646","0.286946526088458","0.726071104616576","0.30328374854526","0.535673899017358","0.852098060446435","0.346565891038387","0.00554668535422707","127","63","6","full","0.143266989573596"
+"aclew","(0,6]","voc_dur_fem_ph","1.53364550225071","-1.86019176439442","0.56295004802552","-3.30436380797696","0.444721917839969","0.410008267645498","0.444721917839971",NA,"0.441134994515931",NA,"0.550799463444987","0.664179941368249",NA,"0.742158651128576","0.488065248428178","0.0780569807826794","130","64",NA,"no_exp","0.0172046628086717"
+"aclew","(0,6]","simple_CTC_ph","1.35010833513439","-0.197417883085848","0.491748335859546","-0.401461212351178","0.670628451671276","0.670029468868189","0.485314062048295","0.185314389622981","0.521364310132386","0.199079969979884","0.353838026755039","0.722055614293239","0.446183784980902","0.594842858875383","0.670922635272916","0.000893166404727684","128","62","6","full","0.088308016737948"
+"aclew","(6,12]","wc_adu_ph","1.42295855551096","-0.545076250933803","0.304114080844891","-1.79234137866774","0.48318714316064","0.480739783615632","0.329899358937846","0.153287784222792","0.342401760586625","0.159097026933585","0.536398835830838","0.585151057921478","0.398869686656663","0.732392542173142","0.485804818105165","0.00506503448953346","418","129","8","full","0.00037089838786062"
+"aclew","(6,12]","sc_fem_ph","1.39602920213464","-0.488889141923057","0.294740729745047","-1.65870913852303","0.530465856175041","0.528323285820664","0.41217244312222","0.118293413052821","0.434063219193672","0.124576061636145","0.494471441239879","0.658834743462783","0.352953342010166","0.703186633291532","0.532362321188229","0.0040390353675648","420","129","8","full","0.00674288770746185"
+"aclew","(6,12]","sc_mal_ph","1.33895635259617","-0.526064905535266","0.311550123528065","-1.68854019243512","0.477188088954698","0.474945632392722","0.374968889365019","0.10221919958968","0.396773899725513","0.108163401280303","0.553214217637289","0.629899912466665","0.32888204767105","0.743783716975095","0.479644946172512","0.0046993137797904","412","129","8","full","1.69305880582391e-07"
+"aclew","(6,12]","pc_fem_ph","1.39903931006554","-0.518014499509163","0.292651361390375","-1.77007377327102","0.535602453657621","0.533178262763349","0.412640136863706","0.122962316793918","0.436333481665439","0.13002267837571","0.491062744920004","0.660555434210816","0.360586575423587","0.700758692361361","0.537704363937301","0.00452610117395246","421","129","8","full","0.00375417173272592"
+"aclew","(6,12]","pc_mal_ph","1.33290856370368","-0.396509090852013","0.305900101462927","-1.2962045091053","0.490412808077443","0.489098973800453","0.390363212214241","0.100049595863202","0.41186477342017","0.105560418711694","0.537655718499972","0.641766915180402","0.324900628980145","0.733250106375698","0.491778011246763","0.00267903744631007","415","129","8","full","2.18183487534938e-07"
+"aclew","(6,12]","sc_adu_ph","1.42534494151096","-0.581311716566268","0.304593804898956","-1.90848174590783","0.477309409491265","0.474544448585999","0.325573161631304","0.15173624785996","0.335801291672621","0.156503158213741","0.539111315436764","0.579483642282179","0.395604800544357","0.73424200059433","0.480337254783163","0.00579280619716394","418","129","8","full","0.000216477361521209"
+"aclew","(6,12]","pc_adu_ph","1.42441272509974","-0.608558459507957","0.302497593579013","-2.01177950643432","0.483671156982645","0.480607873274551","0.329213751932462","0.154457405050183","0.34111936987251","0.160043170656098","0.535001252357208","0.584054252507856","0.400053959680564","0.731437798009652","0.486941274933653","0.00633340165910263","419","129","8","full","0.00018940751457203"
+"aclew","(6,12]","wc_fem_ph","1.39636538915955","-0.51741554141504","0.292906378298967","-1.76648779183265","0.535449787135442","0.533034995773206","0.413856646302635","0.121593140832805","0.438190139940585","0.12874244227645","0.491864331775631","0.661959318946856","0.358806970774608","0.701330401291453","0.53754483296103","0.00450983718782339","421","129","8","full","0.00266928347048887"
+"aclew","(6,12]","wc_mal_ph","1.34005946441373","-0.399208512876817","0.306293165660615","-1.30335429462097","0.48827059205597","0.486942806674459","0.392303054666093","0.0959675373898776","0.413327834970743","0.10111074585079","0.539154629974506","0.642905774566338","0.317979159459846","0.7342714960929","0.489662170492625","0.00271936381816517","415","129","8","full","1.95021021439623e-07"
+"aclew","(6,12]","can_voc_dur_chi_ph","1.349755980015","1.08866148238321","0.301573137702544","3.60994182265997","0.486502947903271","0.476611376314024","0.385882856849634","0.10062009105364","0.394439969755026","0.102851383437878","0.52488406287832","0.628044560325958","0.320704511096864","0.724488828677379","0.496943363266781","0.0203319869527568","419","129","8","full","6.27161290327046e-08"
+"aclew","(6,12]","non_can_voc_chi_ph","1.4661538237972","0.734100417006891","0.284583348100575","2.57956209281596","0.546348653178249","0.541266696037386","0.493048346965347","0.0533003062129055","0.51301675596074","0.0554589633113214","0.472024181231201","0.716251880249358","0.235497268161058","0.68704015983871","0.55056837018136","0.00930167414397476","424","126","8","full","0.136199538329367"
+"aclew","(6,12]","avg_cry_voc_dur_chi","1.33400253076701","-0.708548197320683","0.322758054320385","-2.19529207044154","0.382727734300817","0.379350970830411","0.374759113586417","0.00796862071439896","0.380758318171045","0.0080961836853578","0.627153660099196","0.61705617100151","0.0899787957540987","0.791930337908074","0.388173857618522","0.00882288678811086","417","128","8","full","0.00128355581435225"
+"aclew","(6,12]","cry_voc_dur_chi_ph","1.46992811405957","0.0803248071178733","0.299358777160788","0.268322872907549","0.47112922190792","0.471075376933683","0.469786607496503","0.00134261441141971","0.477848651349216","0.00136565511988058","0.537946769909128","0.691265977283141","0.0369547712735525","0.733448546190616","0.471189666117485","0.000114289183801758","421","127","8","full","1.30291788939135e-05"
+"aclew","(6,12]","cry_voc_chi_ph","1.37566244369682","0.523026313253632","0.287146332376787","1.82146262821608","0.50917341507494","0.506671121065804","0.496124511274971","0.0130489037999721","0.500306686335403","0.0131589019935667","0.494964100116954","0.707323607930206","0.114712257381531","0.703536850574975","0.511585544983179","0.00491442391737521","425","127","8","full","0.00132563301215826"
+"aclew","(6,12]","non_can_voc_dur_chi_ph","1.40737178594179","0.706968777891384","0.300936630420141","2.34922806474033","0.462365156539452","0.458241809286026","0.452136987364853","0.0102281691745969","0.458259993976915","0.0103666828313768","0.544915693719161","0.676949033515016","0.101816908376638","0.738184051384992","0.467159754756413","0.00891794547038737","422","124","8","full","0.00273167606091341"
+"aclew","(6,12]","avg_non_can_voc_dur_chi","1.4105058535071","0.828302927841782","0.319957547996454","2.58879008489889","0.436005584577908","0.431052106226609","0.352083562595313","0.0839220219825952","0.378415980022385","0.0901985709298962","0.606175698365148","0.615155248715627","0.300330769202718","0.778572860023484","0.442413149585938","0.0113610433593292","422","129","8","full","0.651435424556817"
+"aclew","(6,12]","lp_n","1.48185857313813","0.094016442167415","0.307158336526818","0.306084618215161","0.41312774886041","0.413061215385225","0.413127748860407",NA,"0.410405155434731",NA,"0.583004647142832","0.640628718865094",NA,"0.763547409885485","0.413222263572787","0.000161048187562404","425","128",NA,"no_exp","0.0505801880538691"
+"aclew","(6,12]","lp_dur","1.42798132423791","0.589867841285699","0.323752255346874","1.82197291769814","0.333481955258725","0.331384208072405","0.333481955258723",NA,"0.33084143079021",NA,"0.661240526188647","0.575188169897652",NA,"0.813166973129533","0.337674644940848","0.00629043686844293","424","128",NA,"no_exp","0.0233588602982219"
+"aclew","(6,12]","cp_n","1.33254670582195","0.901145583535551","0.298501066912841","3.01890238736961","0.50457759843539","0.497585409255027","0.405306092406457","0.0992715060289356","0.425309278784865","0.104170880783882","0.519873123673661","0.652157403381166","0.322755140600242","0.721022276822056","0.511442919382397","0.0138575101273703","420","129","8","full","0.0604325920912032"
+"aclew","(6,12]","cp_dur","1.39904700131512","0.698389348902128","0.303077703813906","2.30432440299517","0.456065963548278","0.45214714455764","0.366173613333141","0.0898923502151355","0.373222295975485","0.0916227388219859","0.554404529850789","0.610919222136188","0.302692482268698","0.744583460634729","0.46073980286555","0.00859265830790977","426","129","8","full","0.114219985397965"
+"aclew","(6,12]","avg_can_voc_dur_chi","1.37060950919718","-0.234406335426386","0.313003909136716","-0.748892677004875","0.428144097472624","0.427737148161648","0.428144097472626",NA,"0.445177923764592",NA,"0.594607341038821","0.66721654937853",NA,"0.771107866020585","0.428687644299231","0.000950496137583308","419","128",NA,"no_exp","0.601933897473384"
+"aclew","(6,12]","can_voc_chi_ph","1.37928155042673","1.24130423927867","0.296597721422136","4.18514421933796","0.495750263694377","0.482592915571328","0.366330261173896","0.129420002520477","0.37146141810623","0.131232777531167","0.511312719641427","0.609476347454296","0.362260648609764","0.715061339775426","0.509133190154339","0.0265402745830112","421","129","8","full","1.18140624857479e-05"
+"aclew","(6,12]","peak_voc_chi","1.28674727669548","0.794785961179712","0.300559804285836","2.64435213839792","0.448073768229772","0.442934592741543","0.41952024085336","0.028553527376411","0.414498633693198","0.0282117450651938","0.545319740718209","0.643815683012769","0.167963523019714","0.738457676998627","0.454404078019676","0.0114694852781331","426","128","8","full","0.0118511645796541"
+"aclew","(6,12]","voc_fem_ph","1.36558374650489","-0.0437145418998151","0.286242241546668","-0.15271869610722","0.529957968877349","0.529940109408565","0.404307837475709","0.125650131401638","0.41485062327606","0.128926601205993","0.482298910638586","0.644088987078695","0.359063505811985","0.694477437098273","0.529973809192006","3.36997834409128e-05","423","127","8","full","0.877674584851273"
+"aclew","(6,12]","peak_voc_fem_ph","1.49087919984365","-0.147698138557689","0.33300971562426","-0.443525013319247","0.348754565418907","0.34862671923862","0.216410344143687","0.132344221275221","0.23378251991493","0.142968052975127","0.703523666495231","0.483510620271085","0.378111164837971","0.838763176644773","0.3489932984693","0.000366579230680941","423","127","8","full","0.291922755643091"
+"aclew","(6,12]","peak_simple_CTC","1.44372617759412","0.894195099032115","0.292917736299485","3.05271749785022","0.483104247350799","0.476116731918124","0.441836306203736","0.0412679411470645","0.437605772161712","0.0408728051489232","0.511946532661942","0.661517779172799","0.202170238039438","0.71550439038621","0.490580515813614","0.0144637838954891","424","127","8","full","0.0118520261969205"
+"aclew","(6,12]","peak_voc_mal_ph","1.44709690161229","-0.524634273893308","0.333247484648297","-1.5743082785666","0.349928533902231","0.348327633741254","0.193952240438053","0.155976293464179","0.211297843757274","0.169925618862645","0.708208880517983","0.459671451971159","0.41222035231493","0.841551472292684","0.35290256835183","0.0045749346105758","423","128","8","full","0.000183554906304372"
+"aclew","(6,12]","voc_och_ph","1.43780524635336","0.552611351864932","0.210552745782879","2.62457442580578","0.754653800274839","0.750496258615074","0.687018990272246","0.0676348100025859","0.684395586919763","0.067376544379921","0.244409337641301","0.827282047985911","0.259569921947673","0.494377727695434","0.756005462515261","0.0055092039001877","420","127","8","full","0.0062592740136913"
+"aclew","(6,12]","peak_voc_och_ph","1.5697054832443","0.592209216978111","0.236653029347929","2.50243666269507","0.681064698639015","0.676760179373124","0.673474435017734","0.00759026362127706","0.67539299332048","0.00761188636229506","0.31984386735644","0.82182296957464","0.087246125199318","0.565547405047923","0.683080458892078","0.00632027951895321","425","128","8","full","4.77071458448085e-06"
+"aclew","(6,12]","voc_chi_ph","1.45924662592493","0.904239265457508","0.278505864712944","3.24675125383628","0.553259748004906","0.545262632565951","0.481997316024441","0.0712624319804704","0.487118370251281","0.0720195705917774","0.451486712151032","0.697938657943003","0.268364622466855","0.671927609308497","0.559717173073901","0.0144545405079503","424","126","8","full","0.0715210654774402"
+"aclew","(6,12]","peak_voc_chi_ph","1.28674727669548","0.794785961179712","0.300559804285836","2.64435213839792","0.448073768229772","0.442934592741543","0.41952024085336","0.028553527376411","0.414498633693198","0.0282117450651938","0.545319740718209","0.643815683012769","0.167963523019714","0.738457676998627","0.454404078019676","0.0114694852781331","426","128","8","full","0.0118511645796541"
+"aclew","(6,12]","voc_mal_ph","1.39902605075719","-0.0651389987433154","0.299641207183789","-0.217389989032321","0.499279085618934","0.499242734963578","0.35802921606631","0.141249869552624","0.376735912393843","0.148630044961368","0.52688312034036","0.61378816573297","0.385525673543758","0.725867150613912","0.499315541248485","7.28062849071602e-05","420","128","8","full","8.78470634172644e-08"
+"aclew","(6,12]","voc_dur_mal_ph","1.34201037007669","-0.514572990837608","0.31596067538586","-1.62859821149957","0.458209940589375","0.456131898001195","0.382151138582364","0.0760588020070137","0.402697583988191","0.0801481212979804","0.570919528757217","0.634584575914189","0.28310443532022","0.755592170921071","0.460667030053344","0.00453513205214887","410","128","8","full","2.02713868697071e-08"
+"aclew","(6,12]","voc_dur_och_ph","1.34081287279346","0.426751752447874","0.20730984323027","2.05852141798139","0.76089502087094","0.758357189428018","0.721454391661229","0.0394406292097076","0.705690752980858","0.0385788591028589","0.233880581660234","0.840054017894598","0.196415017508486","0.483612015628472","0.761692513452109","0.003335324024091","419","127","8","full","7.74332651465433e-05"
+"aclew","(6,12]","voc_dur_chi_ph","1.5004052450901","0.729756707268731","0.284348917037552","2.56641282432722","0.522576592870843","0.517546627516844","0.49047545555138","0.0321011373194586","0.487342943067191","0.0318961174509377","0.474374253973481","0.698099522322707","0.178594841613462","0.688748324116641","0.52717194449931","0.00962531698246679","423","125","8","full","0.0725532311900915"
+"aclew","(6,12]","avg_voc_dur_fem","1.44296293534848","-0.862784001525409","0.300357530706993","-2.87252328747861","0.49901122173385","0.492791919456729","0.421330139048608","0.0776810826852422","0.444529639610863","0.0819583991039116","0.528574484499542","0.666730559979714","0.286283773734928","0.727031281651307","0.505255170795068","0.0124632513383393","419","125","8","full","0.217272758249276"
+"aclew","(6,12]","avg_voc_dur_mal","1.4551533189913","-0.462956438266594","0.297489286843269","-1.55621213516337","0.463875507130482","0.462076904240454","0.463875507130479",NA,"0.456965849045263",NA,"0.528138649944217","0.675992491855688",NA,"0.726731484073875","0.465954243876586","0.00387733963613243","425","129",NA,"no_exp","0.388441375342932"
+"aclew","(6,12]","avg_voc_dur_och","1.58854561961483","0.419472085238075","0.243174672686112","1.7249826250595","0.654366629294122","0.652249494530494","0.651366770934558","0.00299985835956889","0.639234351709159","0.00294398271337513","0.339195570776853","0.799521326613092","0.0542584805664067","0.582404988626345","0.655484889901911","0.00323539537141769","424","129","8","full","0.000332484986963647"
+"aclew","(6,12]","avg_voc_dur_chi","1.55740545817867","0.0307948485967948","0.308183650547867","0.0999236933628696","0.454527709121302","0.4545201931462","0.447793150868523","0.0067345582527757","0.46230358952393","0.00695278712521073","0.563147956975127","0.679929106248534","0.083383374393285","0.75043184698887","0.45453672893698","1.65357907795445e-05","422","129","8","full","0.67741651967383"
+"aclew","(6,12]","voc_dur_fem_ph","1.36841010946693","-0.558179506493849","0.297168936019408","-1.87832387183765","0.533247479366592","0.530525754647365","0.395735415140033","0.137512064226557","0.431532531224906","0.149951019998172","0.508973644962421","0.656911357204993","0.387235096547527","0.713423888696209","0.535629810127308","0.00510405547994373","421","129","8","full","5.82218160708281e-05"
+"aclew","(6,12]","simple_CTC_ph","1.49017116479248","1.00091272536184","0.277318844928503","3.60924886161231","0.54214480520578","0.532259814138509","0.486634446228377","0.0555103589774056","0.476972743176535","0.0544082491516471","0.448764878711727","0.690632133032148","0.23325575909642","0.669899155628462","0.5504929337264","0.0182331195878907","423","126","8","full","0.32878242394373"
+"aclew","(12,18]","wc_adu_ph","1.421517197312","0.1347721712468","0.324971468731144","0.414720011492146","0.439152268902371","0.438997097702472","0.424505045400183","0.0146472235021866","0.424324275683414","0.0146409861806927","0.560608901697132","0.65140177746412","0.120999942895411","0.748738206382666","0.439350440292019","0.000353342589546824","318","97","7","full","0.0865983789506977"
+"aclew","(12,18]","sc_fem_ph","1.40193391309404","-0.124826896870255","0.3052598437523","-0.408920136156345","0.518235107916316","0.518081950595847","0.462107948933937","0.0561271589823807","0.466958409179716","0.0567162909243448","0.486821679057928","0.683343551355917","0.238151823264792","0.697726077381323","0.518377486961735","0.000295536365887997","320","97","7","full","0.0974203644458484"
+"aclew","(12,18]","sc_mal_ph","1.5143442388185","-0.0199368474961549","0.319806070487245","-0.0623404285784189","0.440568639906323","0.44056514016563","0.44056863990632",NA,"0.433004067243552",NA,"0.549825912065965","0.658030445529348",NA,"0.741502469359317","0.440573083855617","7.94368998750056e-06","317","97",NA,"no_exp","1.92777018696309e-05"
+"aclew","(12,18]","pc_fem_ph","1.42900443317068","-0.0871847491617895","0.3048762299068","-0.2859676833069","0.521394991538352","0.521320074019295","0.457402821073799","0.0639921704645523","0.463829808225727","0.0648913272656278","0.48532990848087","0.681050518115747","0.254737761758299","0.69665623407881","0.521463760706495","0.000143686687200401","320","97","7","full","0.102086885659764"
+"aclew","(12,18]","pc_mal_ph","1.51944896094212","0.0219706034134337","0.320043593170154","0.0686487837353858","0.440958246283644","0.440954001261966","0.440958246283643",NA,"0.434296142874428",NA,"0.550595616231195","0.659011489182418",NA,"0.742021304432154","0.440963628072924","9.6268109583442e-06","317","97",NA,"no_exp","3.3647538301268e-05"
+"aclew","(12,18]","sc_adu_ph","1.43385639968398","0.10435508172082","0.324011154675173","0.322072497242998","0.43763293443815","0.437539785675011","0.431241073306208","0.00639186113194146","0.429093387373468","0.00636002810144682","0.559566340142808","0.655052202021692","0.0797497843347982","0.748041670057764","0.437752632460088","0.00021284678507693","318","97","7","full","0.0975285470951911"
+"aclew","(12,18]","pc_adu_ph","1.42878713366556","0.147014453682215","0.324607585259483","0.452899009013284","0.439783296095459","0.439598251393472","0.426375371547735","0.0134079245477258","0.425848892264901","0.013391368726327","0.559524960177804","0.65257098637995","0.115721081598501","0.748014010682824","0.440019014764044","0.000420763370571981","318","97","7","full","0.0913228789572659"
+"aclew","(12,18]","wc_fem_ph","1.41838064605399","-0.0984306831356474","0.305058122977262","-0.322662062478448","0.520512349570267","0.520416975199276","0.456529808750309","0.0639825408199541","0.462708647507719","0.0648485035576295","0.48597720888","0.680226908838307","0.254653693390906","0.697120655898245","0.520600206915238","0.000183231715962714","320","97","7","full","0.079062047071915"
+"aclew","(12,18]","wc_mal_ph","1.54286356858754","0.0686792857617962","0.322902555250108","0.212693534458406","0.434449379627989","0.434408710232192","0.434449379627985",NA,"0.428492096380204",NA,"0.557795642704879","0.654593076941854",NA,"0.746857176911944","0.434502321588782","9.36113565895071e-05","316","97",NA,"no_exp","4.18661001407446e-05"
+"aclew","(12,18]","can_voc_dur_chi_ph","1.4796215556044","1.52398599598176","0.30174072079651","5.0506474298824","0.521588174763176","0.498863886079847","0.499949862946528","0.0216383118166489","0.497999572816707","0.0215539013805438","0.476545554376682","0.705690847904879","0.146812470112534","0.690322789987902","0.542431378179619","0.0435674920997719","317","97","7","full","4.84369618969086e-05"
+"aclew","(12,18]","non_can_voc_chi_ph","1.43168888314072","1.1763060145599","0.313319539402042","3.75433340928828","0.474362304906787","0.461823847395896","0.371689765099104","0.102672539807685","0.366178401510184","0.101150125819968","0.51784361323861","0.605126764827159","0.318041075680435","0.719613516575815","0.488256085752935","0.0264322383570392","321","97","7","full","0.0709763716733865"
+"aclew","(12,18]","avg_cry_voc_dur_chi","1.4080030509883","-0.397401102579045","0.33260089426692","-1.1948287254457","0.426172665684182","0.424917932972866","0.426172665684179",NA,"0.436988502067376",NA,"0.588390498638434","0.66105105859334",NA,"0.767066163142681","0.427862121590174","0.0029441886173082","316","95",NA,"no_exp","0.00223177052276463"
+"aclew","(12,18]","cry_voc_dur_chi_ph","1.43635353796179","0.610704685752298","0.330159273561369","1.84972749414165","0.421852752449125","0.418844109742094","0.421852752449127",NA,"0.422834578002471",NA,"0.579492834934022","0.650257316761965",NA,"0.76124426758697","0.425976083374039","0.00713197363194516","316","95",NA,"no_exp","2.90118188723335e-06"
+"aclew","(12,18]","cry_voc_chi_ph","1.42718888172932","0.556409965587226","0.324147134224497","1.71653519911075","0.458462091121768","0.455756009055613","0.435716902846719","0.0227451882750506","0.441596401454492","0.0230521084379431","0.54884534028726","0.664527201440612","0.151829208118672","0.740840968283517","0.461658529936965","0.00590252088135117","317","97","7","full","0.000706503866252396"
+"aclew","(12,18]","non_can_voc_dur_chi_ph","1.48935287973808","1.30476051648734","0.327960190365371","3.97841126703136","0.424741977623387","0.410868759373216","0.342498255414761","0.0822437222086246","0.334993438092963","0.0804415988363668","0.562652976065918","0.578786176487451","0.283622281981453","0.750101977111058","0.443531455741956","0.03266269636874","318","97","7","full","0.0162047555885223"
+"aclew","(12,18]","avg_non_can_voc_dur_chi","1.37336169845124","0.618302382094661","0.307834158298978","2.00855676807038","0.511461291701893","0.507712880228133","0.511461291701896",NA,"0.516484193334154",NA,"0.49333649439677","0.718668347246596",NA,"0.702379167114721","0.515041707520786","0.0073288272926528","316","97",NA,"no_exp","0.0624972353287822"
+"aclew","(12,18]","lp_n","1.29597169553086","-0.138272473258558","0.318113254870528","-0.434664293742914","0.469318261963463","0.469147922459132","0.469318261963462",NA,"0.479750229445545",NA,"0.5424776877858","0.692640043201045",NA,"0.736530846459128","0.469510873399115","0.000362950939983293","320","97",NA,"no_exp","0.0393356360200417"
+"aclew","(12,18]","lp_dur","1.46953660055276","0.259479978576363","0.317951183947297","0.816100054590059","0.465192016499445","0.464596548213241","0.465192016499446",NA,"0.474619432301704",NA,"0.545646211707408","0.688926289454615",NA,"0.738678693145679","0.465876596591295","0.00128004837805371","322","97",NA,"no_exp","0.0633906348533928"
+"aclew","(12,18]","cp_n","1.5152792705378","0.805535432362673","0.269807592350377","2.98559215975135","0.665491070365717","0.658104683075533","0.55252769782421","0.112963372541503","0.620593916789255","0.126879398255179","0.375717285595279","0.78777783466486","0.356201345105797","0.612957817141832","0.669203836195837","0.0110991531203038","321","97","7","full","0.204231411580773"
+"aclew","(12,18]","cp_dur","1.52746140606514","0.9078716443052","0.288571096047272","3.14609348178266","0.599368504430767","0.590720418934266","0.504168463769265","0.0952000406614997","0.549316942752813","0.103725240756137","0.436508199404745","0.741159188536992","0.322064032074581","0.66068767160039","0.605149080821854","0.0144286618875873","324","97","7","full","0.0597174731490829"
+"aclew","(12,18]","avg_can_voc_dur_chi","1.2059237571317","0.601434927940081","0.314179753078278","1.91430199447077","0.497664157381627","0.494308208271579","0.49766415738163",NA,"0.507205231344165",NA,"0.511966480785426","0.712183425350636",NA,"0.715518330153341","0.501051609539826","0.00674340126824718","317","96",NA,"no_exp","0.0129944137960799"
+"aclew","(12,18]","can_voc_chi_ph","1.44475289184418","1.3123853655476","0.302908409465318","4.33261449513459","0.528403741690683","0.511516881501204","0.496757231321375","0.0316465103693095","0.500527034031263","0.0318866701355426","0.475175118848132","0.707479352370981","0.178568390639392","0.689329470462516","0.543475133983384","0.0319582524821802","316","96","7","full","6.10674962427665e-05"
+"aclew","(12,18]","peak_voc_chi","1.43380199199642","1.13967216547483","0.343591591383537","3.31693846431374","0.400023481404284","0.390697609879554","0.279012110930564","0.121011370473719","0.293232007726708","0.127178734297308","0.630554417691516","0.541509009829669","0.356621275721609","0.794074566833315","0.414010920118223","0.0233133102386691","318","96","7","full","0.14870427029282"
+"aclew","(12,18]","voc_fem_ph","1.40201374055533","0.150768546031104","0.297395773406458","0.506962638722658","0.566848725424612","0.566614823657208","0.438327952030846","0.128520773393768","0.465917394212515","0.136610187792879","0.460414883912749","0.682581419475007","0.369608154391754","0.678538785857337","0.567027458910517","0.000412635253308963","321","97","7","full","0.169095369219882"
+"aclew","(12,18]","peak_voc_fem_ph","1.4743056403547","0.329394920834414","0.353411702873041","0.932043048253967","0.355013198377508","0.35430582925592","0.254146191271567","0.10086700710594","0.268788643066266","0.106678387877907","0.682147256806662","0.518448303176185","0.326616576244849","0.825922064608194","0.35629834425204","0.00199251499611929","322","97","7","full","0.93631906545824"
+"aclew","(12,18]","peak_simple_CTC","1.59831201553565","1.07592293586052","0.297540999032838","3.61604934902359","0.587356264832975","0.575870001063878","0.389644836626274","0.197711428206698","0.432184477413665","0.219296657484461","0.457694290485969","0.657407390750717","0.468291210129404","0.676531071338167","0.595425872784022","0.0195558717201445","320","97","7","full","0.214246711999477"
+"aclew","(12,18]","peak_voc_mal_ph","1.44249328747117","0.0161730404738573","0.369666763900809","0.0437503234080219","0.239932219004919","0.239930992503682","0.236066094970904","0.00386612403401372","0.237978697837618","0.00389744729503278","0.766225835234116","0.487830603629598","0.0624295386418383","0.875343267086756","0.239936104369198","5.11186551619767e-06","316","97","7","full","0.0946214811695454"
+"aclew","(12,18]","voc_och_ph","1.4448054339404","0.541874732485636","0.252736668393877","2.14402894494578","0.674308170460471","0.670509514919833","0.674308170460474",NA,"0.66689568469244",NA,"0.322111588105441","0.816636813211626",NA,"0.567548753945809","0.676142926625409","0.00563341170557592","314","97",NA,"no_exp","2.90312153404754e-05"
+"aclew","(12,18]","peak_voc_och_ph","1.55422117417567","0.520871476722025","0.262002328455578","1.98804140326691","0.628922349083083","0.625550217634833","0.628922349083085",NA,"0.607337877771736",NA,"0.358342350728943","0.779318855008485",NA,"0.598617031773189","0.630911978833439","0.00536176119860678","321","97",NA,"no_exp","8.77271363722847e-06"
+"aclew","(12,18]","voc_chi_ph","1.33978080895674","1.42291069114555","0.317935855737162","4.47546467461622","0.449837778126783","0.432311432146858","0.368374380955811","0.0814633971709705","0.358362461961801","0.0792493318732252","0.535209554468205","0.598633829616904","0.281512578534646","0.731580176377275","0.47127291300093","0.0389614808540724","320","97","7","full","0.126900497255287"
+"aclew","(12,18]","peak_voc_chi_ph","1.43380199199642","1.13967216547483","0.343591591383537","3.31693846431374","0.400023481404284","0.390697609879554","0.279012110930564","0.121011370473719","0.293232007726708","0.127178734297308","0.630554417691516","0.541509009829669","0.356621275721609","0.794074566833315","0.414010920118223","0.0233133102386691","318","96","7","full","0.14870427029282"
+"aclew","(12,18]","voc_mal_ph","1.54506542862621","0.314469054487537","0.317167276255378","0.991492748559379","0.463893894675746","0.462994900857626","0.463893894675746",NA,"0.462650626757993",NA,"0.534669303657081","0.680184259416515",NA,"0.731210847606271","0.464932830691234","0.00193792983360802","316","97",NA,"no_exp","0.00256920449141237"
+"aclew","(12,18]","voc_dur_mal_ph","1.5361008277448","0.180102489456476","0.316612537271814","0.568841938504338","0.45809645152504","0.457800172898125","0.458096451525041",NA,"0.450823002444215",NA,"0.533299448064598","0.67143354283519",NA,"0.730273543314146","0.458446933260335","0.000646760362210718","315","97",NA,"no_exp","6.06017293381363e-05"
+"aclew","(12,18]","voc_dur_och_ph","1.47626344072195","0.349709389032286","0.235343872905629","1.48595068447997","0.723819434826367","0.7221296307015","0.721272488681488","0.0025469461448755","0.724575308834029","0.00255860901180407","0.277445239413548","0.85121989452434","0.0505826947859055","0.526730708629702","0.724464196538728","0.00233456583722823","314","97","7","full","2.0788926990298e-09"
+"aclew","(12,18]","voc_dur_chi_ph","1.29525503494436","1.33790189045842","0.320698884536954","4.17183206729942","0.441178763003284","0.425970155064972","0.398863637893568","0.0423151251097137","0.388730405626843","0.0412400985833632","0.544624241201433","0.623482482213288","0.203076583050245","0.73798661315869","0.460442820600321","0.0344726655353488","319","97","7","full","0.00417364975008205"
+"aclew","(12,18]","avg_voc_dur_fem","1.4276229039361","-0.401341983888179","0.302072496875943","-1.32862802154744","0.541716571091598","0.540087138511932","0.493195813196795","0.048520757894805","0.503629110341568","0.049547188921307","0.467978172988516","0.70966831008688","0.222591978564608","0.684089301910588","0.543095044613794","0.00300790610186272","317","96","7","full","0.945804368996601"
+"aclew","(12,18]","avg_voc_dur_mal","1.4391625458889","-0.168698002584141","0.316649122644025","-0.532760050542729","0.440225111156511","0.439972304059336","0.440225111156513",NA,"0.427703054223846",NA,"0.543852278229204","0.653990102542727",NA,"0.737463408061175","0.44054657183909","0.000574267779754105","319","97",NA,"no_exp","0.650125930052374"
+"aclew","(12,18]","avg_voc_dur_och","1.66356761150842","0.268866860687142","0.222796416743127","1.20678269703562","0.747023468485806","0.745983329467368","0.733880886694907","0.0131425817908942","0.735750712157982","0.0131760672440906","0.253621080198812","0.857759122456871","0.114787051726624","0.503608062086789","0.747375707434484","0.00139237796711673","322","97","7","full","0.00559967041400881"
+"aclew","(12,18]","avg_voc_dur_chi","1.35894593793081","0.661138542559226","0.293144411810053","2.25533394437558","0.558941801107709","0.554334183580748","0.558941801107711",NA,"0.56337678256575",NA,"0.4445578207315","0.750584294110762",NA,"0.666751693459792","0.562577649211391","0.00824346563064242","318","95",NA,"no_exp","0.423969347774904"
+"aclew","(12,18]","voc_dur_fem_ph","1.53983347126136","-0.142240481577254","0.303614828832648","-0.468489902565519","0.540857968942569","0.540655553863709","0.438480026750632","0.102377942191937","0.454288518338055","0.106068967413479","0.475695448528215","0.674009286536955","0.32568231056273","0.689706784458595","0.541029801985181","0.000374248121472778","320","97","7","full","0.111126210441461"
+"aclew","(12,18]","simple_CTC_ph","1.39528614916253","1.54043897824845","0.293646602337048","5.24589409851346","0.540084526211702","0.515639881779122","0.439456038953764","0.100628487257939","0.429771218171472","0.0984108163687045","0.449779763856432","0.655569384711849","0.313704983015419","0.670656218830805","0.560900657169302","0.0452607753901807","319","97","7","full","0.034349507057894"
+"aclew","(18,24]","wc_adu_ph","1.12621605575973","1.84022935041894","0.573131266481094","3.21083398872576","0.565171231316394","0.528976833805514","0.384129368458257","0.181041862858137","0.406907507867109","0.191777300264478","0.460613285894066","0.637893022274981","0.437923852130114","0.678684968077285","0.593018305673387","0.0640414718678732","94","53","5","full","0.236048506787061"
+"aclew","(18,24]","sc_fem_ph","1.55260646372282","1.56620435508267","0.549164617483826","2.85197608370827","0.592137315833296","0.563305458235392","0.4524651397694","0.139672176063895","0.465375062165982","0.143657360325528","0.419499990863387","0.682184038340082","0.379021582928371","0.647688189535201","0.61199662635968","0.0486911681242878","93","52","5","full","0.48070712989037"
+"aclew","(18,24]","sc_mal_ph","1.40784890183513","1.23222320795825","0.620015396375397","1.98740743401183","0.362164215528564","0.350060596846893","0.362164215528564",NA,"0.339600249950584",NA,"0.5980966162485","0.582752305830345",NA,"0.773367064367561","0.383480847006082","0.033420250159189","95","52",NA,"no_exp","0.0120932355440253"
+"aclew","(18,24]","pc_fem_ph","1.53138877533163","1.62764867737585","0.55314760369956","2.9425214291625","0.573792734940382","0.543015169489153","0.462241282985644","0.111551451954738","0.463679142610828","0.111898446770649","0.427533036341731","0.680939896474592","0.334512252048635","0.653860104564984","0.596653989880329","0.0536388203911755","93","52","5","full","0.390509710248264"
+"aclew","(18,24]","pc_mal_ph","1.4117696838249","1.27953571287422","0.621337897642245","2.05932346591058","0.357048247528991","0.34420820555751","0.357048247528991",NA,"0.334612534816294",NA,"0.602550823727077","0.578457029360258",NA,"0.776241472563195","0.380169849565967","0.0359616440084576","95","52",NA,"no_exp","0.0131251593236943"
+"aclew","(18,24]","sc_adu_ph","1.1004218429866","1.55536363215407","0.556797830207858","2.79340821348646","0.600771361239559","0.573402935752636","0.419658015320767","0.181113345918792","0.453969015711089","0.195921069959907","0.431869344955143","0.673772228361402","0.442629721053509","0.657167668829762","0.618958412016442","0.0455554762638064","95","53","5","full","0.127681630006413"
+"aclew","(18,24]","pc_adu_ph","1.15161375865217","1.71502450807259","0.583940352709743","2.93698577280045","0.515646015946417","0.48542056330316","0.42114907570218","0.0944969402442364","0.425795290042116","0.095539452419078","0.489697489610522","0.65252991505533","0.309094568731122","0.699783887790025","0.544037233865002","0.058616670561842","94","53","5","full","0.0883293979936282"
+"aclew","(18,24]","wc_fem_ph","1.5542207487804","1.59216777314061","0.553893614693532","2.87450104298738","0.571787228933711","0.542287931753678","0.469993219154753","0.101794009778958","0.470042702039438","0.101804727085171","0.428257855127735","0.685596602995842","0.3190685303899","0.654414131210302","0.593879320450911","0.051591388697233","93","52","5","full","0.419390171332081"
+"aclew","(18,24]","wc_mal_ph","1.39223116237191","1.24662253932431","0.622340347677279","2.00312022830755","0.357022719775964","0.34485099849086","0.357022719775964",NA,"0.335661084050833",NA,"0.604506209116013","0.579362653310371",NA,"0.777499973708047","0.378943286210649","0.0340922877197881","95","52",NA,"no_exp","0.0120433004370884"
+"aclew","(18,24]","can_voc_dur_chi_ph","1.21413179332851","1.88572385521213","0.483651990189004","3.89892710764038","0.606226088980207","0.555566744969915","0.606226088980206",NA,"0.514420746695605",NA,"0.334141788052716","0.717231306271279",NA,"0.57804998750343","0.639131845402183","0.0835651004322681","96","53",NA,"no_exp","0.591905629196949"
+"aclew","(18,24]","non_can_voc_chi_ph","1.46999543186656","0.934653219865999","0.591988129088707","1.57883777383304","0.449919801939197","0.441558087888072","0.449919762964726","3.89744711923565e-08","0.447230668645768","3.87415273706023e-08","0.546792461763493","0.668753070008481","0.00019682867517362","0.739454164748223","0.46014298683025","0.0185848989421789","97","52","5","full","0.324325440113863"
+"aclew","(18,24]","avg_cry_voc_dur_chi","1.29669324234364","0.145558515356295","0.570609737930287","0.255092939500584","0.613542213198722","0.613323330125812","0.276357812540137","0.337184400658585","0.359533112374081","0.438666654285966","0.502769831664097","0.599610800748353","0.662319148361246","0.70906264297599","0.613680083203597","0.000356753077785713","96","53","5","full","0.0956157756127397"
+"aclew","(18,24]","cry_voc_dur_chi_ph","1.39920659333122","1.59034830932479","0.605298645641338","2.62737794108188","0.38417630906082","0.363324096040554","0.37389863922943","0.0102776698313902","0.353379705573954","0.00971364845426564","0.582028313978481","0.594457488449724","0.0985578431900051","0.762907801754891","0.41760181314196","0.0542777171014063","96","52","5","full","0.744932724968555"
+"aclew","(18,24]","cry_voc_chi_ph","1.28648946131856","1.80950833510095","0.629689247537394","2.87365290447252","0.329144684789303","0.306885884672731","0.329144684789303",NA,"0.31199652958829",NA,"0.635904329840778","0.558566495225314",NA,"0.79743609765346","0.374512072015906","0.0676261873431753","95","52",NA,"no_exp","0.814008320276567"
+"aclew","(18,24]","non_can_voc_dur_chi_ph","1.46072437579679","0.630048607274236","0.56731524310383","1.11057937351936","0.54058779864357","0.53610044289821","0.540587798643569",NA,"0.54871773861329",NA,"0.466321335502182","0.740754843800086",NA,"0.68287724775554","0.544401325301808","0.00830088240359708","94","52",NA,"no_exp","0.930791845924916"
+"aclew","(18,24]","avg_non_can_voc_dur_chi","1.28280425691138","-0.0557251983969264","0.58399499806625","-0.0954206775425236","0.574531614225993","0.574497065238284","0.459877501432245","0.114654112793749","0.508462616075735","0.126767084611424","0.470418247934324","0.713065646399919","0.356043655485426","0.685870430864551","0.574557199418639","6.01341803555581e-05","91","51","5","full","0.971196801811772"
+"aclew","(18,24]","lp_n","1.49171773534833","-0.801530245028796","0.614372736880769","-1.30463185768666","0.385692398088326","0.380430799718806","0.385692398088326",NA,"0.385166481053195",NA,"0.613469952960704","0.620617822055728",NA,"0.783243227203852","0.394072754799069","0.0136419550802637","98","53",NA,"no_exp","0.0854166389756197"
+"aclew","(18,24]","lp_dur","1.58868118126291","-0.277655708544983","0.637259907226331","-0.435702458912686","0.331417594871065","0.330879099829335","0.321064798546284","0.0103527963247826","0.326966406414987","0.0105430948082353","0.680871859472266","0.571809764182972","0.102679573471238","0.825149598237959","0.332503923164198","0.00162482333486267","98","53","5","full","0.545805805464936"
+"aclew","(18,24]","cp_n","1.39673845325853","1.40610600557954","0.560455943988899","2.50886090273563","0.537365261358153","0.515537547656372","0.373828754215759","0.163536507142395","0.367057387458034","0.160574280038004","0.454254780024753","0.605852611992417","0.400717207065038","0.673984257994764","0.556157430018348","0.0406198823619755","95","53","5","full","0.665709618975329"
+"aclew","(18,24]","cp_dur","1.47107387252175","1.59323696719777","0.604785301808021","2.63438440457257","0.368052414146968","0.347890456186279","0.314697326669979","0.0533550874769886","0.292761813608145","0.0496360497887715","0.587898611333427","0.541074683946814","0.222791493977601","0.766745467109801","0.402670583107653","0.0547801269213746","97","53","5","full","0.74722848487212"
+"aclew","(18,24]","avg_can_voc_dur_chi","1.37196413228695","0.464477739813517","0.566688383330543","0.8196351883617","0.58845487250248","0.585953201225489","0.524066154161935","0.0643887183405443","0.573536266604464","0.0704668004892204","0.450393627006203","0.757321772171158","0.265455835289451","0.671113721366359","0.590204455474353","0.00425125424886389","95","53","5","full","0.34390986816293"
+"aclew","(18,24]","can_voc_chi_ph","1.52826717656485","2.04515215658477","0.535643509365132","3.81812179337107","0.549425971340662","0.500248009513326","0.468093475134148","0.0813324962065148","0.417247705303811","0.0724979073871384","0.401631275620162","0.645947138165199","0.269254354444155","0.633743856475281","0.589755903920531","0.0895078944072048","93","52","5","full","0.88505872559426"
+"aclew","(18,24]","peak_voc_chi","1.27288574642999","1.64853305183528","0.665897059436997","2.47565750362238","0.19490889190532","0.183927422121197","0.126122042022853","0.0687868498824669","0.122847641520672","0.0670009947521017","0.784189204776547","0.35049627889704","0.258845503635087","0.885544580908577","0.240268975740298","0.0563415536191016","94","52","5","full","0.116521589523565"
+"aclew","(18,24]","voc_fem_ph","1.54125637918678","2.21324336093365","0.55783294060265","3.96757380183141","0.513785304299438","0.462115901515717","0.396406703209078","0.11737860109036","0.371746140048844","0.110076448068185","0.455967154184007","0.60970988186911","0.331777708817493","0.675253399979598","0.562682037509376","0.100566135993659","94","52","5","full","0.73009719740205"
 "aclew","(18,24]","peak_voc_fem_ph","1.3361655029135",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"no_chi_effect",NA
-"aclew","(18,24]","peak_simple_CTC","1.39325278437695","1.59811272357994","0.596164120075784","2.68065901613936","0.45833404757083","0.434919689430896","0.275665488603784","0.182668558967046","0.28446064397796","0.188496631121559","0.558947898880446","0.533348520179779","0.434161987190909","0.747628182240642","0.486005482127359","0.0510857926964631","93","52","5","full","0.241344236912043"
-"aclew","(18,24]","peak_voc_mal_ph","1.42905352762493","0.862951451103792","0.603647821280318","1.42956111275859","0.430160825529026","0.423192308139229","0.397541591626064","0.0326192339029626","0.391951413629209","0.0321605464914322","0.561826170342665","0.626060231630479","0.179333617850732","0.749550645615535","0.439392103602303","0.0161997954630748","95","53","5","full","0.861887689652318"
-"aclew","(18,24]","voc_och_ph","1.56265254716043","1.56164001905641","0.510666430057483","3.05804322966877","0.659942467929783","0.629464479226703","0.428303749047205","0.231638718882576","0.459893739612545","0.248723474643753","0.365138830689873","0.678154657591132","0.498721840953204","0.604267184852754","0.675647275734235","0.046182796507532","95","52","5","full","0.972121241273502"
-"aclew","(18,24]","peak_voc_och_ph","1.32892311526851","0.721141559556441","0.640465603364864","1.12596454168299","0.33741065153939","0.333673333148316","0.326507019085232","0.0109036324541575","0.328030919908214","0.0109545227980066","0.665681840794305","0.57273983614571","0.104663856216015","0.815893277821496","0.344749801463772","0.0110764683154556","95","52","5","full","0.789074527893765"
-"aclew","(18,24]","voc_chi_ph","1.52004428133789","1.94082897715941","0.534575536444565","3.63059819397604","0.519392511113142","0.476200661572746","0.519392511113143",NA,"0.464794921072477",NA,"0.430086909388162","0.681758697100724",NA,"0.655810116869329","0.559359060310204","0.0831583987374579","97","52",NA,"no_exp","0.215552606439477"
-"aclew","(18,24]","peak_voc_chi_ph","1.27288574642999","1.64853305191667","0.665897059434901","2.4756575037524","0.19490889187073","0.183927422086995","0.126122042057288","0.0687868498134414","0.122847641547847","0.0670009946813965","0.784189204769605","0.350496278935807","0.258845503498509","0.885544580904657","0.240268975714102","0.0563415536271067","94","52","5","full","0.116521589564632"
-"aclew","(18,24]","voc_mal_ph","1.30193502620492","1.28857148646949","0.618781745405236","2.08243293542154","0.355653529128505","0.342954629065705","0.355653529128504",NA,"0.33873926162494",NA,"0.613702465735361","0.582013111213949",NA,"0.783391642625425","0.378660446730208","0.0357058176645031","97","53",NA,"no_exp","0.00292313259504609"
-"aclew","(18,24]","voc_dur_mal_ph","1.37581330318451","0.916116372214786","0.642323857488048","1.42625306772422","0.357166919249472","0.350772049798031","0.348541599929642","0.00862531931983047","0.338331853217903","0.00837265987951943","0.624002723244525","0.581663006575029","0.0915022397513822","0.789938430033964","0.368676477970938","0.0179044281729068","94","52","5","full","0.0186225471933797"
-"aclew","(18,24]","voc_dur_och_ph","1.47574526043796","1.41075421550492","0.525074535791093","2.68676943813212","0.63343421108897","0.60883544195425","0.484472731209418","0.148961479879551","0.508765247869162","0.156430732529954","0.384946194990406","0.713277819555019","0.39551325202824","0.620440323472295","0.647669418244275","0.0388339762900242","95","52","5","full","0.355340139098875"
-"aclew","(18,24]","voc_dur_chi_ph","1.48695551443172","1.62878492916123","0.472797080344685","3.44499785822238","0.655051191814754","0.615776024107598","0.655051191814755",NA,"0.584344042604771",NA,"0.307714547481759","0.764423994001216",NA,"0.554720242538308","0.675733426212841","0.0599574021052425","96","52",NA,"no_exp","0.883238826401031"
-"aclew","(18,24]","avg_voc_dur_fem","1.33411816352253","0.463779517392677","0.551279309244058","0.841278657870608","0.538366670828924","0.535797789727356","0.538366670828924",NA,"0.525486301291101",NA,"0.450588797269531","0.724904339407001",NA,"0.671259113360504","0.540569409593074","0.00477161986571763","96","52",NA,"no_exp","0.297031941190204"
-"aclew","(18,24]","avg_voc_dur_mal","1.32220190488795","-0.990522971766161","0.609606420893085","-1.6248565267981","0.466108659489745","0.457115604067732","0.340129253273391","0.125979406216355","0.360975908536185","0.133700733406912","0.566613750053964","0.600812706703332","0.365651108855028","0.752737504083571","0.476409507407477","0.0192939033397446","96","53","5","full","0.113185247994138"
-"aclew","(18,24]","avg_voc_dur_och","1.60444418159038","0.39376515545097","0.527590136365116","0.746346696630558","0.596259361758761","0.594284269873594","0.596259356753228","5.0055333706568e-09","0.598034589793415","5.02043626169357e-09","0.404942688511066","0.773326961765471","7.08550369535827e-05","0.636351073316503","0.597596740942125","0.00331247106853087","98","53","5","full","0.647455561602978"
-"aclew","(18,24]","avg_voc_dur_chi","1.29498812774512","0.83377456889175","0.46693492370475","1.78563334324284","0.716807296242729","0.706206934215706","0.655527101986705","0.061280194256026","0.66061769671435","0.0617560748608757","0.285391879474468","0.812783917603166","0.248507695777969","0.534220815276294","0.720995235175514","0.0147883009598071","96","53","5","full","0.555843147147796"
-"aclew","(18,24]","voc_dur_fem_ph","1.56169060724043","1.33133515570688","0.54104534303166","2.46067205429947","0.612856277749936","0.591381796915488","0.481388323693596","0.13146795405634","0.501501623144143","0.136960929681085","0.403319306976069","0.708167793071771","0.370082328247493","0.635074253120112","0.626421791795348","0.0350399948798593","95","53","5","full","0.844433303605004"
-"aclew","(18,24]","simple_CTC_ph","1.64635541891938","2.53889216795642","0.509781568388213","4.98035300880666","0.524618012565487","0.448670459233041","0.524618012565486",NA,"0.430475421910897",NA,"0.390074791006473","0.656106258094599",NA,"0.624559677698195","0.593437797588518","0.144767338355477","97","52",NA,"no_exp","0.71182673251912"
-"aclew","(24,30]","wc_adu_ph","1.65123876441033","0.397843531196865","0.606318417526898","0.656162702132029","0.235685707891747","0.234783695066909","0.201932816760795","0.0337528911309522","0.207328834392469","0.0346548306897825","0.784738180916984","0.455333761533744","0.186158079840179","0.885854491955075","0.238610880147018","0.00382718508010806","95","40","3","full","0.162753571865192"
-"aclew","(24,30]","sc_fem_ph","1.31802637896172","-0.327281123747586","0.554978286763134","-0.589718790002447","0.394046600334559","0.393034396088249","0.394046600334559",NA,"0.408436818194306",NA,"0.628082258096491","0.639090618139795",NA,"0.792516408723814","0.395603138580763","0.00256874249251419","95","40",NA,"no_exp","0.492489224990329"
-"aclew","(24,30]","sc_mal_ph","1.25989810951226","1.69170154480088","0.583765720883321","2.89791175514912","0.187018146414813","0.173465909530883","0.175528672598765","0.0114894738160487","0.165701467732532","0.0108462204300128","0.767465989370945","0.407064451570672","0.10414518918324","0.876051362290445","0.245930732563997","0.0724648230331136","95","40","3","full","0.0360175964051287"
-"aclew","(24,30]","pc_fem_ph","1.37842686546933","-0.338681492640851","0.55186460383902","-0.613703959784391","0.404618584121844","0.40350980586431","0.404618584121844",NA,"0.420931210474433",NA,"0.619384847642356","0.648792116532278",NA,"0.78701006832337","0.406250110687283","0.00274030482297292","95","40",NA,"no_exp","0.413943076724028"
-"aclew","(24,30]","pc_mal_ph","1.2747481069321","1.68925250507345","0.582909962802503","2.89796471645791","0.186254216871719","0.172736807676364","0.184664600462852","0.00158961640886743","0.173536911519242","0.00149382784466402","0.764710343032403","0.416577617640749","0.0386500691417754","0.874477182682546","0.245311858176646","0.0725750505002819","95","40","3","full","0.0347219456145468"
-"aclew","(24,30]","sc_adu_ph","1.60737875029223","0.41652671970714","0.608651800763845","0.684343197842195","0.236445023722634","0.235465104744183","0.173305381667434","0.0631396420552004","0.180055813213902","0.0655989992168842","0.79329626618847","0.424329840117216","0.256123015789062","0.890671806103949","0.23960948876641","0.00414438402222763","95","40","3","full","0.187927835512941"
-"aclew","(24,30]","pc_adu_ph","1.62623966970251","0.412039736249983","0.606888362244719","0.678938272478907","0.235813189535228","0.234847958962225","0.194960895385081","0.0408522941501472","0.200703253349539","0.0420555533792153","0.786695089413423","0.447999166683978","0.205074506897409","0.88695833578214","0.238941159070775","0.0040932001085503","95","40","3","full","0.170778290220357"
-"aclew","(24,30]","wc_fem_ph","1.39469823316109","-0.358929590948692","0.549540754640279","-0.653144626522999","0.411540641275948","0.410276352400905","0.411540641275948",NA,"0.428779888673024",NA,"0.613109649486869","0.654812865384473",NA,"0.783013186023626","0.413348439937931","0.0030720875370256","95","40",NA,"no_exp","0.460972363378438"
-"aclew","(24,30]","wc_mal_ph","1.25595085672983","1.68131035268611","0.582226049419014","2.88772780668924","0.189745086600418","0.17610283292273","0.189745086600418",NA,"0.17843258862332",NA,"0.761947959933801","0.422412817778201",NA,"0.872896305372981","0.248000629709517","0.0718977967867867","95","40",NA,"no_exp","0.0268300849126778"
-"aclew","(24,30]","can_voc_dur_chi_ph","1.40656140367058","1.02288394938117","0.517645227666556","1.97603280144615","0.504131233260178","0.491608521649395","0.504131233260178",NA,"0.51697451492017",NA,"0.508501553239573","0.719009398353158",NA,"0.71309294852745","0.516448703698422","0.0248401820490272","92","39",NA,"no_exp","0.880824531250394"
-"aclew","(24,30]","non_can_voc_chi_ph","1.30454757404131","-0.941664537662813","0.575697542045298","-1.63569317026669","0.292693054725627","0.286208717725948","0.285742977879216","0.00695007684641036","0.283326375991182","0.00689129825820611","0.701325068442067","0.532284112097273","0.0830138437744338","0.837451531995773","0.308362769197232","0.022154051471284","95","40","3","full","0.239284509861194"
-"aclew","(24,30]","avg_cry_voc_dur_chi","1.48814077941045","-0.422483097431403","0.478215173350296","-0.883458160625805","0.703624639869608","0.701592049148303","0.286606437860357","0.417018202009251","0.450482370548594","0.655461020364693","0.465836970727024","0.671179834730301","0.809605472044682","0.682522505656059","0.704480792103186","0.00288874295488238","96","40","3","full","0.323341162287864"
-"aclew","(24,30]","cry_voc_dur_chi_ph","1.41057778532332","-0.602344736709958","0.491531670486565","-1.22544440750623","0.563624770242619","0.558392199213416","0.56362477024262",NA,"0.565671563257291",NA,"0.437959918399894","0.7521114034884",NA,"0.661785402075245","0.567675983932371","0.00928378471895496","88","39",NA,"no_exp","0.169621994222583"
-"aclew","(24,30]","cry_voc_chi_ph","1.42172575423797","-0.535030787764279","0.533734547657136","-1.00242862320386","0.489613534692403","0.486142016533825","0.489613534692403",NA,"0.502025345289768",NA,"0.52332487425668","0.708537469220766",NA,"0.723411967178232","0.493232339640925","0.00709032310709972","88","39",NA,"no_exp","0.0645324311805367"
-"aclew","(24,30]","non_can_voc_dur_chi_ph","1.25501309260218","-0.7316820177347","0.582357653927996","-1.25641349916072","0.285549876831315","0.281695501597031","0.285549876831315",NA,"0.284303100793593",NA,"0.711330670610698","0.533200807195181",NA,"0.843404215433322","0.295193582132226","0.0134980805351954","94","40",NA,"no_exp","0.849134733586762"
-"aclew","(24,30]","avg_non_can_voc_dur_chi","1.37353611479758","0.508094459693845","0.50361822551403","1.0088881496996","0.551556716480194","0.548460375899063","0.330213559528641","0.221343156951552","0.382544605791544","0.256420817005679","0.519510947275532","0.618501904436473","0.506380111186921","0.720771078273492","0.554074196724037","0.0056138208249739","95","39","3","full","0.364241731639108"
-"aclew","(24,30]","lp_n","1.36558221141143","0.766633594921244","0.444223007665273","1.72578543139961","0.626419717353952","0.617402548064286","0.626419717353953",NA,"0.640870321502578",NA,"0.382198243787266","0.800543766138103",NA,"0.618221840270356","0.631797320514546","0.0143947724502601","94","40",NA,"no_exp","0.476215793027103"
-"aclew","(24,30]","lp_dur","1.48468052571573","0.683999408472296","0.447307524088752","1.52914800587298","0.617849513688446","0.610948681707815","0.617849513688445",NA,"0.644611445824188",NA,"0.398703198830914","0.802876980504602",NA,"0.631429488407782","0.622117796237718","0.0111691145299031","96","40",NA,"no_exp","0.564648388364951"
-"aclew","(24,30]","cp_n","1.38730088170485","0.156478416455362","0.614507544317495","0.254640350476341","0.292244148227089","0.29207913884954","0.191871906100903","0.100372242126186","0.208188375391554","0.108907731451156","0.767942237864569","0.456276643486771","0.330011714112023","0.87632313552968","0.292643767358101","0.000564628508560888","91","39","3","full","0.0298830828082088"
-"aclew","(24,30]","cp_dur","1.25557131369927","0.550213054885223","0.558179726127916","0.985727408449679","0.406304911074039","0.403365595332628","0.364544758037764","0.0417601530362758","0.381795954420068","0.0437363509793258","0.621790268857777","0.617896394567947","0.209132376688369","0.788536789793461","0.410599856256626","0.0072342609239978","92","39","3","full","0.0625888456659654"
-"aclew","(24,30]","avg_can_voc_dur_chi","1.64462763090678","0.569744401172101","0.358782183016892","1.58799524653451","0.769793609010213","0.764039611451084","0.685223331634427","0.0845702773757871","0.743941949893713","0.0918173304226616","0.249933391763586","0.86252069534227","0.303013746260234","0.499933387326338","0.771514339081685","0.00747472763060139","96","40","3","full","0.644019671350751"
-"aclew","(24,30]","can_voc_chi_ph","1.35067132847877","0.782526752607085","0.552310396915985","1.41682422959371","0.451999744700293","0.445335830818549","0.451999699849174","4.48511185799273e-08","0.464424736724784","4.60840326779985e-08","0.563064255081599","0.681487150814147","0.000214671918699206","0.750376075765745","0.460079011450569","0.0147431806320202","89","39","3","full","0.873142176229854"
-"aclew","(24,30]","peak_voc_chi","1.09627677782787","0.553268562524171","0.533098600741734","1.03783533056431","0.407252611912007","0.404114121850747","0.391995510252863","0.0152571016591439","0.398165834172037","0.0154972606835265","0.602077707673511","0.631003830552587","0.124487994134079","0.77593666473077","0.411820616467258","0.00770649461651149","95","40","3","full","0.856913620719912"
-"aclew","(24,30]","voc_fem_ph","1.60258359307937","-0.140262026392732","0.562905273717623","-0.249175186202099","0.354119489100855","0.35395050898923","0.325972222236083","0.0281472668647714","0.338351676123046","0.0292162162059337","0.670409128541212","0.581680046179208","0.170927517404114","0.818785154079635","0.354427692868757","0.000477183879526328","96","40","3","full","0.104986746342325"
-"aclew","(24,30]","peak_voc_fem_ph","1.33870288547755","-0.675401248735991","0.599336931643433","-1.12691411637855","0.219836749069366","0.217340933053841","0.219836749069366",NA,"0.222203523998201",NA,"0.788562532809198","0.471384687912326",NA,"0.888010435079002","0.228693975828039","0.0113530427741983","95","40",NA,"no_exp","0.809856824888098"
-"aclew","(24,30]","peak_simple_CTC","1.33627168332946","0.581091823804438","0.594893957539133","0.976799001637554","0.228629070743291","0.226710801596224","0.22862907074329",NA,"0.229818096960158",NA,"0.775382581208205","0.479393467790455",NA,"0.880558107797665","0.235101113208086","0.00839031161186155","96","40",NA,"no_exp","0.13072478720491"
-"aclew","(24,30]","peak_voc_mal_ph","1.27673353069189","0.713278766969782","0.620517734760754","1.14948973576846","0.125278698470869","0.123691996004729","0.125278698470869",NA,"0.125153355649223",NA,"0.873846132506576","0.353770201754223",NA,"0.934797375106807","0.136357377154978","0.0126653811502489","96","40",NA,"no_exp","0.913700018218553"
-"aclew","(24,30]","voc_och_ph","1.37264355493543","0.471300499679744","0.461820338266939","1.02052781271691","0.569976848045731","0.566790192114065","0.56714979277261","0.00282705527312232","0.571203098636043","0.00284725967037472","0.433096441207725","0.755779795069995","0.053359719549251","0.658100631520534","0.572381043641794","0.00559085152772843","94","40","3","full","0.052560155834049"
-"aclew","(24,30]","peak_voc_och_ph","1.22569977667272","0.127488119696585","0.55457310192355","0.229885148151595","0.367940846027343","0.367796115763775","0.367940846027342",NA,"0.386603125850112",NA,"0.664117744160016","0.621774175927331",NA,"0.814934196214649","0.368189467752635","0.000393351988859499","97","40",NA,"no_exp","0.887526378657133"
-"aclew","(24,30]","voc_chi_ph","1.48623035771102","-0.250194251771926","0.511851191001288","-0.488802714872059","0.466396884618362","0.465657598309271","0.466396884618362",NA,"0.47042819156799",NA,"0.538215320176146","0.685877679741796",NA,"0.733631597040467","0.467242699611344","0.00158510130207305","95","40",NA,"no_exp","0.565501358431271"
-"aclew","(24,30]","peak_voc_chi_ph","1.09627677782787","0.553268562524171","0.533098600741734","1.03783533056431","0.407252611912007","0.404114121850747","0.391995510252863","0.0152571016591439","0.398165834172037","0.0154972606835265","0.602077707673511","0.631003830552587","0.124487994134079","0.77593666473077","0.411820616467258","0.00770649461651149","95","40","3","full","0.856913620719912"
-"aclew","(24,30]","voc_mal_ph","1.40275586086909","1.27546407280679","0.609090681645286","2.09404627462284","0.128042642405579","0.122802253888961","0.122030729984621","0.00601191242095779","0.118674680837802","0.00584657477564791","0.847977072084488","0.344491916941171","0.0764628980332809","0.920856705510954","0.163729154632065","0.0409269007431045","95","40","3","full","0.478942448875811"
-"aclew","(24,30]","voc_dur_mal_ph","1.28042294520664","1.15679544313301","0.604125451294015","1.91482653256074","0.23382371236222","0.226503912932399","0.139843512252018","0.0939802001102025","0.146701217459575","0.0985888408495851","0.803748363975305","0.383015949354038","0.31398859987201","0.89652014142199","0.257808691031558","0.0313047780991584","95","40","3","full","0.105489273256059"
-"aclew","(24,30]","voc_dur_och_ph","1.37718736135975","0.292007217809125","0.451615098492633","0.646584267850576","0.591137206858119","0.589866568068102","0.591137206858118",NA,"0.596508952022814",NA,"0.412578185620317","0.772339919998192",NA,"0.642322493472178","0.592016050075452","0.00214948200735074","94","40",NA,"no_exp","0.103139922996483"
-"aclew","(24,30]","voc_dur_chi_ph","1.54235388990628","0.384783656121328","0.4548050515793","0.846040858132898","0.629653952016615","0.627394215445","0.629653952016614",NA,"0.656683388872619",NA,"0.386244058448939","0.810360036571781",NA,"0.621485364629722","0.630983070187161","0.00358885474216188","93","40",NA,"no_exp","0.616311639174159"
-"aclew","(24,30]","avg_voc_dur_fem","1.19668555450744","-1.02040652379503","0.485339698649374","-2.10245839488232","0.580942652639046","0.567290625030375","0.555870142076536","0.0250725105625107","0.61030592897943","0.0275278355364387","0.460095199071817","0.781220794000921","0.165915145590867","0.678303176368662","0.590790410330445","0.0234997853000696","94","40","3","full","0.223985143463411"
-"aclew","(24,30]","avg_voc_dur_mal","1.34925148174372","0.122154707965198","0.579201330807666","0.210901980827391","0.313167029333918","0.31305234331824","0.313167029333918",NA,"0.323150382919824",NA,"0.708728303693961","0.568463176397403",NA,"0.841860026188416","0.31341855688779","0.000366213569550011","95","40",NA,"no_exp","0.611292918490472"
-"aclew","(24,30]","avg_voc_dur_och","1.26214613737006","0.214339029862778","0.474418721059901","0.451792942285082","0.557026611948585","0.556388411125999","0.557026611948585",NA,"0.563379854787881",NA,"0.448025781321804","0.750586340661673",NA,"0.669347280058568","0.557534138832533","0.00114572770653462","95","40",NA,"no_exp","0.598568469735269"
-"aclew","(24,30]","avg_voc_dur_chi","1.29986549202782","0.150359826192921","0.402717010172396","0.373363484518707","0.709644075941706","0.709255116725839","0.668912559916398","0.0407315160253101","0.6934383219784","0.0422249421176326","0.301001860064693","0.832729441042167","0.205487085038531","0.548636364147231","0.709803221373019","0.000548104647179651","93","39","3","full","0.613652405196337"
-"aclew","(24,30]","voc_dur_fem_ph","1.19337322606655","-0.588497488872031","0.518297823241706","-1.13544271745395","0.482489205046396","0.478564941028322","0.482489205046397",NA,"0.513286761414556",NA,"0.550543799033315","0.716440340443331",NA,"0.741986387363889","0.486698312670693","0.00813337164237038","96","40",NA,"no_exp","0.672058337576089"
-"aclew","(24,30]","simple_CTC_ph","1.46500446310646","-0.0946713375371783","0.479876022652713","-0.197282908643452","0.547140805050236","0.54701917044407","0.547140805050237",NA,"0.556908256222515",NA,"0.460943549166742","0.746262860004781",NA,"0.678928235652887","0.547241479957532","0.00022230951346206","95","40",NA,"no_exp","0.801446748658085"
-"aclew","(30,36]","wc_adu_ph","1.42070374234841","-0.0753944142583192","0.783918996352435","-0.096176281744834","0.416600838512297","0.416545045418731","0.278394032398264","0.138206806114033","0.295063893363656","0.146482444146015","0.618332320167677","0.543197839984343","0.382730249844476","0.786341096578118","0.416678970001709","0.000133924582977817","67","21","5","full","0.893946514331741"
-"aclew","(30,36]","sc_fem_ph","1.47020785924377","0.198559776987279","0.786344908453044","0.25250977637523","0.308076959909138","0.307791889564064","0.276517022188979","0.0315599377201583","0.286331934150172","0.0326801508910218","0.716482698909157","0.535099929125553","0.180776521957421","0.846453010455487","0.308717211422468","0.000925321858404238","69","21","5","full","0.635734774584546"
-"aclew","(30,36]","sc_mal_ph","1.44308069549247","0.581152333899573","0.698740960120466","0.831713563491942","0.582937766402953","0.578086954086191","0.572742983329553","0.0101947830734","0.572197718144229","0.0101850773931147","0.416665180254251","0.75643751767362","0.100921144430267","0.64549607299677","0.586408275153951","0.00832132106776011","68","20","5","full","0.994462262135741"
-"aclew","(30,36]","pc_fem_ph","1.44850882241313","0.200966533491542","0.78779510865698","0.255100001616088","0.301880178049775","0.301594170760278","0.270868224666845","0.0310119533829298","0.280615475145096","0.0321279250987523","0.723241811717576","0.529731512320247","0.17924264308125","0.850436247885505","0.302541590664905","0.000947419904626669","69","21","5","full","0.627713089016196"
-"aclew","(30,36]","pc_mal_ph","1.39082716435115","0.577192668771601","0.699685362307487","0.824931747704543","0.582872602169387","0.578099940176516","0.572603721602754","0.0102688805666341","0.573542625348453","0.0102857185473604","0.417811365575636","0.757325970338039","0.101418531577618","0.646383296176221","0.586288113672934","0.00818817349641783","68","20","5","full","0.98704774428563"
-"aclew","(30,36]","sc_adu_ph","1.46307461519107","-0.122721389918407","0.778868948936622","-0.157563592804613","0.432710594545982","0.432557862078262","0.280298179722631","0.152412414823351","0.298586331372869","0.162356615525713","0.604302398855483","0.546430536640174","0.402935001614048","0.77736889496267","0.432910828864019","0.000352966785757534","67","21","5","full","0.920124836997971"
-"aclew","(30,36]","pc_adu_ph","1.42435116495352","-0.120570011003911","0.781212355912564","-0.154337050728119","0.42232313647802","0.422179247391519","0.269069022425377","0.153254114052643","0.286620732276873","0.163251072153408","0.615359449964171","0.535369715502168","0.404043403798908","0.784448500517511","0.422519955901361","0.000340708509841566","67","21","5","full","0.909849447857259"
-"aclew","(30,36]","wc_fem_ph","1.46859394178297","0.244547540145572","0.788371676422499","0.310193208938312","0.292043748906819","0.291631626960293","0.276711889329292","0.0153318595775264","0.284854790666175","0.015783035781604","0.728789536997354","0.533717894272034","0.125630552739387","0.85369171074654","0.293042792061646","0.00141116510135265","69","21","5","full","0.61852791991588"
-"aclew","(30,36]","wc_mal_ph","1.3893765529484","0.594879727055665","0.702030397205927","0.847370326731264","0.58007938994537","0.575048475829332","0.57288558206371","0.00719380788165981","0.575190173525773","0.00722274697306455","0.421609857406938","0.758412930748002","0.0849867458670148","0.64931491389536","0.58372127855813","0.00867280272879838","68","20","5","full","0.982513530071346"
-"aclew","(30,36]","can_voc_dur_chi_ph","1.41379503882833","0.881746127699062","0.701113207795584","1.25763730863296","0.628378543998398","0.61768399436304","0.453849323412743","0.174529220585654","0.498785401086321","0.191809534134593","0.40841606987584","0.706247407843966","0.437960653637508","0.63907438524466","0.63470327316799","0.01701927880495","69","21","5","full","0.990575686141166"
-"aclew","(30,36]","non_can_voc_chi_ph","1.15680015083028","0.00365845844365882","0.754849359387966","0.00484660733715812","0.611354931670441","0.611354782405342","0.472993701738767","0.138361229931673","0.621449082235194","0.181787746944376","0.510626505470957","0.78832041850709","0.426365743164688","0.71458134979228","0.611355026559909","2.44154566345319e-07","64","20","5","full","0.137134449308533"
-"aclew","(30,36]","avg_cry_voc_dur_chi","0.995399260845912","0.320353481357315","0.592844369915211","0.540366911813858","0.680142119840888","0.678411090499773","0.680142119840889",NA,"0.674347729541098",NA,"0.317132888802101","0.82118678115341",NA,"0.563145530748581","0.680956189958575","0.00254509945880233","73","21",NA,"no_exp","0.0963745367071039"
-"aclew","(30,36]","cry_voc_dur_chi_ph","1.80790174564504","0.83062895622038","0.709339989526739","1.17098848011454","0.617926874815508","0.608033984694814","0.617926843075334","3.17401740286907e-08","0.614558471126254","3.15671556316826e-08","0.379990411976949","0.783937797995641","0.000177671482325337","0.616433623334215","0.624043791880571","0.016009807185757","67","21","5","full","0.0218645735519183"
-"aclew","(30,36]","cry_voc_chi_ph","1.49857506075086","0.213797774373718","0.794810323531146","0.268992196054861","0.570394144465188","0.569823648878955","0.488167382416896","0.0822267620482927","0.52557060497706","0.0885269492219361","0.462522113372776","0.724962485220484","0.297534786574505","0.68008978331745","0.570823826723992","0.00100017784503629","63","20","5","full","0.301946826939627"
-"aclew","(30,36]","non_can_voc_dur_chi_ph","1.39191839527458","-0.55861010086956","0.769040503994607","-0.726372795669391","0.591984217167906","0.588453041262103","0.590751998788113","0.00123221837979198","0.742326086566889","0.00154837876053442","0.51270374023044","0.861583476261522","0.0393494442214172","0.716033337373645","0.594418024454891","0.00596498319278826","67","21","5","full","0.690142301362436"
-"aclew","(30,36]","avg_non_can_voc_dur_chi","1.14919253780957","-0.893614466532262","0.633693610002897","-1.41016802509367","0.671977932060196","0.659698979872434","0.671977932060195",NA,"0.696877745669642",NA,"0.340176765232386","0.834792037377958",NA,"0.583246744725066","0.677971830217558","0.0182728503451239","72","21",NA,"no_exp","0.516505984621756"
-"aclew","(30,36]","lp_n","1.62071174482937","-1.71673103490756","0.605410016316622","-2.83565020174647","0.617263063279793","0.570076701590985","0.617263063279792",NA,"0.534265758591575",NA,"0.331274058018841","0.730934852494786",NA,"0.575564121552795","0.646521194216359","0.0764444926253743","72","21",NA,"no_exp","0.563490525616926"
-"aclew","(30,36]","lp_dur","1.4903087400667","-1.3049273607221","0.619349853809428","-2.10693092554378","0.600786848759278","0.574756786250034","0.600786848759278",NA,"0.549958182514035",NA,"0.36543832400036","0.741591654830362",NA,"0.604514949360526","0.618083404605613","0.0433266183555793","74","21",NA,"no_exp","0.0761329957025791"
-"aclew","(30,36]","cp_n","1.54229769886167","0.518776252403005","0.595949856226656","0.870503192479504","0.735569576950099","0.731434795972254","0.516804163544665","0.218765413405433","0.614602725536136","0.260163963095469","0.314470490342899","0.783966023202624","0.510062705062298","0.560776684913789","0.737055992263418","0.00562119629116364","72","21","5","full","0.681349964653215"
-"aclew","(30,36]","cp_dur","1.40606250785618","0.843048603656228","0.66445827134427","1.26877584344108","0.63657910821875","0.626969993797427","0.481564473332347","0.155014634886403","0.550812514485644","0.17730543998192","0.415680114094496","0.742167443698283","0.42107652509006","0.644732591152716","0.642064919624023","0.0150949258265958","73","21","5","full","0.565976229020591"
-"aclew","(30,36]","avg_can_voc_dur_chi","1.28167893580779","-0.806012816606333","0.573673722028521","-1.40500215655034","0.811752075141132","0.800955173075593","0.811752075141133",NA,"0.934897579866246",NA,"0.216805764660103","0.966901018649917",NA,"0.465624059365604","0.814255911559892","0.0133007384842984","69","21",NA,"no_exp","0.389211609514178"
-"aclew","(30,36]","can_voc_chi_ph","1.68337954762225","0.672251100916553","0.682381237922893","0.985154725183864","0.610508127046806","0.604234772451052","0.369714606416311","0.240793520630495","0.397609192514952","0.25896114364742","0.418878633433466","0.630562599996981","0.508882249294884","0.647208338507366","0.614510400764306","0.0102756283132543","69","21","5","full","0.692721218865462"
-"aclew","(30,36]","peak_voc_chi","1.14118912216386","-0.627268107107276","0.839570388721547","-0.747129860144838","0.383035190847552","0.379908529419341","0.281412542587623","0.10162264825993","0.308552592171095","0.111423361786121","0.676466263343819","0.555475104906687","0.33380138074328","0.822475691643114","0.388071386261014","0.00816285684167242","62","20","5","full","0.987680833430155"
-"aclew","(30,36]","voc_fem_ph","1.55969470614515","0.0867272894736483","0.737770731789707","0.117553171651663","0.506907474557115","0.506827602661493","0.22295592420342","0.283951550353695","0.256439022409843","0.326594856111671","0.567144226527954","0.50639808689394","0.571484782047319","0.753089786498233","0.506985169672498","0.000157567011005649","71","21","5","full","0.37156773067175"
-"aclew","(30,36]","peak_voc_fem_ph","1.33252785002667","-0.712698417971128","0.892296020353274","-0.798724192100464","0.199805324628092","0.197607714235296","0.199805324628092",NA,"0.205116525497219",NA,"0.821465353033863","0.452897919510809",NA,"0.906347258523941","0.208606472135699","0.0109987579004029","60","20",NA,"no_exp","0.716172103916502"
-"aclew","(30,36]","peak_simple_CTC","1.19646413801485","-0.419062214619222","0.819997994331946","-0.51105273124556","0.328777517583857","0.327561276283467","0.123403865899279","0.205373651684578","0.132014311871582","0.219703500422119","0.718056711458497","0.363337738022878","0.468725399804746","0.847382269969402","0.331260559948992","0.0036992836655252","62","20","5","full","0.705028691069098"
-"aclew","(30,36]","peak_voc_mal_ph","1.16460466603016","-0.238348572588033","0.80979863909436","-0.294330665774632","0.391765224870696","0.391240760249377","0.328555575635789","0.0632096492349073","0.340676357292962","0.0655415236994336","0.630673234410892","0.583674872932665","0.256010788248139","0.794149377894922","0.392579481983784","0.00133872173440666","66","20","5","full","0.546529841871872"
-"aclew","(30,36]","voc_och_ph","1.40839548741108","0.240609470511174","0.784617133268913","0.306658445640531","0.594560400111325","0.593952510190683","0.30330130471086","0.291259095400464","0.392485223935888","0.376902075612872","0.524656668742268","0.626486411613124","0.613923509578247","0.724331877485913","0.594974929309965","0.00102241911928277","63","20","5","full","0.12686222080395"
-"aclew","(30,36]","peak_voc_och_ph","1.37771179213398","0.235730058644146","0.794863908007439","0.296566564753296","0.441547635733842","0.441045870347832","0.232172927567344","0.209374708166498","0.261755359010081","0.23605229290937","0.629607855791527","0.511620327010255","0.485852130703746","0.79347832723492","0.442182249178569","0.00113637883073719","63","20","5","full","0.118402282760928"
-"aclew","(30,36]","voc_chi_ph","1.0996674045075","0.119215181950634","0.816419426032832","0.14602198104218","0.41462015712832","0.414505319715299","0.12905840554998","0.28556175157834","0.159897279802081","0.353797546919263","0.725258026606435","0.399871579137704","0.594808832247187","0.851620823257883","0.414782289879549","0.000276970164250482","63","20","5","full","0.405694529055835"
-"aclew","(30,36]","peak_voc_chi_ph","1.14118912216386","-0.627268107107276","0.839570388721547","-0.747129860144838","0.383035190847552","0.379908529419341","0.281412542587623","0.10162264825993","0.308552592171095","0.111423361786121","0.676466263343819","0.555475104906687","0.33380138074328","0.822475691643114","0.388071386261014","0.00816285684167242","62","20","5","full","0.987680833430155"
-"aclew","(30,36]","voc_mal_ph","1.2793523450739","-0.276622169540023","0.680765454748245","-0.406339904016313","0.719615147767558","0.718417188757911","0.569301497795993","0.150313649971566","0.6417852460842","0.169451658234325","0.316083590303082","0.801115001784513","0.411645063415468","0.562213118223937","0.720081910537829","0.0016647217799182","67","21","5","full","0.744256244532605"
-"aclew","(30,36]","voc_dur_mal_ph","1.39047394481248","0.509928828964083","0.663988061949875","0.767978911347623","0.657200256579375","0.653064107941756","0.641462837486528","0.0157374190928469","0.657728384108362","0.0161364721774574","0.351492102327041","0.811004552458469","0.12702941461511","0.592867693779178","0.65935769744695","0.00629358950519354","67","20","5","full","0.446667956711327"
-"aclew","(30,36]","voc_dur_och_ph","1.43957954259706","1.01083684915875","0.87121868328755","1.1602561659311","0.364223393505924","0.356441193032546","0.266716268796474","0.0975071247094503","0.279481232685468","0.102173787644757","0.666204691964771","0.528659845917456","0.319646347773218","0.816213631327467","0.377807751612073","0.0213665585795276","59","19","5","full","0.0384879624126366"
-"aclew","(30,36]","voc_dur_chi_ph","1.20942835626815","0.309716147300272","0.817604816502083","0.378809103186689","0.541956660721629","0.540893356084644","0.459726615108038","0.0822300456135908","0.55255185983053","0.0988334439307176","0.550528707026832","0.743338321244459","0.314377868067581","0.741976217291924","0.542855329640923","0.00196197355627949","66","21","5","full","0.844221626613991"
-"aclew","(30,36]","avg_voc_dur_fem","1.29391531370373","0.957431213171272","0.707748224806484","1.3527850436263","0.539735110517181","0.528981474856818","0.364233101531826","0.175502008985355","0.397005404940979","0.19129300948255","0.501677766410462","0.630083649161744","0.43737056311845","0.708292147641397","0.548905388367019","0.0199239135102","72","21","5","full","0.246367897970332"
-"aclew","(30,36]","avg_voc_dur_mal","1.36917961039469","0.494641180967715","0.768746530662712","0.643438586371636","0.405741496722002","0.403518762408308","0.320318844219527","0.0854226525024744","0.341585916847875","0.0910941569664179","0.633713374501763","0.584453519835303","0.301818085883563","0.796061162538258","0.408996965480096","0.00547820307178794","68","20","5","full","0.282582103143442"
-"aclew","(30,36]","avg_voc_dur_och","1.45417791573291","0.0870238958357026","0.686428508116784","0.12677779959118","0.637886195611928","0.63778841665676","0.552387939400112","0.0854982562118161","0.652078904252431","0.100928360757913","0.427465474782966","0.807514027279051","0.317692242206059","0.653808438904674","0.637941702549825","0.000153285893065438","69","21","5","full","0.635707433846653"
-"aclew","(30,36]","avg_voc_dur_chi","1.24481083816558","0.35777125654112","0.497640765853115","0.718934784066146","0.819711832253229","0.817320647865393","0.819711832253229",NA,"0.866898396412829",NA,"0.190666423689735","0.931073786771397",NA,"0.436653665608952","0.820237751527619","0.00291710366222637","72","21",NA,"no_exp","0.096502010623752"
-"aclew","(30,36]","voc_dur_fem_ph","1.46094053748655","0.390776915036555","0.779672952502557","0.501206196498491","0.258101104922043","0.257183859612824","0.258101104922042",NA,"0.262849822279853",NA,"0.755548848889126","0.512688816222719",NA,"0.869223129518034","0.260737681319615","0.00355382170679033","72","21",NA,"no_exp","0.885073072917312"
-"aclew","(30,36]","simple_CTC_ph","1.3360986217063","-0.241647768753358","0.776239434557962","-0.311305710577518","0.56269464561884","0.562076740404067","0.251211152911109","0.311483492707731","0.308572433803725","0.382607293986344","0.537159182437029","0.555492964675274","0.618552579807363","0.732911442424683","0.563174858574524","0.00109811817045765","66","20","5","full","0.382266520982046"
-"lena","(0,6]","voc_fem_ph","1.24052296788298","-1.82071260666917","0.629659402946098","-2.89158328796534","0.479883159486207","0.448896142141132","0.341058910379575","0.138824249106631","0.399520804806503","0.162620515230091","0.609271572715172","0.632076581441287","0.40326234045605","0.78055850050792","0.513468146247822","0.0645720041066902","128","64","6","full","0.809338541194608"
-"lena","(0,6]","peak_lena_CVC","1.38267049250479","-1.03373778240225","0.616134309925111","-1.67777993491045","0.336004565529921","0.327009654993592","0.296448445215181","0.0395561203147395","0.284298072881475","0.0379348549727941","0.636780612173284","0.533196092335151","0.194768721751708","0.797985345838684","0.353779858315511","0.0267702033219183","127","63","6","full","5.64711840890698e-05"
-"lena","(0,6]","lp_dur","1.40988574622447","0.67008453903333","0.666327133083569","1.00563898085971","0.321628465865519","0.318419116127167","0.280212754799449","0.0414157110660708","0.306594309491915","0.0453149298842825","0.74223906130108","0.553709589488854","0.212873037006293","0.861532971685402","0.328397554228767","0.00997843810160051","125","63","6","full","0.0975943340727147"
-"lena","(0,6]","lp_n","1.51878098383244","-1.35215438864747","0.640223829119327","-2.11200259526024","0.464988989856438","0.448296231926403","0.371630997643636","0.0933579922128027","0.449342896084967","0.112880117265689","0.646887364777304","0.670330437981871","0.335976364147374","0.804293083880064","0.484195486089795","0.035899254163392","128","63","6","full","0.0404217532940301"
+"aclew","(18,24]","peak_simple_CTC","1.39325278437695","1.59811272358021","0.596164120075674","2.68065901614031","0.458334047571287","0.434919689431326","0.275665488604292","0.182668558966995","0.284460643978533","0.188496631121539","0.558947898880072","0.533348520180316","0.434161987190886","0.747628182240391","0.486005482127797","0.0510857926964711","93","52","5","full","0.241344236911978"
+"aclew","(18,24]","peak_voc_mal_ph","1.42905352762493","0.862951451111358","0.603647821280235","1.42956111277132","0.43016082552371","0.423192308133818","0.397541591634146","0.0326192338895648","0.39195141363375","0.0321605464779417","0.561826170342995","0.626060231634105","0.179333617813119","0.749550645615755","0.439392103597312","0.0161997954634936","95","53","5","full","0.861887689651679"
+"aclew","(18,24]","voc_och_ph","1.56265254716043","1.56164001905603","0.510666430056997","3.05804322967093","0.659942467935235","0.62946447923231","0.428303749041329","0.231638718893904","0.45989373961245","0.248723474659278","0.365138830688953","0.678154657591062","0.498721840968769","0.604267184851993","0.675647275739226","0.0461827965069153","95","52","5","full","0.97212124127513"
+"aclew","(18,24]","peak_voc_och_ph","1.32892311526851","0.721143954806554","0.640465534051759","1.1259684033962","0.337412516744605","0.333675159058692","0.32650663578083","0.0109058809637755","0.328031059971995","0.0109567993432057","0.665681032597271","0.572739958420918","0.104674731158985","0.815892782537799","0.344751682603139","0.0110765235444473","95","52","5","full","0.789081473729563"
+"aclew","(18,24]","voc_chi_ph","1.52004428133789","1.94082898187574","0.534575538958671","3.63059818572393","0.519392500403955","0.476200651268455","0.519392500403956",NA,"0.464794908047651",NA,"0.430086915787231","0.681758687548352",NA,"0.655810121748079","0.559359050940972","0.0831583996725169","97","52",NA,"no_exp","0.215552602583747"
+"aclew","(18,24]","peak_voc_chi_ph","1.27288574642999","1.64853305183528","0.665897059436997","2.47565750362238","0.19490889190532","0.183927422121197","0.126122042022853","0.0687868498824669","0.122847641520672","0.0670009947521017","0.784189204776547","0.35049627889704","0.258845503635087","0.885544580908577","0.240268975740298","0.0563415536191016","94","52","5","full","0.116521589523565"
+"aclew","(18,24]","voc_mal_ph","1.30193502620492","1.28857148646641","0.618781745404","2.08243293542072","0.355653529135575","0.342954629072616","0.355653529135576",NA,"0.338739261632634",NA,"0.613702465730364","0.582013111220558",NA,"0.783391642622235","0.378660446736857","0.0357058176642408","97","53",NA,"no_exp","0.00292313259510869"
+"aclew","(18,24]","voc_dur_mal_ph","1.37581330318451","0.916116372207857","0.642323857487654","1.42625306771431","0.357166919253313","0.350772049801916","0.348541599930347","0.00862531932296727","0.338331853219498","0.00837265988258688","0.624002723242475","0.5816630065764","0.0915022397681438","0.789938430032667","0.36867647797451","0.0179044281725935","94","52","5","full","0.0186225471948072"
+"aclew","(18,24]","voc_dur_och_ph","1.47574526043796","1.41075437532628","0.525074691524199","2.68676894563536","0.633431761342041","0.608832941946453","0.484476307333486","0.148955454008556","0.508765989944009","0.156423478029974","0.384946487578131","0.713278339741233","0.395504080927079","0.620440559262634","0.647667147770726","0.0388342058242723","95","52","5","full","0.355343351071416"
+"aclew","(18,24]","voc_dur_chi_ph","1.48695551443172","1.6287849291639","0.472797080345848","3.44499785821955","0.655051191811017","0.615776024103815","0.655051191811018",NA,"0.584344042599074",NA,"0.307714547483848","0.764423993997489",NA,"0.554720242540191","0.67573342620947","0.0599574021056553","96","52",NA,"no_exp","0.883238826408768"
+"aclew","(18,24]","avg_voc_dur_fem","1.33411816352253","0.463779516739972","0.551279308554802","0.841278657738462","0.538366673543761","0.535797792441477","0.53836667354376",NA,"0.525486304977334",NA,"0.450588795508284","0.724904341949566",NA,"0.671259112048607","0.540569412284463","0.00477161984298539","96","52",NA,"no_exp","0.297031943168708"
+"aclew","(18,24]","avg_voc_dur_mal","1.32220190488795","-0.990522971757333","0.609606420895037","-1.62485652677842","0.466108659474901","0.457115604053189","0.340129253271709","0.125979406203191","0.360975908528578","0.133700733390786","0.56661375006058","0.600812706697002","0.365651108832977","0.752737504087966","0.476409507392901","0.0192939033397124","96","53","5","full","0.113185248004508"
+"aclew","(18,24]","avg_voc_dur_och","1.60444418159038","0.393764954051004","0.527590079943574","0.746346394710676","0.596259557609505","0.594284467428336","0.596259553138062","4.47144286117755e-09","0.598034889758336","4.48475638582489e-09","0.404942561817662","0.773327155709882","6.69683237495526e-05","0.636350973769713","0.597596934551023","0.00331246712268803","98","53","5","full","0.647456112072415"
+"aclew","(18,24]","avg_voc_dur_chi","1.29498812774512","0.833774568892424","0.466934923710641","1.78563334322175","0.716807296214301","0.706206934186996","0.655527102020492","0.0612801941938075","0.66061769670505","0.0617560747941216","0.28539187948439","0.812783917597445","0.248507695643659","0.53422081528558","0.720995235147783","0.0147883009607866","96","53","5","full","0.555843147093718"
+"aclew","(18,24]","voc_dur_fem_ph","1.56169060724043","1.33133515570687","0.541045343031215","2.46067205430148","0.612856277754272","0.591381796919855","0.481388323689319","0.131467954064952","0.5015016231441","0.136960929691263","0.4033193069751","0.708167793071741","0.370082328261243","0.63507425311935","0.626421791799417","0.0350399948795612","95","53","5","full","0.844433303609517"
+"aclew","(18,24]","simple_CTC_ph","1.64635541891938","2.53889216796148","0.50978156839025","4.98035300879669","0.524618012556523","0.448670459224706","0.524618012556522",NA,"0.430475421900829",NA,"0.390074791011369","0.656106258086927",NA,"0.624559677702115","0.593437797581458","0.144767338356751","97","52",NA,"no_exp","0.71182673248941"
+"aclew","(24,30]","wc_adu_ph","1.65123876441033","0.397843527284619","0.606318417445594","0.656162695767556","0.235685711697158","0.23478369887888","0.201932816296537","0.033752895400621","0.20732883471225","0.0346548352066697","0.784738180024423","0.455333761884894","0.186158091972038","0.88585449145129","0.23861088386936","0.00382718499048018","95","40","3","full","0.162753571785205"
+"aclew","(24,30]","sc_fem_ph","1.31802637896172","-0.327281123745819","0.554978286764263","-0.589718789998062","0.394046600329117","0.393034396082828","0.394046600329117",NA,"0.408436818187259",NA,"0.628082258099971","0.639090618134282",NA,"0.792516408726009","0.395603138575323","0.00256874249249532","95","40",NA,"no_exp","0.492489224979329"
+"aclew","(24,30]","sc_mal_ph","1.25989810951226","1.69170154481652","0.583765720887393","2.8979117551557","0.187018146380913","0.173465909498982","0.175528672579219","0.0114894738016939","0.165701467711114","0.0108462204162676","0.76746598938921","0.407064451544365","0.104145189117249","0.87605136230087","0.245930732534541","0.0724648230355595","95","40","3","full","0.0360175963947917"
+"aclew","(24,30]","pc_fem_ph","1.37842686546933","-0.338681492795453","0.551864603724546","-0.613703960191837","0.404618584657591","0.403509806397966","0.404618584657591",NA,"0.420931211178907",NA,"0.619384847301504","0.64879211707519",NA,"0.787010068106822","0.406250111222479","0.00274030482451267","95","40",NA,"no_exp","0.413943077611094"
+"aclew","(24,30]","pc_mal_ph","1.2747481069321","1.68925250519102","0.582909962806067","2.8979647166419","0.18625421668513","0.172736807499413","0.184664600513892","0.00158961617123744","0.173536911537334","0.0014938276210962","0.76471034307611","0.416577617662464","0.0386500662495707","0.874477182707536","0.245311858020651","0.0725750505212378","95","40","3","full","0.0347219455465107"
+"aclew","(24,30]","sc_adu_ph","1.60737875029223","0.416526719738229","0.608651800765755","0.684343197891126","0.236445023681031","0.235465104702567","0.173305381665747","0.0631396420152839","0.180055813204933","0.0655989991727839","0.7932962661999","0.424329840106648","0.25612301570297","0.890671806110365","0.239609488725576","0.00414438402300912","95","40","3","full","0.187927835514126"
+"aclew","(24,30]","pc_adu_ph","1.62623966970251","0.412039736215335","0.606888362246797","0.678938272419491","0.235813189567202","0.234847958994272","0.194960895362693","0.0408522942045093","0.200703253335303","0.0420555534370251","0.786695089415049","0.44799916666809","0.205074507038357","0.886958335783056","0.238941159101957","0.00409320010768574","95","40","3","full","0.17077829021759"
+"aclew","(24,30]","wc_fem_ph","1.39469823316109","-0.358929590952343","0.549540754637391","-0.653144626533075","0.411540641289268","0.410276352414169","0.411540641289267",NA,"0.428779888690704",NA,"0.613109649478431","0.654812865397973",NA,"0.783013186018237","0.41334843995123","0.00307208753706073","95","40",NA,"no_exp","0.460972363407221"
+"aclew","(24,30]","wc_mal_ph","1.25595085672983","1.68131035606139","0.582226050631108","2.88772780647468","0.189745079545611","0.176102826296403","0.18974507954561",NA,"0.178432581595813",NA,"0.761947964888514","0.422412809459909",NA,"0.872896308211069","0.248000623498192","0.0718977972017884","95","40",NA,"no_exp","0.0268300843567431"
+"aclew","(24,30]","can_voc_dur_chi_ph","1.40656140367058","1.02288395262301","0.517645225021195","1.97603281780707","0.504131244704114","0.491608532854011","0.504131244704113",NA,"0.516974531835492",NA,"0.508501546599037","0.719009410116093",NA,"0.7130929438713","0.516448714813874","0.0248401819598638","92","39",NA,"no_exp","0.880824515756528"
+"aclew","(24,30]","non_can_voc_chi_ph","1.30454757404131","-0.941664537689625","0.575697542047688","-1.63569317030647","0.292693054728653","0.286208717728625","0.28574297785867","0.00695007686998335","0.283326375974344","0.00689129828166571","0.701325068447815","0.532284112081456","0.0830138439157332","0.837451531999205","0.308362769200873","0.0221540514722474","95","40","3","full","0.239284509858941"
+"aclew","(24,30]","avg_cry_voc_dur_chi","1.48814077941045","-0.422483097506332","0.478215173352184","-0.883458160779002","0.703624640223718","0.701592049503107","0.286606437457476","0.417018202766243","0.450482370456856","0.655461022342416","0.465836970730403","0.67117983466196","0.809605473266094","0.682522505658533","0.704480792455549","0.00288874295244167","96","40","3","full","0.32334116235608"
+"aclew","(24,30]","cry_voc_dur_chi_ph","1.41057778532332","-0.602344736709636","0.491531670487814","-1.22544440750246","0.563624770237379","0.558392199208203","0.56362477023738",NA,"0.565671563249007",NA,"0.437959918402812","0.752111403482893",NA,"0.66178540207745","0.567675983927197","0.00928378471899429","88","39",NA,"no_exp","0.169621994219758"
+"aclew","(24,30]","cry_voc_chi_ph","1.42172575423797","-0.535030787764086","0.533734547655102","-1.00242862320732","0.489613534701213","0.486142016542599","0.489613534701213",NA,"0.502025345302389",NA,"0.523324874251387","0.708537469229672",NA,"0.723411967174574","0.493232339649643","0.00709032310704433","88","39",NA,"no_exp","0.0645324311819922"
+"aclew","(24,30]","non_can_voc_dur_chi_ph","1.25501309260218","-0.731682021726232","0.582357654985688","-1.25641350373288","0.285549870815572","0.281695495610578","0.285549870815573",NA,"0.284303094024627",NA,"0.71133067464988","0.533200800847698",NA,"0.843404217827893","0.295193576327566","0.0134980807169881","94","40",NA,"no_exp","0.849134738033262"
+"aclew","(24,30]","avg_non_can_voc_dur_chi","1.37353611479758","0.508094459683012","0.503618225517327","1.00888814967148","0.551556716434504","0.548460375853502","0.330213559544947","0.221343156889558","0.382544605778176","0.256420816912237","0.519510947284655","0.618501904425666","0.506380111094657","0.720771078279821","0.554074196678708","0.00561382082520655","95","39","3","full","0.364241731629496"
+"aclew","(24,30]","lp_n","1.36558221141142","0.766633594922039","0.444223007664206","1.72578543140554","0.626419717357997","0.6174025480683","0.626419717357997",NA,"0.640870321510043",NA,"0.382198243785113","0.800543766142766",NA,"0.618221840268615","0.631797320518516","0.0143947724502158","94","40",NA,"no_exp","0.476215793024226"
+"aclew","(24,30]","lp_dur","1.48468052571573","0.683999408473832","0.447307524087298","1.52914800588139","0.617849513694","0.610948681713324","0.617849513694001",NA,"0.644611445834509",NA,"0.398703198827917","0.80287698051103",NA,"0.63142948840541","0.622117796243199","0.0111691145298751","96","40",NA,"no_exp","0.564648388366049"
+"aclew","(24,30]","cp_n","1.38730088170485","0.156478416455709","0.614507544318327","0.25464035047656","0.292244148160391","0.292079138782865","0.191871906118737","0.100372242041654","0.208188375393399","0.108907731350277","0.767942237872363","0.456276643488792","0.330011713959182","0.876323135534126","0.292643767291476","0.00056462850861084","91","39","3","full","0.0298830828177574"
+"aclew","(24,30]","cp_dur","1.25557131369927","0.550213054894871","0.558179726127221","0.985727408468192","0.406304911058834","0.403365595317352","0.364544758056434","0.0417601530023996","0.381795954429381","0.0437363509426733","0.621790268857023","0.617896394575483","0.209132376600739","0.788536789792983","0.410599856241794","0.00723426092444229","92","39","3","full","0.0625888456730733"
+"aclew","(24,30]","avg_can_voc_dur_chi","1.64462763090678","0.56974440115287","0.358782183021171","1.58799524646198","0.769793608960571","0.764039611401128","0.68522333175726","0.0845702772033102","0.743941949887527","0.091817330218182","0.2499333917706","0.862520695338684","0.303013745922824","0.499933387333353","0.77151433903262","0.00747472763149214","96","40","3","full","0.644019671303908"
+"aclew","(24,30]","can_voc_chi_ph","1.35067132847877","0.782526452903531","0.552310578184374","1.41682322195594","0.45199891276136","0.445335012116674","0.451998912761361",NA,"0.464423640985588",NA,"0.563064761914148","0.681486346881277",NA,"0.750376413484691","0.460078190599064","0.01474317848239","89","39",NA,"no_exp","0.873142348482324"
+"aclew","(24,30]","peak_voc_chi","1.09627677782787","0.553270014414413","0.533106291118703","1.03782308262279","0.407209699993773","0.404071419163911","0.391965197504327","0.0152445024894472","0.398121604034921","0.0154839404683271","0.602100968650964","0.630968782139752","0.124434482633742","0.775951653552567","0.41177821207653","0.00770679291261946","95","40","3","full","0.856858168924228"
+"aclew","(24,30]","voc_fem_ph","1.60258359307937","-0.140262026395429","0.562905273717532","-0.24917518620693","0.35411948910367","0.353950508992038","0.325972222235031","0.0281472668686396","0.33835167612314","0.0292162162100513","0.670409128540642","0.58168004617929","0.170927517416159","0.818785154079287","0.354427692871581","0.000477183879542996","96","40","3","full","0.104986746340348"
+"aclew","(24,30]","peak_voc_fem_ph","1.33870288547755","-0.675401248744569","0.599336931640266","-1.12691411639882","0.219836749086534","0.217340933070766","0.219836749086534",NA,"0.222203524016887",NA,"0.788562532796579","0.471384687932147",NA,"0.888010435071897","0.228693975845182","0.011353042774416","95","40",NA,"no_exp","0.809856824889163"
+"aclew","(24,30]","peak_simple_CTC","1.33627168332946","0.581091823804424","0.594893957539116","0.976799001637558","0.22862907074335","0.226710801596283","0.22862907074335",NA,"0.229818096960223",NA,"0.775382581208162","0.479393467790523",NA,"0.880558107797641","0.235101113208144","0.00839031161186092","96","40",NA,"no_exp","0.130724787204876"
+"aclew","(24,30]","peak_voc_mal_ph","1.27673353069189","0.713278767131734","0.620517734789127","1.14948973597689","0.125278698304851","0.123691995840044","0.12527869830485",NA,"0.125153355478793",NA,"0.87384613264047","0.353770201513346",NA,"0.934797375178424","0.136357376996429","0.0126653811563847","96","40",NA,"no_exp","0.9137000180696"
+"aclew","(24,30]","voc_och_ph","1.37264355493543","0.471300499697709","0.461820338264412","1.0205278127614","0.56997684804167","0.566790192109722","0.567149792808312","0.00282705523335846","0.57120309866077","0.0028472596302707","0.433096441203301","0.755779795086353","0.0533597191734617","0.658100631517172","0.572381043637984","0.00559085152826155","94","40","3","full","0.0525601558363814"
+"aclew","(24,30]","peak_voc_och_ph","1.22569977667272","0.127488119694817","0.554573101925054","0.229885148147785","0.367940846019974","0.367796115756413","0.367940846019974",NA,"0.386603125840655",NA,"0.664117744164812","0.621774175919727",NA,"0.814934196217592","0.368189467745263","0.000393351988850337","97","40",NA,"no_exp","0.88752637865784"
+"aclew","(24,30]","voc_chi_ph","1.48623035771102","-0.250194251771284","0.511851191000539","-0.48880271487152","0.466396884621824","0.465657598312733","0.466396884621824",NA,"0.470428191572767",NA,"0.538215320174125","0.685877679745278",NA,"0.73363159703909","0.467242699614794","0.0015851013020606","95","40",NA,"no_exp","0.565501358432789"
+"aclew","(24,30]","peak_voc_chi_ph","1.09627677782787","0.553270014414413","0.533106291118703","1.03782308262279","0.407209699993773","0.404071419163911","0.391965197504327","0.0152445024894472","0.398121604034921","0.0154839404683271","0.602100968650964","0.630968782139752","0.124434482633742","0.775951653552567","0.41177821207653","0.00770679291261946","95","40","3","full","0.856858168924228"
+"aclew","(24,30]","voc_mal_ph","1.40275586086909","1.27546407281642","0.609090681649318","2.09404627462478","0.128042642396904","0.122802253880607","0.122030729956952","0.00601191243995154","0.118674680811886","0.00584657479416812","0.847977072100005","0.344491916903555","0.0764628981543867","0.920856705519379","0.163729154623976","0.0409269007433693","95","40","3","full","0.478942448929335"
+"aclew","(24,30]","voc_dur_mal_ph","1.28042294520664","1.15679544316666","0.604125451295787","1.91482653261082","0.233823712450519","0.226503913018338","0.139843512218224","0.0939802002322943","0.146701217441016","0.0985888409890163","0.803748363975226","0.383015949329811","0.313988600094042","0.896520141421946","0.257808691115768","0.0313047780974305","95","40","3","full","0.105489273303838"
+"aclew","(24,30]","voc_dur_och_ph","1.37718736135975","0.292007216902133","0.451615104768141","0.646584256857506","0.591137182234941","0.589866543470213","0.591137182234942",NA,"0.596508910467493",NA,"0.412578198910812","0.772339893095969",NA,"0.642322503817834","0.592016025524318","0.00214948205410482","94","40",NA,"no_exp","0.103139927673715"
+"aclew","(24,30]","voc_dur_chi_ph","1.54235388990628","0.384783656121203","0.454805051582315","0.846040858127013","0.629653952005203","0.627394215433597","0.629653952005202",NA,"0.656683388851092",NA,"0.38624405845518","0.810360036558499",NA,"0.621485364634743","0.630983070175809","0.00358885474221195","93","40",NA,"no_exp","0.616311639172441"
+"aclew","(24,30]","avg_voc_dur_fem","1.19668555450744","-1.02040652379566","0.48533969864824","-2.10245839488853","0.580942652642566","0.567290625033835","0.555870142082378","0.0250725105601886","0.610305928987617","0.0275278355339691","0.460095199069288","0.781220794006161","0.165915145583425","0.678303176366798","0.590790410333866","0.0234997853000313","94","40","3","full","0.223985143467626"
+"aclew","(24,30]","avg_voc_dur_mal","1.34925148174372","0.122154707965371","0.579201330807566","0.210901980827727","0.313167029334328","0.31305234331865","0.313167029334328",NA,"0.323150382920314",NA,"0.708728303693684","0.568463176397833",NA,"0.841860026188252","0.313418556888201","0.000366213569550974","95","40",NA,"no_exp","0.611292918490063"
+"aclew","(24,30]","avg_voc_dur_och","1.26214613737006","0.214339029862911","0.474418721059525","0.45179294228572","0.557026611950093","0.556388411127505","0.557026611950094",NA,"0.563379854790285",NA,"0.448025781320977","0.750586340663275",NA,"0.669347280057951","0.557534138834039","0.00114572770653425","95","40",NA,"no_exp","0.598568469733772"
+"aclew","(24,30]","avg_voc_dur_chi","1.29986549202782","0.150359826195734","0.402717010172212","0.373363484525862","0.709644075946471","0.709255116730592","0.668912559904128","0.0407315160423422","0.693438321976201","0.0422249421359298","0.30100186006432","0.832729441040847","0.205487085083053","0.548636364146891","0.709803221377784","0.000548104647191834","93","39","3","full","0.613652405210304"
+"aclew","(24,30]","voc_dur_fem_ph","1.19337322606655","-0.588497488871943","0.518297823241694","-1.13544271745381","0.48248920504631","0.478564941028237","0.482489205046309",NA,"0.513286761414426",NA,"0.550543799033368","0.71644034044324",NA,"0.741986387363925","0.486698312670606","0.00813337164236852","96","40",NA,"no_exp","0.672058337575942"
+"aclew","(24,30]","simple_CTC_ph","1.46500446310646","-0.094671337538177","0.479876022654349","-0.197282908644861","0.547140805043434","0.547019170437266","0.547140805043433",NA,"0.556908256211812",NA,"0.460943549170539","0.746262859997609",NA,"0.678928235655683","0.547241479950734","0.000222309513468256","95","40",NA,"no_exp","0.801446748645344"
+"aclew","(30,36]","wc_adu_ph","1.4207037423484","-0.0753944142478627","0.783918996352595","-0.0961762817314756","0.41660083850689","0.41654504541334","0.278394032403451","0.138206806103439","0.295063893366627","0.146482444133532","0.618332320168113","0.543197839987078","0.382730249828168","0.786341096578395","0.416678969996282","0.00013392458294182","67","21","5","full","0.893946514333439"
+"aclew","(30,36]","sc_fem_ph","1.47020785924377","0.198559776985182","0.786344908453217","0.252509776372508","0.308076959912636","0.307791889567565","0.276517022192978","0.0315599377196581","0.286331934154928","0.0326801508905743","0.716482698907077","0.535099929129998","0.180776521956183","0.846453010454259","0.308717211425948","0.000925321858382723","69","21","5","full","0.635734774590945"
+"aclew","(30,36]","sc_mal_ph","1.44308069549247","0.581152333885786","0.698740960120963","0.831713563471618","0.582937766429696","0.578086954113148","0.57274298332946","0.0101947831002356","0.572197718168872","0.010185077420365","0.416665180245545","0.756437517689909","0.100921144565274","0.645496072990026","0.58640827518016","0.00832132106701183","68","20","5","full","0.994462262134814"
+"aclew","(30,36]","pc_fem_ph","1.44850882241312","0.200966533409617","0.787795108658903","0.255100001511473","0.301880178071087","0.30159417078181","0.27086822464758","0.0310119534235063","0.280615475132212","0.0321279251415989","0.72324181171373","0.529731512308086","0.179242643200771","0.850436247883243","0.302541590685641","0.000947419903831102","69","21","5","full","0.627713089044219"
+"aclew","(30,36]","pc_mal_ph","1.39082716435115","0.577192668680704","0.699685362312247","0.824931747569019","0.582872602163596","0.578099940172266","0.572603721536727","0.0102688806268686","0.573542625282701","0.0102857186077005","0.417811365581717","0.757325970294629","0.101418531875099","0.646383296180924","0.58628811366612","0.00818817349385457","68","20","5","full","0.987047744273898"
+"aclew","(30,36]","sc_adu_ph","1.46307461519107","-0.122721389989173","0.778868948937486","-0.157563592895296","0.432710594605631","0.432557862137726","0.280298179717827","0.152412414887804","0.29858633139075","0.162356615606876","0.604302398838488","0.546430536656536","0.402935001714763","0.777368894951739","0.432910828923863","0.000352966786137283","67","21","5","full","0.920124837026202"
+"aclew","(30,36]","pc_adu_ph","1.42435116495352","-0.120570011026067","0.781212355913675","-0.15433705075626","0.422323136502507","0.422179247415949","0.269069022432585","0.153254114069922","0.286620732292427","0.163251072176299","0.615359449954996","0.535369715516695","0.404043403827236","0.784448500511663","0.422519955925906","0.000340708509957381","67","21","5","full","0.909849447873218"
+"aclew","(30,36]","wc_fem_ph","1.46859394178297","0.244547540169879","0.788371676422696","0.310193208969068","0.292043748925187","0.291631626978556","0.276711889370155","0.0153318595550316","0.284854790709908","0.0157830357585396","0.728789536982712","0.533717894313005","0.125630552647593","0.853691710737964","0.29304279208018","0.00141116510162454","69","21","5","full","0.618527919971378"
+"aclew","(30,36]","wc_mal_ph","1.3893765529484","0.594879727057733","0.702030397205742","0.847370326734432","0.580079389953829","0.575048475837747","0.572885582068256","0.00719380788557283","0.575190173537739","0.00722274697708625","0.42160985740387","0.758412930755891","0.0849867458906755","0.649314913892997","0.583721278566495","0.00867280272874752","68","20","5","full","0.982513530071237"
+"aclew","(30,36]","can_voc_dur_chi_ph","1.41379503882833","0.881746127700448","0.70111320779581","1.25763730863454","0.628378543993987","0.617683994358584","0.45384932341253","0.174529220581457","0.498785401081905","0.191809534128372","0.408416069877264","0.706247407840839","0.437960653630406","0.639074385245774","0.634703273163726","0.0170192788051428","69","21","5","full","0.990575686142184"
+"aclew","(30,36]","non_can_voc_chi_ph","1.15680015083028","0.00365845851139678","0.754849359386402","0.00484660742690521","0.611354931645","0.611354782379896","0.472993701817733","0.138361229827268","0.621449082296658","0.181787746794833","0.510626505469638","0.788320418546074","0.426365742989318","0.714581349791357","0.611355026534472","2.44154575403194e-07","64","20","5","full","0.137134449306813"
+"aclew","(30,36]","avg_cry_voc_dur_chi","0.995399260845912","0.320353481360918","0.592844369914425","0.540366911820653","0.68014211984648","0.67841109050533","0.68014211984648",NA,"0.67434772955428",NA,"0.317132888800149","0.821186781161436",NA,"0.563145530746848","0.680956189964161","0.00254509945883069","73","21",NA,"no_exp","0.0963745367099144"
+"aclew","(30,36]","cry_voc_dur_chi_ph","1.80790174564504","0.830628956214401","0.709339989526204","1.170988480107","0.61792687482126","0.608033984700703","0.617926843081053","3.17402066436946e-08","0.614558471137534","3.15671880691866e-08","0.379990411974685","0.783937798002835","0.000177671573610374","0.616433623332379","0.62404379188609","0.0160098071853869","67","21","5","full","0.0218645735522304"
+"aclew","(30,36]","cry_voc_chi_ph","1.49857506075086","0.213797774395695","0.794810323531076","0.268992196082535","0.570394144457277","0.569823648870927","0.488167382424317","0.0822267620329593","0.525570604977506","0.088526949204157","0.462522113374654","0.724962485220791","0.297534786544627","0.68008978331883","0.570823826716183","0.00100017784525605","63","20","5","full","0.301946826935665"
+"aclew","(30,36]","non_can_voc_dur_chi_ph","1.39191839527458","-0.558610100793139","0.769040504007001","-0.726372795558313","0.591984217096736","0.588453041191971","0.59075199868159","0.0012322184151462","0.742326086359491","0.00154837880480636","0.512703740269077","0.861583476141164","0.0393494447839657","0.716033337400625","0.594418024383724","0.00596498319175333","67","21","5","full","0.690142301246072"
+"aclew","(30,36]","avg_non_can_voc_dur_chi","1.14919253780957","-0.89361446653233","0.633693610002429","-1.41016802509482","0.671977932063775","0.65969897987603","0.671977932063776",NA,"0.696877745678232",NA,"0.340176765231054","0.834792037383103",NA,"0.583246744723924","0.677971830221031","0.0182728503450011","72","21",NA,"no_exp","0.516505984614543"
+"aclew","(30,36]","lp_n","1.62071174482937","-1.71673103490725","0.60541001631658","-2.83565020174615","0.617263063280185","0.570076701591391","0.617263063280185",NA,"0.534265758592258",NA,"0.331274058018714","0.730934852495253",NA,"0.575564121552685","0.646521194216694","0.0764444926253031","72","21",NA,"no_exp","0.563490525617877"
+"aclew","(30,36]","lp_dur","1.4903087400667","-1.30492730828797","0.619349842263339","-2.10693088016181","0.600786993314543","0.574756932207129","0.600786993314544",NA,"0.54995843992019",NA,"0.365438274789075","0.741591828380134",NA,"0.604514908657409","0.618083537804574","0.0433266055974452","74","21",NA,"no_exp","0.0761329923362708"
+"aclew","(30,36]","cp_n","1.54229769886167","0.518776244086128","0.595949857990721","0.87050317594707","0.735569576704258","0.731434795909398","0.516804120342127","0.21876545636213","0.614602681598275","0.260164017330641","0.314470494442152","0.783965995179813","0.510062758227496","0.560776688568767","0.737055991953674","0.00562119604427577","72","21","5","full","0.681349938109229"
+"aclew","(30,36]","cp_dur","1.40606250785618","0.843048603652844","0.664458271343746","1.26877584343699","0.636579108230402","0.626969993809232","0.481564473319967","0.155014634910435","0.550812514486153","0.17730544001413","0.415680114092238","0.742167443698626","0.421076525128308","0.644732591150965","0.642064919635312","0.0150949258260805","73","21","5","full","0.565976229019072"
+"aclew","(30,36]","avg_can_voc_dur_chi","1.28167893580779","-0.806012816606358","0.573673722028398","-1.40500215655069","0.81175207514172","0.800955173076195","0.811752075141721",NA,"0.934897579868863",NA,"0.216805764659876","0.96690101865127",NA,"0.465624059365359","0.814255911560467","0.013300738484272","69","21",NA,"no_exp","0.389211609515335"
+"aclew","(30,36]","can_voc_chi_ph","1.68337954762225","0.672251100919726","0.682381237921452","0.985154725190594","0.61050812707602","0.604234772480216","0.369714606428641","0.240793520647379","0.39760919254796","0.25896114367844","0.418878633422851","0.630562600023154","0.508882249325362","0.647208338499166","0.614510400793061","0.0102756283128452","69","21","5","full","0.692721218921745"
+"aclew","(30,36]","peak_voc_chi","1.14118912216386","-0.627268107064911","0.839570388720942","-0.747129860094915","0.383035190794497","0.379908529366989","0.281412542555026","0.101622648239471","0.308552592120557","0.111423361758345","0.67646626336955","0.555475104861197","0.333801380701675","0.822475691658757","0.388071386207956","0.00816285684096707","62","20","5","full","0.987680833433325"
+"aclew","(30,36]","voc_fem_ph","1.55969470614516","0.0867272894607963","0.737770731788981","0.117553171634358","0.50690747456197","0.506827602666372","0.222955924191699","0.28395155037027","0.256439022399842","0.326594856135169","0.567144226530067","0.506398086884066","0.571484782067877","0.753089786499636","0.506985169677329","0.000157567010956819","71","21","5","full","0.371567730655565"
+"aclew","(30,36]","peak_voc_fem_ph","1.33252785002668","-0.71269841797114","0.892296020353302","-0.798724192100452","0.199805324628303","0.197607714235505","0.199805324628304",NA,"0.205116525497456",NA,"0.821465353033723","0.45289791951107",NA,"0.906347258523864","0.208606472135908","0.0109987579004023","60","20",NA,"no_exp","0.716172103916841"
+"aclew","(30,36]","peak_simple_CTC","1.19646413801485","-0.419062214624134","0.81999799433226","-0.511052731251354","0.328777517589756","0.327561276289322","0.123403865902371","0.205373651687385","0.132014311875529","0.219703500426187","0.718056711455668","0.36333773802831","0.468725399809086","0.847382269967733","0.331260559954915","0.00369928366559372","62","20","5","full","0.705028691056667"
+"aclew","(30,36]","peak_voc_mal_ph","1.16460466603016","-0.238348572566644","0.809798639095353","-0.294330665747857","0.391765224884567","0.391240760263329","0.328555575656144","0.0632096492284239","0.340676357317386","0.0655415236933492","0.63067323440265","0.583674872953587","0.256010788236256","0.794149377889733","0.392579481997483","0.00133872173415369","66","20","5","full","0.54652984183793"
+"aclew","(30,36]","voc_och_ph","1.40839548741108","0.240609470479405","0.784617133267153","0.306658445600729","0.594560400135905","0.593952510215435","0.303301304676671","0.291259095459234","0.392485223915056","0.376902075711404","0.524656668741753","0.626486411596498","0.613923509658495","0.724331877485558","0.594974929334387","0.00102241911895213","63","20","5","full","0.126862220827497"
+"aclew","(30,36]","peak_voc_och_ph","1.37771179213398","0.235730058644402","0.794863908007419","0.296566564753625","0.44154763573365","0.441045870347639","0.232172927567261","0.209374708166388","0.261755359009933","0.236052292909197","0.62960785579161","0.511620327010111","0.485852130703568","0.793478327234972","0.442182249178379","0.0011363788307399","63","20","5","full","0.118402282760943"
+"aclew","(30,36]","voc_chi_ph","1.0996674045075","0.119215181942388","0.816419426032933","0.146021981032063","0.414620157133542","0.414505319720536","0.129058405551458","0.285561751582084","0.159897279804861","0.353797546926001","0.725258026604267","0.39987157914118","0.594808832252851","0.851620823256611","0.414782289884746","0.000276970164210538","63","20","5","full","0.405694529056109"
+"aclew","(30,36]","peak_voc_chi_ph","1.14118912216386","-0.627268107064911","0.839570388720942","-0.747129860094915","0.383035190794497","0.379908529366989","0.281412542555026","0.101622648239471","0.308552592120557","0.111423361758345","0.67646626336955","0.555475104861197","0.333801380701675","0.822475691658757","0.388071386207956","0.00816285684096707","62","20","5","full","0.987680833433325"
+"aclew","(30,36]","voc_mal_ph","1.2793523450739","-0.276622169503427","0.680765454749141","-0.40633990396202","0.71961514775146","0.718417188742093","0.569301497843051","0.15031364990841","0.641785246103611","0.169451658154246","0.316083590304663","0.801115001796628","0.411645063318202","0.562213118225342","0.720081910521659","0.00166472177956556","67","21","5","full","0.744256244568593"
+"aclew","(30,36]","voc_dur_mal_ph","1.39047394481248","0.509928829012682","0.66398806194559","0.767978911425771","0.657200256587715","0.65306410794929","0.641462837549628","0.0157374190380858","0.657728384177822","0.0161364721214246","0.351492102321033","0.811004552501293","0.127029414394559","0.592867693774111","0.65935769745563","0.00629358950634036","67","20","5","full","0.446667956767976"
+"aclew","(30,36]","voc_dur_och_ph","1.43957954259706","1.01083684916459","0.871218683287553","1.16025616593779","0.364223393503296","0.35644119302986","0.26671626879826","0.0975071247050362","0.279481232686385","0.102173787639782","0.666204691965248","0.528659845918323","0.319646347765437","0.81621363132776","0.3778077516097","0.0213665585798406","59","19","5","full","0.0384879624126045"
+"aclew","(30,36]","voc_dur_chi_ph","1.20942835626815","0.309716147226301","0.817604816502888","0.378809103095844","0.541956660742188","0.540893356105712","0.459726615074025","0.0822300456681636","0.552551859811616","0.0988334440002387","0.550528707024008","0.743338321231737","0.314377868178151","0.741976217290021","0.542855329660978","0.00196197355526631","66","21","5","full","0.844221626652187"
+"aclew","(30,36]","avg_voc_dur_fem","1.29391531370373","0.957442724873259","0.707748749919691","1.35280030516748","0.539713119299595","0.528959381852799","0.36421129810453","0.175501821195065","0.396970848166174","0.191287604687425","0.501688098041816","0.630056226194277","0.437364384338077","0.708299440944165","0.548884295778833","0.019924913926034","72","21","5","full","0.246340203310806"
+"aclew","(30,36]","avg_voc_dur_mal","1.36917961039469","0.494641180973915","0.768746530661717","0.643438586380534","0.405741496759557","0.40351876244572","0.32031884418984","0.085422652569716","0.341585916834566","0.0910941570430171","0.633713374495756","0.584453519823917","0.30181808601046","0.796061162534485","0.408996965517352","0.00547820307163187","68","20","5","full","0.282582103097351"
+"aclew","(30,36]","avg_voc_dur_och","1.45417791573291","0.0870238958981842","0.686428508117826","0.126777799682012","0.637886195584502","0.637788416629192","0.55238793943899","0.0854982561455125","0.652078904258205","0.100928360673434","0.427465474789041","0.807514027282626","0.317692242073101","0.653808438909319","0.637941702522486","0.000153285893294948","69","21","5","full","0.635707433834385"
+"aclew","(30,36]","avg_voc_dur_chi","1.24481083816558","0.357771256541156","0.49764076585437","0.718934784064405","0.819711832248857","0.817320647860994","0.819711832248856",NA,"0.866898396393927",NA,"0.190666423691218","0.931073786761247",NA,"0.436653665610651","0.820237751523269","0.00291710366227486","72","21",NA,"no_exp","0.0965020106242916"
+"aclew","(30,36]","voc_dur_fem_ph","1.46094053748655","0.390776915037404","0.779672952502489","0.501206196499624","0.25810110492122","0.257183859612","0.25810110492122",NA,"0.262849822278887",NA,"0.755548848889595","0.512688816221777",NA,"0.869223129518304","0.260737681318807","0.00355382170680745","72","21",NA,"no_exp","0.885073072916818"
+"aclew","(30,36]","simple_CTC_ph","1.3360986217063","-0.241647768763394","0.776239434557296","-0.311305710590715","0.562694645627654","0.562076740412832","0.251211152899328","0.311483492728326","0.30857243379573","0.382607294019672","0.537159182437477","0.555492964668077","0.618552579834303","0.732911442424988","0.563174858583358","0.00109811817052575","66","20","5","full","0.382266520976979"
+"lena","(0,6]","voc_fem_ph","1.24052296788298","-1.82071260666866","0.629659402952614","-2.8915832879346","0.47988315946082","0.448896142116822","0.341058910353125","0.138824249107695","0.399520804767533","0.162620515228086","0.60927157273273","0.632076581410459","0.403262340453563","0.780558500519166","0.513468146224685","0.064572004107863","128","64","6","full","0.809338541287365"
+"lena","(0,6]","peak_lena_CVC","1.38267049250479","-1.03372797366773","0.616134737397872","-1.67776285108267","0.335998950367666","0.327004324932205","0.29644340712507","0.0395555432425959","0.284292223362509","0.0379341657276426","0.636783717154394","0.53319060697138","0.194766952349834","0.797987291348925","0.353774127116465","0.0267698021842593","127","63","6","full","5.64699603956809e-05"
+"lena","(0,6]","lp_dur","1.40988574622447","0.670084499493887","0.666327138356224","1.00563891356269","0.321628472974524","0.318419123572253","0.280212746031243","0.0414157269432816","0.306594302990953","0.045314947713418","0.742239061010074","0.553709583618483","0.212873078883681","0.861532971516514","0.328397560408363","0.00997843683610992","125","63","6","full","0.0975943313552674"
+"lena","(0,6]","lp_n","1.51878098383244","-1.35215438859691","0.640223829115413","-2.11200259519419","0.464988989843373","0.448296231914622","0.371630997661445","0.0933579921819286","0.449342896095645","0.112880117225632","0.646887364777473","0.670330437989836","0.335976364087761","0.804293083880169","0.484195486076261","0.0358992541616394","128","63","6","full","0.0404217532861683"
 "lena","(0,6]","peak_wc_adu_ph","1.45991987404817",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"no_chi_effect",NA
-"lena","(0,6]","wc_adu_ph","1.36530115751681","-1.24636489649083","0.669607666678004","-1.86133606067293","0.291435922098171","0.281578703204313","0.235765003496266","0.0556709186019054","0.255795452812429","0.0604006855177037","0.768763245035179","0.505762249295485","0.245765509210922","0.876791448997525","0.315401640414287","0.0338229372099739","127","63","6","full","0.408701318952583"
-"lena","(0,6]","wc_mal_ph","1.40134893928667","-0.44237621592423","0.642292390819061","-0.688745845735624","0.278561321881825","0.277293454117402","0.278561321881825",NA,"0.296599716731272",NA,"0.768155844908039","0.54460969210185",NA,"0.876445003926681","0.281844939427202","0.0045514853097997","126","62",NA,"no_exp","1.96402049514527e-05"
-"lena","(0,6]","wc_fem_ph","1.41116535322468","-2.02235319258769","0.65222010289422","-3.10072195507854","0.374547969381782","0.343258466788454","0.266716356507093","0.107831612874689","0.292723549324795","0.118346144433991","0.686439109819261","0.54103932327031","0.344014744500859","0.828516209750456","0.42679783998269","0.0835393731942362","127","63","6","full","0.821876240254642"
+"lena","(0,6]","wc_adu_ph","1.36530115751681","-1.24636489655046","0.669607666680401","-1.86133606075533","0.291435922124052","0.281578703228596","0.23576500350772","0.0556709186163325","0.255795452829912","0.0604006855345503","0.768763245022293","0.505762249312769","0.245765509245196","0.876791448990176","0.315401640441051","0.0338229372124547","127","63","6","full","0.408701318984116"
+"lena","(0,6]","wc_mal_ph","1.40134893928667","-0.442376215970045","0.642292390818114","-0.688745845807971","0.278561321911609","0.277293454146809","0.27856132191161",NA,"0.296599716767649",NA,"0.768155844888407","0.544609692135248",NA,"0.87644500391548","0.281844939457476","0.00455148531066686","126","62",NA,"no_exp","1.96402049511668e-05"
+"lena","(0,6]","wc_fem_ph","1.41116535322468","-2.02235319949628","0.652220102549112","-3.10072196731163","0.374547976667134","0.343258473457217","0.266716359834548","0.107831616832586","0.292723554895238","0.118346149553467","0.686439106322495","0.54103932841822","0.344014751941639","0.828516207640197","0.426797846672748","0.0835393732155309","127","63","6","full","0.821876251920482"
 "lena","(0,6]","avg_voc_dur_chi","1.57465067170431",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"no_chi_effect",NA
-"lena","(0,6]","avg_voc_dur_och","1.28534922999559","0.728530755924708","0.648507276059362","1.12339642563705","0.249768019328369","0.246752332515699","0.249768019328369",NA,"0.262739965348235",NA,"0.789196011302209","0.512581667003644",NA,"0.888367047622889","0.258826283459375","0.0120739509436754","125","64",NA,"no_exp","0.263330160372898"
-"lena","(0,6]","avg_voc_dur_mal","1.44076995230574","0.00118917035316243","0.701590275919048","0.00169496413217055","0.180371333563325","0.180371328038356","0.00898096037485065","0.171390373188474","0.00996229803782517","0.19011797260558","0.909188406871591","0.0998113121736468","0.436025197214084","0.953513716142348","0.180371358669436","3.06310797051583e-08","128","64","6","full","0.0592406917913523"
-"lena","(0,6]","avg_voc_dur_fem","1.40481904944144","-1.32261405562173","0.626015653090616","-2.11274917662527","0.377153330013003","0.362786008890263","0.377153330013002",NA,"0.355300498966661",NA,"0.586757997386565","0.596070884179609",NA,"0.766001303776021","0.400880120699494","0.038094111809231","116","63",NA,"no_exp","0.529100882156844"
-"lena","(0,6]","voc_dur_chi_ph","1.55849535817322","-0.612767294235774","0.476457074903242","-1.28609129030189","0.636995028409164","0.630606907203184","0.550650322267162","0.0863447061420014","0.504007258130293","0.0790308419643164","0.332256484779456","0.709934685819965","0.281124246489548","0.576416936582762","0.640635433205866","0.0100285260026817","127","63","6","full","0.114036978234006"
-"lena","(0,6]","voc_dur_och_ph","1.42519453699024","0.898667180019506","0.514330111361629","1.74725756895779","0.669462282026694","0.658614814204808","0.66788436366393","0.00157791836276377","0.81466431822163","0.00192469513758098","0.403179501286772","0.902587568173654","0.043871347569695","0.634964173230878","0.674818068836342","0.0162032546315343","126","62","6","full","0.00203410119238459"
-"lena","(0,6]","voc_dur_mal_ph","1.48973048728829","-0.364381300848534","0.695438496060331","-0.523959060237188","0.12488280714087","0.12449134767622","0.0375822274232176","0.0873005797176525","0.0395823248829165","0.0919466499400801","0.92169026195016","0.198953072062023","0.303227060039305","0.960047010281351","0.127625962228956","0.00313461455273648","125","62","6","full","0.000129447529358435"
-"lena","(0,6]","voc_dur_fem_ph","1.38440294218922","-2.12842692597337","0.646224496954826","-3.29363392443811","0.403080104837876","0.366640738240904","0.277017850910463","0.126062253927413","0.308003922344742","0.140163056429933","0.663688886587207","0.554981010796534","0.374383568589666","0.814671029672227","0.457043033366903","0.0904022951259992","128","64","6","full","0.615476325342743"
-"lena","(0,6]","peak_voc_chi_ph","1.5350503450836","-0.698153887810034","0.582088741282279","-1.19939424746831","0.398620572660408","0.393345441145946","0.142984765815342","0.255635806845065","0.127907549912114","0.228679954377702","0.537966185977445","0.357641650136159","0.478204929269557","0.733461782220072","0.406578906441668","0.0132334652957223","128","64","6","full","0.0119073615570388"
-"lena","(0,6]","voc_chi_ph","1.47048545508109","-0.579565571978964","0.45386839851231","-1.27694629958522","0.665550968635223","0.659530688726473","0.522959596042294","0.142591372592929","0.472695866413729","0.128886347857524","0.302303802910655","0.687528811333553","0.359007448192268","0.54982161007972","0.66857624675653","0.0090455580300571","129","64","6","full","0.651492786925745"
-"lena","(0,6]","peak_voc_och_ph","1.67116713176352","0.238733331370118","0.574639914652085","0.415448570979721","0.505211007681834","0.504577760975965","0.505211007681833",NA,"0.567656184361573",NA,"0.555945985286848","0.753429614736222",NA,"0.745617854726433","0.505831191119489","0.00125343014352442","128","63",NA,"no_exp","0.000213297397100632"
-"lena","(0,6]","voc_och_ph","1.37297076352854","0.751883147593546","0.4968065541626","1.51343242413719","0.697113000979016","0.689260575686304","0.697113000979016",NA,"0.858052852433133",NA,"0.372813379050278","0.926311423028526",NA,"0.610584456934729","0.700524782897594","0.0112642072112905","127","63",NA,"no_exp","0.0157394569676672"
-"lena","(0,6]","peak_voc_mal_ph","1.37952452648307","-0.935849117069636","0.621118962387872","-1.50671477404553","0.369774950132164","0.362465840925768","0.369294399584552","0.000480550547612753","0.397892091544721","0.000517763775182357","0.679028881883643","0.630786882825508","0.022754423200388","0.82403208789685","0.382232212887373","0.0197663719616058","127","64","6","full","0.000420665751505312"
-"lena","(0,6]","voc_mal_ph","1.37394031990829","-0.560332039691969","0.640459856933121","-0.874890180276328","0.246610758120518","0.244771587544019","0.246610758120517",NA,"0.256355503623865",NA,"0.783159177639899","0.506315616610691",NA,"0.884962811444582","0.252229374830006","0.00745778728598756","126","62",NA,"no_exp","0.000590243644325024"
-"lena","(0,6]","peak_voc_fem_ph","1.31006337391543","-1.88767172716445","0.693402689742737","-2.72233112892136","0.144548066692493","0.133298498940964","0.035132361969358","0.109415704723135","0.0368917686448678","0.114895174662087","0.89829243015061","0.192072300566396","0.338961907390915","0.947782902436318","0.211124290796491","0.0778257918555263","126","63","6","full","0.160666145029813"
-"lena","(0,6]","peak_lena_CTC","1.28695491291596","-2.58576457000797","0.600607391402496","-4.30524933096457","0.553198778639949","0.488016660878532","0.189420656715789","0.36377812192416","0.23284206567179","0.447167963745982","0.549222672595039","0.482537113258442","0.668706186412225","0.741095589377672","0.6058443211667","0.117827660288167","129","64","6","full","0.251185130390354"
+"lena","(0,6]","avg_voc_dur_och","1.28534922999559","0.72853075592262","0.648507276059381","1.1233964256338","0.249768019326839","0.246752332514203","0.24976801932684",NA,"0.262739965346439",NA,"0.789196011303256","0.512581667001892",NA,"0.888367047623479","0.258826283457818","0.0120739509436154","125","64",NA,"no_exp","0.263330160372356"
+"lena","(0,6]","avg_voc_dur_mal","1.44076995230574","0.0011891704027091","0.701590275930716","0.00169496420276289","0.180371333613428","0.180371328088459","0.00898096039694381","0.171390373216485","0.00996229806268718","0.190117972643422","0.90918840684839","0.0998113122981919","0.436025197257477","0.953513716130182","0.180371358719541","3.06310822565507e-08","128","64","6","full","0.059240691792696"
+"lena","(0,6]","avg_voc_dur_fem","1.40481904944144","-1.32261405562243","0.626015653090709","-2.11274917662607","0.377153330012139","0.362786008889411","0.377153330012139",NA,"0.355300498965671",NA,"0.586757997387088","0.596070884178779",NA,"0.766001303776363","0.400880120698699","0.0380941118092875","116","63",NA,"no_exp","0.529100882160558"
+"lena","(0,6]","voc_dur_chi_ph","1.55849535817322","-0.612767294225923","0.476457074892073","-1.28609129031136","0.636995028414465","0.630606907208503","0.55065032233882","0.0863447060756453","0.504007258185383","0.0790308419019348","0.332256484767684","0.709934685858764","0.281124246378598","0.57641693657255","0.640635433211072","0.0100285260025691","127","63","6","full","0.114036978272283"
+"lena","(0,6]","voc_dur_och_ph","1.42519453699024","0.898667179950347","0.514330111327277","1.74725756894002","0.669462282006131","0.658614814185641","0.667884363750683","0.00157791825544845","0.814664318283194","0.00192469500657659","0.403179501289953","0.902587568207758","0.0438713460766431","0.634964173233382","0.674818068815587","0.0162032546299465","126","62","6","full","0.00203410119129625"
+"lena","(0,6]","voc_dur_mal_ph","1.48973048728829","-0.364381300695474","0.695438496033346","-0.523959060037426","0.124882807031829","0.124491347567834","0.0375822273150551","0.0873005797167736","0.0395823247675912","0.0919466499358874","0.921690262032256","0.198953071772193","0.303227060032391","0.960047010324107","0.127625962118057","0.00313461455022229","125","62","6","full","0.000129447529406106"
+"lena","(0,6]","voc_dur_fem_ph","1.38440294218922","-2.12842692598202","0.646224496961672","-3.2936339244166","0.403080104807427","0.366640738212328","0.277017850875992","0.126062253931436","0.308003922300743","0.140163056431825","0.663688886608842","0.554981010756894","0.374383568592193","0.814671029685505","0.457043033340508","0.0904022951281802","128","64","6","full","0.615476325287582"
+"lena","(0,6]","peak_voc_chi_ph","1.5350503450836","-0.698153887692049","0.582088742351065","-1.19939424506338","0.398620575139714","0.393345443636735","0.142984758676881","0.255635816462834","0.127907544571543","0.228679964849914","0.53796618815543","0.357641642669786","0.478204940219059","0.733461783704802","0.406578908821341","0.0132334651846055","128","64","6","full","0.0119073620195867"
+"lena","(0,6]","voc_chi_ph","1.47048545508109","-0.579565572027025","0.453868398533124","-1.27694629963255","0.665550968652867","0.659530688743695","0.522959595856795","0.142591372796072","0.472695866303675","0.128886348056852","0.302303802931554","0.687528811253517","0.359007448469878","0.549821610098725","0.668576246774146","0.00904555803045105","129","64","6","full","0.651492786687852"
+"lena","(0,6]","peak_voc_och_ph","1.67116713176352","0.238733331366378","0.574639914648599","0.415448570975734","0.505211007701084","0.504577760995222","0.505211007701084",NA,"0.56765618439291",NA,"0.555945985274724","0.753429614757019",NA,"0.745617854718303","0.505831191138686","0.00125343014346377","128","63",NA,"no_exp","0.000213297397102932"
+"lena","(0,6]","voc_och_ph","1.37297076352854","0.75188315983666","0.496806517333256","1.51343256097484","0.697113111917029","0.68926068645673","0.69711311191703",NA,"0.858053136511104",NA,"0.372813306599537","0.926311576366778",NA,"0.610584397605718","0.700524892115845","0.0112642056591147","127","63",NA,"no_exp","0.0157394454536504"
+"lena","(0,6]","peak_voc_mal_ph","1.37952452648307","-0.935849117102746","0.621118962394466","-1.50671477408284","0.36977495013299","0.362465840926085","0.369294399578925","0.000480550554065327","0.397892091539497","0.000517763782135702","0.679028881884184","0.630786882821367","0.0227544233531791","0.824032087897179","0.382232212889021","0.0197663719629357","127","64","6","full","0.000420665751503376"
+"lena","(0,6]","voc_mal_ph","1.37394031990829","-0.560332039678022","0.64045985693317","-0.874890180254483","0.246610758112416","0.244771587536061","0.246610758112416",NA,"0.256355503614426",NA,"0.783159177645211","0.50631561660137",NA,"0.884962811447583","0.25222937482171","0.00745778728564834","126","62",NA,"no_exp","0.000590243644338383"
+"lena","(0,6]","peak_voc_fem_ph","1.31006337391543","-1.88767172705467","0.693402689715035","-2.7223311288718","0.14454806656324","0.133298498822413","0.0351323618588953","0.109415704704345","0.036891768526865","0.114895174636102","0.898292430237436","0.192072300259212","0.338961907352585","0.947782902482122","0.211124290673498","0.0778257918510848","126","63","6","full","0.160666145021086"
+"lena","(0,6]","peak_lena_CTC","1.28695491291596","-2.58576456994898","0.60060739139944","-4.30524933088826","0.553198778589385","0.488016660829867","0.18942065675298","0.363778121836404","0.232842065690441","0.44716796358613","0.549222672593353","0.482537113277768","0.668706186292702","0.741095589376535","0.605844321125372","0.117827660295505","129","64","6","full","0.251185130342142"
 "lena","(0,6]","standardScore","1.33492692129691",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"no_chi_effect",NA
-"lena","(0,6]","lena_CTC_ph","1.39370287814851","-1.3671748133984","0.531700379081857","-2.57132563222778","0.638791813877362","0.614728412289451","0.440993795795362","0.197798018082","0.517245868325635","0.231999199515699","0.423664558682429","0.719198073082538","0.481662952193439","0.650895197925464","0.652398590687402","0.037670178397951","129","63","6","full","0.00367525918269657"
-"lena","(0,6]","lena_CVC_ph","1.28464567571865","-0.971649061734697","0.509079642375553","-1.90863861143735","0.62327462356744","0.609509953478328","0.538434017073165","0.0848406064942746","0.554387933165334","0.0873544519689272","0.387887830614163","0.744572315604962","0.295557865686108","0.622806415039347","0.631594391972434","0.0220844384941059","128","63","6","full","0.000767849842930568"
-"lena","(6,12]","voc_fem_ph","1.42291557987352","-0.883685652421772","0.29047206754924","-3.04223968892284","0.566213066197061","0.559142416808505","0.425071593919514","0.14114147227755","0.467303635910275","0.155164269070205","0.476884868987189","0.68359610583317","0.39390896038324","0.690568511436185","0.571630029353454","0.0124876125449497","421","130","8","full","0.0636461313707909"
-"lena","(6,12]","peak_lena_CVC","1.25148414456127","0.0867372011954102","0.315598726920417","0.274833812042855","0.435295331882265","0.435239656017439","0.327728867426308","0.107566464455955","0.347661774942419","0.114108800517693","0.599050760397927","0.589628505876725","0.337799941559635","0.773983695175762","0.435367559674448","0.00012790365700914","424","129","8","full","3.22326444312727e-06"
-"lena","(6,12]","lp_dur","1.4126918084944","0.043697868319602","0.312565832724254","0.139803726910076","0.422587809819031","0.422573765667344","0.386235836227091","0.0363519735919389","0.398639665532498","0.0375194045578319","0.595955581482585","0.631379177303542","0.193699263183503","0.771981594005055","0.422606999355966","3.3233688622232e-05","427","130","8","full","0.932579360993785"
-"lena","(6,12]","lp_n","1.3644814164853","0.189474927634779","0.30787402910672","0.615430045153631","0.437671645316146","0.437395058061131","0.389166864692133","0.0485047806240144","0.398740363339796","0.0496979974516509","0.576161623216022","0.631458916589034","0.222930476722342","0.759053109614882","0.438027009566271","0.000631951505139101","424","130","8","full","0.733150920698703"
-"lena","(6,12]","peak_wc_adu_ph","1.44113010241661","-1.1325993662247","0.342615919293198","-3.30574063388883","0.300709362406268","0.294319785246039","0.183950055290215","0.116759307116053","0.192575862811774","0.122234398210452","0.73208185601438","0.438834664551211","0.349620362980265","0.85561782123468","0.315568133182731","0.0212483479366915","421","130","8","full","6.69073039224476e-07"
-"lena","(6,12]","wc_adu_ph","1.29361553121213","-0.802581332686311","0.300150089042203","-2.673933348637","0.526911161646204","0.521323242874708","0.382290313350905","0.144620848295295","0.406473649251178","0.153769431009441","0.503016005977523","0.637552859966276","0.392134455269415","0.709236213103592","0.531928292033351","0.0106050491586425","417","130","8","full","0.000233280012805161"
-"lena","(6,12]","wc_mal_ph","1.40553113926484","-0.499554672333935","0.329564985165789","-1.51580020578531","0.384903118687959","0.383197040713121","0.356106276202725","0.0287968424852361","0.357968384967009","0.028947423523423","0.618313273075164","0.598304592132644","0.170139423777745","0.786328985269629","0.387629527466291","0.00443248675317068","405","129","8","full","9.98688315437472e-12"
-"lena","(6,12]","wc_fem_ph","1.40068510432398","-0.784030474953725","0.2939338498946","-2.66737048228663","0.570438043061576","0.564923514071397","0.430799907765868","0.139638135295707","0.481361102056972","0.156026882744026","0.47997785808721","0.693801918458699","0.395002383213096","0.69280434329413","0.574590697137558","0.00966718306616094","418","130","8","full","0.00276897061784414"
-"lena","(6,12]","avg_voc_dur_chi","1.42833873136088","-0.935889209770718","0.321957777524618","-2.90686939438559","0.400987494797546","0.394917019396518","0.400987494797543",NA,"0.404570005374376",NA,"0.604364214827778","0.636058177664886",NA,"0.777408653687221","0.410055834147071","0.0151388147505533","413","129",NA,"no_exp","0.00585593802212242"
-"lena","(6,12]","avg_voc_dur_och","1.28791577305975","0.239227692763533","0.29248247092235","0.817921470675228","0.484658097175061","0.484155330964621","0.484658097175063",NA,"0.485154595658035",NA,"0.515869834730866","0.696530398229707",NA,"0.718240791608821","0.485192693619594","0.00103736265497261","420","128",NA,"no_exp","5.26869619785874e-06"
-"lena","(6,12]","avg_voc_dur_mal","1.37366905897952","-0.837520125648473","0.324845216018522","-2.57821289755648","0.376312867906258","0.371630807103777","0.333833017485079","0.0424798504211793","0.335196421260138","0.0426533419136162","0.626234325887689","0.578961502399027","0.206526855187446","0.791349686224547","0.384072743592771","0.0124419364889937","414","129","8","full","0.0241418093195467"
-"lena","(6,12]","avg_voc_dur_fem","1.18841340123386","-0.705867110383843","0.328628062639838","-2.14792098006993","0.321972163844627","0.319118823394914","0.321972163844628",NA,"0.320986492195005",NA,"0.675952151078213","0.56655669812915",NA,"0.822163092748764","0.327980895244981","0.00886207185006717","419","129",NA,"no_exp","0.00761946730901271"
-"lena","(6,12]","voc_dur_chi_ph","1.43517963337807","0.30164422525738","0.296684885016824","1.01671585069214","0.486929314197044","0.486142010061158","0.436730238434647","0.0501990757623956","0.44314482793117","0.0509363878048929","0.520606545568292","0.665691240689833","0.225690912100804","0.721530696206539","0.487758885679304","0.00161687561814569","423","127","8","full","0.178716416217074"
-"lena","(6,12]","voc_dur_och_ph","1.2880095550437","0.499371496214495","0.244245667549896","2.04454597382973","0.686088184676676","0.683143370865174","0.686088184676677",NA,"0.71789876381564",NA,"0.328466382603482","0.847289067447256",NA,"0.573119867570024","0.687435550613015","0.00429217974784114","415","127",NA,"no_exp","3.27829888781481e-07"
-"lena","(6,12]","voc_dur_mal_ph","1.40220625506751","-0.404997499734586","0.342840346488419","-1.18130057877615","0.328742461308418","0.327789463652496","0.309353332084387","0.0193891292240324","0.312087623057325","0.0195605045270013","0.677190603695906","0.558648031462857","0.139858873608367","0.82291591532544","0.330688382314018","0.00289891866152219","403","128","8","full","1.20906272115612e-12"
-"lena","(6,12]","voc_dur_fem_ph","1.43282361020315","-0.95373505112739","0.297238343591409","-3.20865417161125","0.544104423401083","0.536235787648789","0.412408369910315","0.131696053490767","0.455111326116562","0.145332563355915","0.503101429492636","0.674619393522423","0.381225082275438","0.709296432736438","0.550697415626575","0.0144616279777858","421","130","8","full","0.00238401090770468"
-"lena","(6,12]","peak_voc_chi_ph","1.32460449926717","0.416083639770307","0.310758965584773","1.33892722608128","0.42447301375718","0.423159771704779","0.355442519434642","0.0690304943225393","0.361049146041934","0.0701193573173179","0.58460514863998","0.600873652311311","0.264800599163442","0.764594761059726","0.426253589238141","0.00309381753336196","423","127","8","full","0.14322210816755"
-"lena","(6,12]","voc_chi_ph","1.41073647503144","0.724578197809375","0.291532495692847","2.48541143273708","0.515062361491595","0.51044224701282","0.402374677896987","0.112687683594607","0.422885510530133","0.118431877613242","0.509657073620337","0.650296478946436","0.344139328780135","0.713902705990345","0.519412256907147","0.00897000989432675","427","128","8","full","0.0128092636781051"
-"lena","(6,12]","peak_voc_och_ph","1.43332334450371","0.541244507931979","0.257136876919714","2.10488870525161","0.633273439458634","0.63002683681908","0.633273439458628",NA,"0.649018527174165",NA,"0.375844488917262","0.805616861277223",NA,"0.613061570249891","0.635153536341375","0.00512669952229474","423","128",NA,"no_exp","8.34113059927061e-05"
-"lena","(6,12]","voc_och_ph","1.28652396662374","0.580057781760062","0.245822205617755","2.35966388920142","0.680796009105571","0.676849537250047","0.680796009105566",NA,"0.706215526041764",NA,"0.331122408664391","0.840366304680146",NA,"0.575432366716012","0.682646386530508","0.00579684928046113","417","127",NA,"no_exp","3.8126129910639e-06"
-"lena","(6,12]","peak_voc_mal_ph","1.44186546303042","-0.537226708392778","0.322520244134602","-1.66571468973765","0.403224458273201","0.401182578169984","0.362915705335651","0.0403087529375458","0.367562546834186","0.0408248738525422","0.604416768909409","0.606269368213657","0.202051661345662","0.777442453760668","0.406246457756955","0.00506387958697095","415","130","8","full","6.68122846432841e-08"
-"lena","(6,12]","voc_mal_ph","1.31724083619458","-0.667152573538013","0.322842322459332","-2.06649663667332","0.403935387382668","0.400739412677102","0.369397481327665","0.0345379060550025","0.3701834022326","0.0346113880459564","0.597332784880079","0.608426990059284","0.186041361116168","0.772873071648947","0.408651506554973","0.00791209387787103","410","129","8","full","5.02213613339343e-11"
-"lena","(6,12]","peak_voc_fem_ph","1.48659886213676","-1.19186822234887","0.329151096943084","-3.6210367621985","0.349079233294363","0.340694209620743","0.26668035909652","0.0823988741978407","0.275447256600807","0.0851076694274873","0.672319251635135","0.524830693272418","0.291732187849554","0.819950761713858","0.3647146120792","0.0240204024584576","427","130","8","full","5.49564743934237e-07"
-"lena","(6,12]","peak_lena_CTC","1.40072289076764","0.0390751628451698","0.302660207993115","0.129105715958732","0.503536027848809","0.503523618114852","0.339241326959268","0.164294700889545","0.381684561108621","0.184849974982639","0.558577679834161","0.617806248842322","0.429941827440224","0.747380545528287","0.503548263290711","2.46451758592531e-05","427","127","8","full","4.31323389132213e-06"
-"lena","(6,12]","standardScore","1.30714927580513","-1.8255992196976","0.339413993081527","-5.3786798921372","0.270177411485921","0.254194800892461","0.251681543666905","0.0184958678190148","0.241778362392675","0.0177680912440335","0.70110548321196","0.491709632194322","0.133297003882434","0.837320418485038","0.31335078475343","0.0591559838609695","402","126","8","full","0.524542338728313"
-"lena","(6,12]","lena_CTC_ph","1.40202916797513","0.122477709433577","0.294048359211733","0.416522335856277","0.576821776661071","0.576688146908477","0.37068502518399","0.206136751477079","0.431495844067512","0.239953452470296","0.49260054295419","0.656883432632847","0.489850438879354","0.701855072614133","0.576919812490466","0.00023166558198947","420","128","8","full","0.000158722344111123"
-"lena","(6,12]","lena_CVC_ph","1.33362952780026","0.682719701949146","0.295713075383236","2.30872341733405","0.499757373753845","0.495699080426463","0.408197204762034","0.0915601689918081","0.419711964154474","0.0941429728512477","0.514353877895771","0.64785180724798","0.306827268754339","0.717184688832501","0.503819607587271","0.00812052716080785","423","127","8","full","1.34208175761933e-05"
-"lena","(12,18]","voc_fem_ph","1.48049971835732","0.0611285233096322","0.310138976654299","0.197100422426975","0.497653395733077","0.497617763658226","0.497653395733075",NA,"0.501957918976554",NA,"0.506691722079621","0.708489886290943",NA,"0.711822816492714","0.497689363842525","7.16001842998854e-05","319","97",NA,"no_exp","0.144947862842472"
-"lena","(12,18]","peak_lena_CVC","1.44231667424821","1.43790074944236","0.325266849260445","4.42068028977346","0.514925411464387","0.497474368860549","0.291646774942434","0.223278636521953","0.323997965409689","0.24804602748253","0.538881939594573","0.569208191622089","0.498042194480076","0.734085784901583","0.531364796901786","0.0338904280412369","314","96","7","full","0.000321611674658228"
-"lena","(12,18]","lp_dur","1.28229137513026","0.996297816153081","0.323859926424849","3.07632323378629","0.450523240656604","0.442192835879498","0.450523240656602",NA,"0.459017243534445",NA,"0.559836396214444","0.677508113260974",NA,"0.748222156992456","0.460683346524332","0.0184905106448333","319","97",NA,"no_exp","0.458763721879652"
-"lena","(12,18]","lp_n","1.24377780907464","0.896426357202333","0.302788121871154","2.96057306232043","0.582807233144924","0.574914594335372","0.438904545963642","0.143902687181279","0.495745740093263","0.162539086947626","0.471222134443916","0.704092138923069","0.403161365891656","0.68645621451329","0.58845704604271","0.0135424517073388","319","97","7","full","0.166749349708827"
-"lena","(12,18]","peak_wc_adu_ph","1.26912861169887","0.103346660245872","0.35434614702397","0.291654533607448","0.395314233611322","0.395238174462755","0.286014142888871","0.10930009072245","0.311476524361375","0.119030520752393","0.658517858393878","0.558100819172822","0.345008000997648","0.811491132664971","0.395430576208254","0.00019240174549824","311","97","7","full","1.51370402727752e-05"
-"lena","(12,18]","wc_adu_ph","1.38631105915601","0.232681889886895","0.330432949514322","0.70417278370361","0.441362156852608","0.440903708477252","0.441362156852607",NA,"0.449554071337994",NA,"0.569006456242812","0.670487935266545",NA,"0.754325166120561","0.441942420945547","0.00103871246829494","310","97",NA,"no_exp","0.00938922668693767"
-"lena","(12,18]","wc_mal_ph","1.48825123647475","0.229891323306104","0.334414940589547","0.687443338807842","0.45778142745971","0.457319484651185","0.438509950048951","0.01927147741076","0.454130778240199","0.01995797594424","0.561533762908969","0.673892260112994","0.14127270063335","0.749355565075065","0.458328574974243","0.0010090903230577","301","97","7","full","8.41934456366874e-06"
-"lena","(12,18]","wc_fem_ph","1.49310847000819","-0.0039031346275027","0.317059753343809","-0.0123104070647222","0.483079478732738","0.483079339101746","0.483079478732741",NA,"0.48883852662525",NA,"0.523083006261259","0.699169883951855",NA,"0.723244776172811","0.483079628145265","2.89043518647888e-07","316","97",NA,"no_exp","0.0551416036330913"
-"lena","(12,18]","avg_voc_dur_chi","1.38225176135204","-0.329307079203429","0.344233532968609","-0.956638583009455","0.352637849653696","0.351901121243606","0.352637849653694",NA,"0.353409392195851",NA,"0.648778525360117","0.594482457433229",NA,"0.8054678921969","0.353990313911987","0.00208919266838104","321","97",NA,"no_exp","0.0310856954828623"
-"lena","(12,18]","avg_voc_dur_och","1.51548909688664","0.303330450347847","0.304119413465573","0.997405745628877","0.518321275750658","0.517399088411167","0.502873406615051","0.0154478691356069","0.501529852934757","0.0154065962403676","0.480391797531462","0.708187724360397","0.124123310624426","0.693103020864476","0.519178269360579","0.00177918094941214","317","96","7","full","0.369884830225493"
-"lena","(12,18]","avg_voc_dur_mal","1.40790796194206","-0.337260986515382","0.339115088065817","-0.994532530059307","0.409130194678626","0.408244760889368","0.34979191298681","0.059338281691818","0.358513008872","0.0608177179654527","0.60560151304975","0.598759558480698","0.246612485420858","0.778204030476423","0.410408946766564","0.00216418587719625","316","97","7","full","0.000112335923562372"
-"lena","(12,18]","avg_voc_dur_fem","1.29236071623025","-0.276414442567066","0.364957867256689","-0.757387269508163","0.273061563278809","0.272660795934046","0.273061563278811",NA,"0.272609499365362",NA,"0.72573496219847","0.522120196281816",NA,"0.851900793636483","0.274128477214233","0.00146768128018633","316","96",NA,"no_exp","0.0517711423551282"
-"lena","(12,18]","voc_dur_chi_ph","1.37872241614721","1.26656590433114","0.320909201776906","3.94680457063257","0.448064655016482","0.434380350152357","0.356313194011991","0.0917514610044931","0.351425102176323","0.090492766196151","0.544363605572881","0.592811185940619","0.300820155900749","0.737810006419593","0.464921265868242","0.0305409157158854","320","97","7","full","0.00780845871763764"
-"lena","(12,18]","voc_dur_och_ph","1.34426351892087","0.691151327598454","0.289115772523923","2.39056943024879","0.569726972601696","0.56448211750183","0.563859911822476","0.00586706077921801","0.557400377545707","0.0057998481978434","0.425343853838394","0.746592511043144","0.0761567344221337","0.652183911054538","0.573688027265792","0.00920590976396227","312","97","7","full","9.97658016664849e-05"
-"lena","(12,18]","voc_dur_mal_ph","1.44794086018816","0.165535218433977","0.33111804085926","0.499928116282668","0.465175762516108","0.464931057460011","0.453173504862588","0.0120022576535182","0.466998803113992","0.0123684193773824","0.551140514838934","0.683373106812078","0.111213395674183","0.742388385441834","0.465457106054576","0.000526048594565799","301","97","7","full","2.05024802017846e-05"
-"lena","(12,18]","voc_dur_fem_ph","1.49913892840651","0.0711044665221904","0.321137044402793","0.22141471300647","0.464983485416576","0.464938773723568","0.464983485416577",NA,"0.470848614071335",NA,"0.541765013807307","0.686184096341015",NA,"0.736046882886754","0.465034931317138","9.61575935695943e-05","317","97",NA,"no_exp","0.0243333285078838"
-"lena","(12,18]","peak_voc_chi_ph","1.31926430268882","1.26096697460047","0.34106979692608","3.69709363293096","0.400605236520573","0.389054065992811","0.228122964891384","0.17248227162919","0.233580255092989","0.176608492815912","0.613733833512061","0.483301412260495","0.42024813243596","0.783411662864461","0.417888363387644","0.0288342973948327","315","96","7","full","0.00697248160066621"
-"lena","(12,18]","voc_chi_ph","1.35213990906438","1.47846220457484","0.320721989952198","4.60979368703466","0.43826506365074","0.419913987479824","0.344126185367369","0.0941388782833725","0.331629126366582","0.0907201930272089","0.541335341837537","0.575872491413318","0.301197929984933","0.735754946865828","0.46178608200192","0.0418720945220966","318","97","7","full","0.00570279329597685"
-"lena","(12,18]","peak_voc_och_ph","1.50663733270226","0.42521202876712","0.289328141044732","1.46965320148855","0.60695277373559","0.605013636596405","0.462835941069682","0.144116832665907","0.508904839440013","0.158461664448407","0.432169626049671","0.713375665018097","0.398072436182671","0.65739609524979","0.608208509777806","0.00319487318140119","318","97","7","full","5.71168094499877e-05"
-"lena","(12,18]","voc_och_ph","1.35595084686801","0.765622760442668","0.292790764605719","2.61491431081742","0.542038839715874","0.535725520998762","0.54004833517899","0.00199050453688606","0.517920391688766","0.00190894559291737","0.439196657154742","0.719666861602482","0.0436914819263134","0.662719138968192","0.547372875864368","0.011647354865606","311","96","7","full","0.00013972231583002"
-"lena","(12,18]","peak_voc_mal_ph","1.44977389978799","-0.0432589234149297","0.3330426429248","-0.129890043614317","0.412965844789121","0.412950743822286","0.393014426028024","0.0199514187610991","0.392087207068434","0.0199043483928864","0.585649195365665","0.626168673017449","0.141082771424744","0.765277201650268","0.412987310930742","3.65671084556312e-05","315","97","7","full","3.60559209334777e-06"
-"lena","(12,18]","voc_mal_ph","1.48975358430842","0.263384236239893","0.328341028156636","0.802166691499319","0.460349333954289","0.459729185183799","0.460349333954287",NA,"0.470029600043202",NA,"0.550998487487116","0.685587047750468",NA,"0.742292723584918","0.461076311647876","0.00134712646407691","301","97",NA,"no_exp","4.46426291916265e-05"
-"lena","(12,18]","peak_voc_fem_ph","1.5915207394855","-0.167824331606644","0.362840914266096","-0.462528686838131","0.359121041755205","0.358941361302779","0.267710275964873","0.0914107657903326","0.290016198557954","0.0990272140515901","0.694277716968642","0.53853152048692","0.314685897446311","0.833233290842752","0.359441695261345","0.000500333958566098","317","97","7","full","0.00674722538149824"
-"lena","(12,18]","peak_lena_CTC","1.24532426298121","0.997440059646685","0.296780413207665","3.36086889584843","0.672880620731064","0.663478023151204","0.352724781001475","0.320155839729588","0.467949878678373","0.424741595796771","0.433979924539533","0.684068621322724","0.651722023409345","0.658771526813001","0.677451672101955","0.0139736489507515","313","96","7","full","0.195467308013104"
-"lena","(12,18]","standardScore","1.42019547795022","-0.47478534810463","0.336529217528646","-1.41082950119841","0.497757796097596","0.495871773520462","0.379622969439063","0.118134826658537","0.421050208442842","0.131026564231436","0.557050551905144","0.648883817368597","0.36197591664562","0.746358192763464","0.499660810260661","0.00378903674019878","308","96","7","full","0.221280124905281"
-"lena","(12,18]","lena_CTC_ph","1.32857873869435","1.38421575335876","0.306217445433596","4.52036869224988","0.627866290361462","0.609578413937587","0.416356824042287","0.211509466319175","0.504334617390015","0.256202227538399","0.450766989349063","0.710165204294054","0.506164229809258","0.671391829968956","0.638705437803363","0.0291270238657764","308","96","7","full","3.76390981488875e-05"
-"lena","(12,18]","lena_CVC_ph","1.39361750514459","1.47968983828477","0.309532938227905","4.78039541367095","0.534543249966345","0.513978382044547","0.424694686253813","0.109848563712531","0.434381026355862","0.112353964844876","0.476072782043356","0.659075888161494","0.335192429575723","0.689980276561118","0.552450232401076","0.0384718503565281","314","97","7","full","0.00513845082424697"
-"lena","(18,24]","voc_fem_ph","1.42119598725219","2.28907894509306","0.618696217150568","3.69984312436159","0.328942733896197","0.29251398685194","0.28981313603956","0.0391295978566369","0.265250559247627","0.0358132410988814","0.614183047579046","0.515024814205711","0.189243866740461","0.783698314135641","0.403258938147178","0.110744951295238","93","52","5","full","0.719040583665909"
-"lena","(18,24]","peak_lena_CVC","1.48111122178545","1.69189847400468","0.57304062193605","2.95249308554865","0.537591382477329","0.506944612850248","0.385962605306989","0.15162877717034","0.384467944754183","0.151041586730669","0.460617915754195","0.620054791735523","0.388640691038225","0.678688378973881","0.563952166590888","0.0570075537406404","91","51","5","full","0.0102348051813855"
-"lena","(18,24]","lp_dur","1.20128623362554","1.61818790316387","0.520225458182114","3.11055116144929","0.593442681418795","0.561441455886261","0.411377561045953","0.182065120372841","0.408941378240857","0.180986928566433","0.404149681309266","0.639485244740531","0.42542558522782","0.635727678577287","0.615366167631001","0.0539247117447399","95","52","5","full","0.888806300935333"
-"lena","(18,24]","lp_n","1.36070762448891","1.48927826424929","0.470080422615228","3.16813505221913","0.691316882001901","0.66006316542683","0.510544117256009","0.180772764745891","0.516312707539012","0.182815299325958","0.312170899709465","0.718549029321599","0.427569057961352","0.558722560587511","0.705272124427754","0.0452089590009238","96","52","5","full","0.48996331805644"
-"lena","(18,24]","peak_wc_adu_ph","1.26419781765148","1.96956338894678","0.657725496216954","2.99450667531536","0.141605050459882","0.129571812769291","0.141605050459882",NA,"0.129630688974701",NA,"0.785807627340346","0.360042621052982",NA,"0.886457910642319","0.214549274035756","0.084977461266465","93","51",NA,"no_exp","0.0218358887334142"
-"lena","(18,24]","wc_adu_ph","1.08909067598166","2.52790683863844","0.5825915462844","4.33907229646688","0.412154792297997","0.354426169106936","0.412154792297996",NA,"0.352523840366848",NA,"0.502795197418271","0.593737181223181",NA,"0.709080529572115","0.494491562667426","0.14006539356049","92","52",NA,"no_exp","0.153009270512702"
-"lena","(18,24]","wc_mal_ph","1.30766323974436","0.461144134812927","0.625516593783302","0.737221265424465","0.405494094732921","0.403642601733225","0.365926442699251","0.039567652033669","0.363746714084682","0.0393319578249835","0.590964588264455","0.603114179973147","0.19832286258771","0.768742211839869","0.408208618905227","0.00456601717200237","93","51","5","full","0.00116855728466478"
-"lena","(18,24]","wc_fem_ph","1.34182766674459","2.05571111396365","0.660012985646448","3.11465252755625","0.263245471596028","0.240072629599256","0.263245471596028",NA,"0.244731825039741",NA,"0.684939722797184","0.494703775040924",NA,"0.827610852271274","0.328100134331921","0.0880275047326644","91","52",NA,"no_exp","0.0387031172218382"
-"lena","(18,24]","avg_voc_dur_chi","1.40101240148604","1.15493859240684","0.558011114202958","2.0697411987152","0.589075466969724","0.574596648086327","0.289792655817321","0.299282811152403","0.332645307735101","0.34353880547744","0.471689378601529","0.576754113756548","0.586121835011664","0.686796460824842","0.599175534316095","0.0245788862297675","94","52","5","full","0.625639258151413"
-"lena","(18,24]","avg_voc_dur_och","1.45837919717118","0.460478223415102","0.70500261694918","0.653158176075671","0.0204571027113044","0.0203640510553909","0.0204571027113043",NA,"0.0205848959936167",NA,"0.985661994590833","0.143474373996253",NA,"0.992805114103887","0.02491267444682","0.00454862339142912","94","52",NA,"no_exp","0.460660690528793"
-"lena","(18,24]","avg_voc_dur_mal","1.58609750907531","0.075461391868922","0.649684123958897","0.116150894082331","0.342485305874534","0.342442790054465","0.342485305874534",NA,"0.34329308847399",NA,"0.659065502057051","0.585912184950945",NA,"0.811828493006405","0.342566929161574","0.000124139107108279","90","51",NA,"no_exp","0.65930337446421"
-"lena","(18,24]","avg_voc_dur_fem","1.40643358593842","0.951604664015616","0.599518313155744","1.58728206150461","0.458096712476297","0.449371851324008","0.429479963353592","0.0286167491227042","0.428442806355659","0.0285476421464929","0.540594637912975","0.654555426496228","0.168960475101406","0.735251411364151","0.468417744723079","0.019045893399071","94","52","5","full","0.752651914988137"
-"lena","(18,24]","voc_dur_chi_ph","1.55406151993021","1.57932366136676","0.517880666805624","3.04958992021906","0.564394068397312","0.531958231208334","0.564394068397313",NA,"0.497506178456107",NA,"0.383981077192868","0.705341178761107",NA,"0.619662066930733","0.589428426246147","0.057470195037813","94","51",NA,"no_exp","0.913511249369135"
-"lena","(18,24]","voc_dur_och_ph","1.35713465314093","0.81036762198876","0.590104787309112","1.37326054527375","0.503364049613593","0.496303586679489","0.503364049613593",NA,"0.500709655983306",NA,"0.494017036095072","0.707608405817304",NA,"0.702863454801195","0.510330140501766","0.0140265538222766","91","50",NA,"no_exp","0.329491783092772"
-"lena","(18,24]","voc_dur_mal_ph","1.25476537125519","0.321121792450874","0.626960993552615","0.512187832661275","0.401088009382393","0.400193117705429","0.387910018605107","0.0131779907772855","0.383554149580202","0.0130300141871379","0.592186765530725","0.619317486900057","0.114149087544044","0.769536721365995","0.402424278089262","0.00223116038383302","93","51","5","full","0.00619990092168535"
-"lena","(18,24]","voc_dur_fem_ph","1.38967865470218","2.24004693831304","0.647543103813845","3.45930166674589","0.244735024415699","0.218806348508412","0.243950943805911","0.000784080609788253","0.222112160023182","0.000713888764500623","0.687652740750824","0.471287767741941","0.0267186969087308","0.829248298611956","0.324752262744394","0.105945914235982","92","52","5","full","0.0711253879040026"
-"lena","(18,24]","peak_voc_chi_ph","1.39413722625485","1.6666323477845","0.645750272259374","2.58092395680024","0.309672785072551","0.291674155493613","0.246684068353466","0.0629887167190855","0.237306549319524","0.0605942455483312","0.664084917883953","0.487141200597449","0.246158984293345","0.814914055519938","0.349795599955454","0.0581214444618411","91","50","5","full","0.653262369814693"
+"lena","(0,6]","lena_CTC_ph","1.39370287814851","-1.36717481353465","0.531700379142034","-2.57132563219301","0.638791813838462","0.614728412250087","0.440993795448001","0.197798018390462","0.517245867978205","0.231999199904405","0.423664558777194","0.719198072840998","0.481662952596943","0.65089519799826","0.652398590651058","0.0376701784009714","129","63","6","full","0.00367525918426838"
+"lena","(0,6]","lena_CVC_ph","1.28464567571865","-0.971649061833517","0.509079642391482","-1.90863861157174","0.623274623602921","0.609509953511769","0.538434016947296","0.0848406066556247","0.554387933096724","0.087354452144668","0.387887830620303","0.744572315558888","0.295557865983411","0.622806415044276","0.631594392007891","0.0220844384961225","128","63","6","full","0.00076784984327191"
+"lena","(6,12]","voc_fem_ph","1.42291557987352","-0.883685652420805","0.290472067546369","-3.04223968894957","0.566213066216716","0.559142416828047","0.425071593961684","0.14114147225503","0.467303635964553","0.155164269048077","0.476884868973662","0.683596105872871","0.393908960355152","0.690568511426391","0.571630029372761","0.0124876125447137","421","130","8","full","0.0636461313932213"
+"lena","(6,12]","peak_lena_CVC","1.25148414456127","0.0867372011951166","0.31559872691731","0.27483381204463","0.435295331995529","0.435239656130697","0.327728867408993","0.107566464586539","0.347661774980316","0.114108800674686","0.599050760374723","0.589628505908861","0.337799941792011","0.773983695160772","0.435367559787685","0.000127903656987578","424","129","8","full","3.22326444306276e-06"
+"lena","(6,12]","lp_dur","1.4126918084944","0.0436978682859895","0.312565832725495","0.139803726801983","0.422587809744363","0.422573765592698","0.386235836232499","0.0363519735118631","0.398639665500146","0.0375194044716142","0.595955581502943","0.631379177277923","0.193699262960947","0.77198159401824","0.422606999281273","3.3233688574269e-05","427","130","8","full","0.932579361005012"
+"lena","(6,12]","lp_n","1.3644814164853","0.18947492763481","0.307874029106593","0.615430045153985","0.437671645317471","0.437395058062456","0.389166864694119","0.0485047806233505","0.398740363342254","0.0496979974510233","0.576161623215276","0.63145891659098","0.222930476720935","0.75905310961439","0.438027009567595","0.000631951505138638","424","130","8","full","0.733150920696325"
+"lena","(6,12]","peak_wc_adu_ph","1.44113010241661","-1.13259936622519","0.342615919294381","-3.30574063387885","0.300709362368966","0.294319785209302","0.183950055277294","0.116759307091672","0.192575862791393","0.122234398180578","0.732081856027376","0.43883466452799","0.349620362937541","0.855617821242274","0.315568133146752","0.0212483479374498","421","130","8","full","6.69073039005867e-07"
+"lena","(6,12]","wc_adu_ph","1.29361553121213","-0.802581332686756","0.300150089041022","-2.673933348649","0.526911161704681","0.521323242933171","0.382290313313013","0.144620848391669","0.406473649255806","0.153769431128904","0.503016005970932","0.637552859969905","0.392134455421739","0.709236213098945","0.531928292090665","0.0106050491574947","417","130","8","full","0.000233280012859371"
+"lena","(6,12]","wc_mal_ph","1.40553113926484","-0.499553836132477","0.329564904762093","-1.51579803830477","0.384905616365195","0.383199537279315","0.356107344095086","0.0287982722701096","0.357970359117578","0.0289489336219482","0.618312318046895","0.598306241917613","0.170143861546481","0.786328377999227","0.387631998156325","0.00443246087700936","405","129","8","full","9.98728080023761e-12"
+"lena","(6,12]","wc_fem_ph","1.40068510432398","-0.784030474985207","0.293933849891185","-2.66737048242472","0.570438043308081","0.564923514317999","0.430799907511945","0.139638135796134","0.48136110203045","0.156026883386554","0.479977858068238","0.693801918439586","0.395002384026419","0.692804343280437","0.574590697379813","0.00966718306181432","418","130","8","full","0.00276897062093351"
+"lena","(6,12]","avg_voc_dur_chi","1.42833873136088","-0.935889209774356","0.321957777522291","-2.90686939441791","0.400987494831784","0.394917019430371","0.400987494831781",NA,"0.404570005421132",NA,"0.604364214811479","0.636058177701641",NA,"0.777408653676738","0.41005583418059","0.0151388147502191","413","129",NA,"no_exp","0.00585593802569397"
+"lena","(6,12]","avg_voc_dur_och","1.28791577305975","0.239227692763792","0.292482470923078","0.817921470674074","0.484658097165405","0.484155330954969","0.484658097165403",NA,"0.485154595643136",NA,"0.515869834734972","0.696530398219012",NA,"0.718240791611679","0.485192693609955","0.00103736265498603","420","128",NA,"no_exp","5.26869619910192e-06"
+"lena","(6,12]","avg_voc_dur_mal","1.37366905897952","-0.837520125634883","0.324845216021937","-2.57821289748753","0.37631286785816","0.37163080705625","0.333833017435694","0.0424798504224651","0.33519642119766","0.0426533419132667","0.626234325911898","0.578961502345069","0.2065268551866","0.791349686239843","0.384072743545318","0.0124419364890675","414","129","8","full","0.0241418093367823"
+"lena","(6,12]","avg_voc_dur_fem","1.18841340123386","-0.705867100294496","0.328628061478445","-2.14792095695941","0.321972183268559","0.319118842767252","0.321972183268562",NA,"0.320986516064941",NA,"0.675952141201616","0.566556719194946",NA,"0.822163086742293","0.327980914242935","0.00886207147568298","419","129",NA,"no_exp","0.00761946596904939"
+"lena","(6,12]","voc_dur_chi_ph","1.43517963337807","0.301644225225612","0.296684885017983","1.01671585058109","0.486929314223554","0.486142010087833","0.436730238383957","0.0501990758395945","0.443144827903577","0.0509363878859663","0.520606545569403","0.665691240669109","0.225690912280416","0.721530696207308","0.487758885705552","0.00161687561771881","423","127","8","full","0.178716416125426"
+"lena","(6,12]","voc_dur_och_ph","1.2880095550437","0.499371496211739","0.244245667549091","2.04454597382518","0.686088184684022","0.683143370872564","0.686088184684019",NA,"0.717898763833997",NA,"0.32846638260068","0.847289067458088",NA,"0.57311986756758","0.687435550620294","0.0042921797477304","415","127",NA,"no_exp","3.27829888765707e-07"
+"lena","(6,12]","voc_dur_mal_ph","1.40220625506751","-0.404997499729119","0.34284034649064","-1.18130057875255","0.328742461260691","0.327789463604899","0.309353332044138","0.0193891292165546","0.312087623005427","0.0195605045187495","0.67719060371955","0.558648031416407","0.139858873578867","0.822915915339805","0.330688382266448","0.00289891866154875","403","128","8","full","1.20906272055341e-12"
+"lena","(6,12]","voc_dur_fem_ph","1.43282361020315","-0.953735051123737","0.297238343589955","-3.20865417161464","0.544104423398581","0.536235787646231","0.412408369948081","0.131696053450497","0.455111326149333","0.145332563308632","0.503101429485553","0.674619393546711","0.381225082213424","0.709296432731445","0.550697415624187","0.0144616279779556","421","130","8","full","0.00238401090791885"
+"lena","(6,12]","peak_voc_chi_ph","1.32460449926717","0.416083639715871","0.310758965587014","1.33892722589645","0.424473013807624","0.423159771755537","0.355442519351287","0.0690304944563353","0.361049145992447","0.0701193574600572","0.584605148645708","0.600873652270132","0.264800599432964","0.764594761063472","0.426253589287791","0.00309381753225439","423","127","8","full","0.143222108081206"
+"lena","(6,12]","voc_chi_ph","1.41073647503144","0.724578197820951","0.2915324956958","2.48541143275161","0.515062361408925","0.510442246930119","0.402374677915185","0.112687683493736","0.422885510491478","0.118431877491047","0.509657073637584","0.650296478916715","0.344139328602598","0.713902706002425","0.519412256825945","0.0089700098958255","427","128","8","full","0.0128092636837881"
+"lena","(6,12]","peak_voc_och_ph","1.43332334450371","0.541244507929297","0.257136876918664","2.10488870524978","0.633273439469404","0.630026836829886","0.633273439469406",NA,"0.649018527197119",NA,"0.37584448891312","0.80561686129147",NA,"0.613061570246513","0.635153536352036","0.00512669952215062","423","128",NA,"no_exp","8.34113060032992e-05"
+"lena","(6,12]","voc_och_ph","1.28652396662374","0.580057782007591","0.245822205674801","2.35966388966077","0.680796008578917","0.676849536718986","0.680796008578919",NA,"0.706215524755376",NA,"0.33112240886371","0.840366303914773",NA,"0.575432366889203","0.682646386010405","0.00579684929141938","417","127",NA,"no_exp","3.81261300743015e-06"
+"lena","(6,12]","peak_voc_mal_ph","1.44186546303042","-0.537226708392895","0.322520244135236","-1.66571468973473","0.403224458263342","0.401182578160155","0.362915705327801","0.0403087529355394","0.367562546822843","0.0408248738501332","0.604416768913815","0.606269368204301","0.202051661339701","0.777442453763502","0.406246457747174","0.00506387958701967","415","130","8","full","6.68122846327845e-08"
+"lena","(6,12]","voc_mal_ph","1.31724083619458","-0.667152573540213","0.322842322460089","-2.06649663667529","0.403935387362196","0.400739412656702","0.369397481318807","0.034537906043389","0.370183402215719","0.0346113880335698","0.597332784887678","0.608426990045411","0.186041361082878","0.772873071653864","0.408651506534795","0.0079120938780925","410","129","8","full","5.02213613190478e-11"
+"lena","(6,12]","peak_voc_fem_ph","1.48659886213676","-1.19186822237046","0.329151096938516","-3.62103676231435","0.349079233505991","0.340694209829058","0.266680359093655","0.0823988744123352","0.275447256667442","0.0851076696705366","0.67231925158642","0.524830693335901","0.291732188266116","0.819950761684151","0.364714612282442","0.0240204024533837","427","130","8","full","5.49564744272812e-07"
+"lena","(6,12]","peak_lena_CTC","1.40072289076763","0.0390748839537809","0.302660237070755","0.129104782088194","0.503536711453771","0.50352430190084","0.33924001894828","0.164296692505492","0.38168372720655","0.184852524644992","0.558577844032118","0.617805573952315","0.429944792554803","0.747380655377243","0.503548946683731","2.46447828907288e-05","427","127","8","full","4.31321287894497e-06"
+"lena","(6,12]","standardScore","1.30714927580513","-1.82559921946296","0.3394139930707","-5.37867989161747","0.270177411373237","0.25419480078843","0.251681543721494","0.0184958676517453","0.241778362414897","0.0177680910811251","0.701105483232581","0.491709632216918","0.13329700327136","0.837320418497353","0.313350784642049","0.0591559838536192","402","126","8","full","0.524542338093347"
+"lena","(6,12]","lena_CTC_ph","1.40202916797513","0.122477709435781","0.294048359211503","0.416522335864099","0.576821776652799","0.576688146900199","0.370685025198418","0.20613675145438","0.431495844074895","0.239953452438639","0.492600542953075","0.656883432638466","0.489850438847042","0.701855072613339","0.576919812482202","0.000231665582002859","420","128","8","full","0.000158722344114973"
+"lena","(6,12]","lena_CVC_ph","1.33362952780026","0.682719701940134","0.29571307538398","2.30872341729776","0.499757373781533","0.495699080454271","0.408197204714568","0.0915601690669669","0.419711964130595","0.0941429729341175","0.514353877897848","0.64785180722955","0.306827268889383","0.717184688833949","0.503819607614388","0.00812052716011679","423","127","8","full","1.34208175734322e-05"
+"lena","(12,18]","voc_fem_ph","1.48049971835732","0.061128523311358","0.310138976654869","0.197100422432178","0.497653395727659","0.497617763652806","0.497653395727661",NA,"0.501957918968081",NA,"0.506691722082046","0.708489886284964",NA,"0.711822816494418","0.49768936383711","7.16001843043573e-05","319","97",NA,"no_exp","0.144947862844237"
+"lena","(12,18]","peak_lena_CVC","1.44231667424821","1.43790074944214","0.32526684925997","4.42068028977922","0.514925411522965","0.497474368919081","0.29164677490621","0.223278636616755","0.323997965406621","0.248046027616308","0.538881939591327","0.569208191619394","0.49804219461438","0.734085784899372","0.531364796956552","0.0338904280374701","314","96","7","full","0.000321611674691539"
+"lena","(12,18]","lp_dur","1.28229137513026","0.996297819110229","0.323859924593705","3.07632326031115","0.450523258268944","0.44219285325709","0.450523258268945",NA,"0.459017269307493",NA,"0.559836387818191","0.677508132281446",NA,"0.748222151381654","0.460683363700129","0.0184905104430395","319","97",NA,"no_exp","0.458763666031182"
+"lena","(12,18]","lp_n","1.24377780907464","0.896426357192127","0.302788121876589","2.96057306223358","0.582807233227144","0.574914594418459","0.438904545764782","0.143902687462364","0.495745739983509","0.162539087302772","0.471222134460227","0.704092138845129","0.403161366332107","0.686456214525171","0.588457046122398","0.0135424517039394","319","97","7","full","0.166749349778019"
+"lena","(12,18]","peak_wc_adu_ph","1.26912861169887","0.103346660235713","0.354346147023586","0.291654533579094","0.395314233558023","0.395238174409474","0.286014142922742","0.109300090635281","0.311476524371785","0.119030520647346","0.658517858395946","0.558100819182148","0.34500800084541","0.811491132666245","0.395430576154951","0.000192401745476771","311","97","7","full","1.51370402758308e-05"
+"lena","(12,18]","wc_adu_ph","1.38631105915601","0.232681889886343","0.330432949512016","0.704172783706854","0.441362156874845","0.440903708499477","0.441362156874847",NA,"0.449554071369965",NA,"0.569006456231956","0.670487935290386",NA,"0.754325166113365","0.441942420967745","0.00103871246826851","310","97",NA,"no_exp","0.00938922668891039"
+"lena","(12,18]","wc_mal_ph","1.48825123647475","0.229891323311862","0.334414940589927","0.68744333882428","0.457781427460554","0.457319484652005","0.438509950044909","0.0192714774156439","0.454130778237056","0.0199579759493437","0.561533762909385","0.673892260110662","0.141272700651413","0.749355565075342","0.458328574975111","0.00100909032310589","301","97","7","full","8.41934456406968e-06"
+"lena","(12,18]","wc_fem_ph","1.49310847000819","-0.00390314074072079","0.31705975004749","-0.0123104264736731","0.483079509843121","0.483079370211687","0.483079509843124",NA,"0.488838574199409",NA,"0.523082992000235","0.699169917973742",NA,"0.723244766313753","0.483079659256102","2.89044414551772e-07","316","97",NA,"no_exp","0.0551416064840744"
+"lena","(12,18]","avg_voc_dur_chi","1.38225176135204","-0.329307079196116","0.34423353296685","-0.956638582993101","0.352637849672147","0.351901121262061","0.352637849672146",NA,"0.353409392219187",NA,"0.648778525350518","0.594482457452856",NA,"0.805467892190941","0.353990313930321","0.00208919266825987","321","97",NA,"no_exp","0.0310856954930445"
+"lena","(12,18]","avg_voc_dur_och","1.51548909688664","0.30333045034522","0.304119413464366","0.997405745624198","0.518321275762622","0.51739908842314","0.50287340662518","0.0154478691374418","0.501529852952103","0.0154065962424202","0.480391797526468","0.708187724372643","0.124123310632694","0.693103020860873","0.519178269372495","0.00177918094935572","317","96","7","full","0.369884830210971"
+"lena","(12,18]","avg_voc_dur_mal","1.40790796194206","-0.337260986515573","0.339115088062517","-0.994532530069551","0.409130194723003","0.408244760933689","0.349791913006598","0.0593382817164069","0.358513008909159","0.0608177179935179","0.605601513032778","0.598759558511728","0.246612485477759","0.778204030465519","0.410408946810786","0.00216418587709703","316","97","7","full","0.000112335923564536"
+"lena","(12,18]","avg_voc_dur_fem","1.29236071623025","-0.276414442566853","0.36495786725707","-0.757387269506789","0.273061563274761","0.272660795930004","0.27306156327476",NA,"0.27260949936068",NA,"0.725734962200815","0.522120196277333",NA,"0.851900793637859","0.274128477210192","0.0014676812801875","316","96",NA,"no_exp","0.0517711423569561"
+"lena","(12,18]","voc_dur_chi_ph","1.37872241614721","1.26656590434171","0.320909201777201","3.94680457066187","0.448064654990255","0.434380350126147","0.356313194027119","0.0917514609631357","0.351425102176334","0.0904927661515217","0.544363605575653","0.592811185940628","0.30082015582657","0.737810006421472","0.464921265843782","0.0305409157176354","320","97","7","full","0.00780845871755234"
+"lena","(12,18]","voc_dur_och_ph","1.34426351892087","0.691151327604981","0.289115772523325","2.39056943027632","0.569726972602321","0.564482117502348","0.563859911829201","0.00586706077311922","0.557400377552141","0.00579984819181226","0.425343853837613","0.746592511047453","0.0761567343825368","0.65218391105394","0.573688027266486","0.00920590976413806","312","97","7","full","9.97658016763463e-05"
+"lena","(12,18]","voc_dur_mal_ph","1.44794086018816","0.165535218416396","0.331118040856693","0.499928116233447","0.465175762526472","0.464931057470423","0.453173504884376","0.0120022576420942","0.466998803139684","0.0123684193656957","0.551140514832076","0.683373106830876","0.111213395621641","0.742388385437216","0.465457106064873","0.00052604859445047","301","97","7","full","2.05024802008683e-05"
+"lena","(12,18]","voc_dur_fem_ph","1.49913892840651","0.0711044665195417","0.321137044401772","0.221414712998926","0.464983485426361","0.464938773733356","0.46498348542636",NA,"0.470848614085883",NA,"0.541765013802739","0.686184096351616",NA,"0.736046882883651","0.465034931326918","9.61575935614836e-05","317","97",NA,"no_exp","0.0243333285090464"
+"lena","(12,18]","peak_voc_chi_ph","1.31926430268882","1.2609669745973","0.341069796926143","3.69709363292098","0.400605236537555","0.389054066009671","0.228122964882814","0.172482271654741","0.233580255090696","0.176608492846975","0.613733833511704","0.483301412258123","0.420248132472917","0.783411662864234","0.417888363403586","0.0288342973939149","315","96","7","full","0.00697248160062299"
+"lena","(12,18]","voc_chi_ph","1.35213990906437","1.47846220458698","0.320721989949148","4.60979368711637","0.438265063654131","0.419913987482514","0.344126185411414","0.0941388782427197","0.331629126403946","0.0907201929866423","0.541335341825975","0.575872491445759","0.301197929917591","0.73575494685797","0.461786082005885","0.0418720945233704","318","97","7","full","0.00570279329988361"
+"lena","(12,18]","peak_voc_och_ph","1.50663733270226","0.425212028778827","0.289328141047457","1.46965320151517","0.606952773639981","0.605013636500578","0.462835941156602","0.144116832483379","0.508904839425685","0.158461664213491","0.432169626061468","0.713375665008055","0.398072435887604","0.657396095258763","0.608208509682842","0.00319487318226427","318","97","7","full","5.71168094655533e-05"
+"lena","(12,18]","voc_och_ph","1.35595084686801","0.765622758957536","0.292790764568459","2.61491430607785","0.542038840669798","0.535725521973845","0.540048335552159","0.00199050511764066","0.517920392715841","0.00190894615234264","0.439196656807383","0.719666862316059","0.0436914883283076","0.662719138706121","0.547372876779917","0.0116473548060719","311","96","7","full","0.000139722315618517"
+"lena","(12,18]","peak_voc_mal_ph","1.44977389978799","-0.0432589234078456","0.333042642925009","-0.129890043592965","0.412965844793909","0.412950743827079","0.393014426025045","0.0199514187688606","0.392087207068052","0.0199043484007612","0.585649195364756","0.626168673017145","0.141082771452652","0.765277201649674","0.412987310935523","3.65671084434135e-05","315","97","7","full","3.60559209364985e-06"
+"lena","(12,18]","voc_mal_ph","1.48975358430842","0.26338423688273","0.328341025786998","0.802166699246392","0.460349355597118","0.459729206807312","0.460349355597117",NA,"0.470029631903866",NA,"0.550998476833665","0.685587070986513",NA,"0.742292716408874","0.461076333250013","0.00134712644270113","301","97",NA,"no_exp","4.46426418558687e-05"
+"lena","(12,18]","peak_voc_fem_ph","1.5915207394855","-0.16782450047511","0.362840874299817","-0.462529203191249","0.359121771801825","0.358942090766052","0.267710430554852","0.091411341246971","0.290016597497463","0.099027916492384","0.694277480212542","0.538531890882484","0.314687013542637","0.833233148772024","0.359442425331879","0.000500334565827436","317","97","7","full","0.00674716553202924"
+"lena","(12,18]","peak_lena_CTC","1.24532426298121","0.997440059643694","0.296780413206019","3.360868895857","0.672880620848035","0.663478023269761","0.35272478087698","0.320155839971055","0.467949878672945","0.424741596262105","0.43397992453249","0.684068621318757","0.651722023766348","0.658771526807656","0.677451672215727","0.0139736489459656","313","96","7","full","0.195467308069806"
+"lena","(12,18]","standardScore","1.42019547795022","-0.474785348100898","0.33652921752929","-1.41082950118462","0.497757796112671","0.495871773535571","0.379622969415047","0.118134826697621","0.421050208430254","0.131026564279158","0.55705055190701","0.648883817358897","0.361975916711537","0.746358192764714","0.499660810275585","0.0037890367400135","308","96","7","full","0.221280124906666"
+"lena","(12,18]","lena_CTC_ph","1.32857873869435","1.38421575335251","0.306217445434849","4.52036869221095","0.627866290377567","0.60957841395431","0.416356824000423","0.211509466377142","0.504334617365623","0.256202227621985","0.450766989353078","0.71016520427688","0.506164229891826","0.671391829971945","0.638705437818355","0.0291270238640451","308","96","7","full","3.76390981399982e-05"
+"lena","(12,18]","lena_CVC_ph","1.39361750514459","1.47968983828394","0.309532938225257","4.78039541370917","0.534543250000765","0.513978382078684","0.424694686262148","0.10984856373862","0.434381026386752","0.112353964877344","0.476072782032662","0.659075888184928","0.335192429624155","0.689980276553368","0.552450232433266","0.038471850354582","314","97","7","full","0.00513845082491965"
+"lena","(18,24]","voc_fem_ph","1.42119598725219","2.28907894509088","0.618696217149348","3.69984312436537","0.328942733910848","0.292513986865439","0.289813136039337","0.0391295978715107","0.265250559250768","0.0358132411129464","0.614183047573383","0.515024814208761","0.189243866777622","0.783698314132028","0.403258938159248","0.110744951293809","93","52","5","full","0.719040583615607"
+"lena","(18,24]","peak_lena_CVC","1.48111122178545","1.69189847400529","0.573040621938804","2.95249308553552","0.537591382466947","0.506944612840252","0.385962605296034","0.151628777170913","0.384467944740816","0.151041586730275","0.460617915761596","0.620054791724744","0.388640691037718","0.678688378979334","0.563952166581274","0.0570075537410221","91","51","5","full","0.0102348051786488"
+"lena","(18,24]","lp_dur","1.20128623362554","1.61818790316113","0.520225458180465","3.1105511614539","0.593442681394972","0.561441455861716","0.411377561098251","0.182065120296721","0.40894137826436","0.180986928478157","0.404149681304797","0.639485244758908","0.425425585124069","0.635727678573772","0.615366167609837","0.053924711748121","95","52","5","full","0.8888063009438"
+"lena","(18,24]","lp_n","1.36070762448891","1.48927826422528","0.470080422607245","3.16813505222187","0.691316882075144","0.660063165503476","0.51054411715839","0.180772764916755","0.516312707539798","0.182815299533986","0.312170899695558","0.718549029322146","0.42756905820462","0.558722560575066","0.705272124494689","0.0452089589912132","96","52","5","full","0.489963318136959"
+"lena","(18,24]","peak_wc_adu_ph","1.26419781765148","1.96956337482819","0.65772549451911","2.99450666157958","0.141605066168785","0.129571827328186","0.141605066168785",NA,"0.129630703673547",NA,"0.785807614889399","0.360042641465628",NA,"0.886457903619455","0.214549287288944","0.0849774599607576","93","51",NA,"no_exp","0.0218358909962958"
+"lena","(18,24]","wc_adu_ph","1.08909067598166","2.52790683863856","0.582591546284432","4.33907229646684","0.412154792297805","0.354426169106762","0.412154792297805",NA,"0.352523840366653",NA,"0.50279519741839","0.593737181223016",NA,"0.709080529572199","0.494491562667274","0.140065393560512","92","52",NA,"no_exp","0.153009270512864"
+"lena","(18,24]","wc_mal_ph","1.30766323974436","0.461144088064586","0.62551659263926","0.737221192037236","0.405494122585092","0.403642629903511","0.365926415960025","0.0395677066250665","0.36374670163851","0.0393320136194826","0.590964583540766","0.603114169654892","0.198323003253487","0.76874220876752","0.408208645977376","0.0045660160738649","93","51","5","full","0.00116855780310243"
+"lena","(18,24]","wc_fem_ph","1.34182766674459","2.05571111396074","0.66001298564553","3.11465252755616","0.263245471602699","0.240072629605438","0.263245471602698",NA,"0.244731825046389",NA,"0.684939722792233","0.494703775047643",NA,"0.827610852268283","0.328100134337728","0.0880275047322901","91","52",NA,"no_exp","0.038703117224497"
+"lena","(18,24]","avg_voc_dur_chi","1.40101240148604","1.15493859240684","0.558011114202958","2.0697411987152","0.589075466969724","0.574596648086328","0.289792655817321","0.299282811152403","0.332645307735101","0.34353880547744","0.471689378601529","0.576754113756548","0.586121835011664","0.686796460824842","0.599175534316095","0.0245788862297675","94","52","5","full","0.625639258151413"
+"lena","(18,24]","avg_voc_dur_och","1.45837919717118","0.460478223424968","0.70500261695048","0.653158176088461","0.020457102690914","0.0203640510350892","0.020457102690914",NA,"0.0205848959730856",NA,"0.98566199461071","0.143474373924703",NA,"0.992805114113898","0.0249126744267153","0.00454862339162608","94","52",NA,"no_exp","0.460660690543659"
+"lena","(18,24]","avg_voc_dur_mal","1.58609750907531","0.075461391873075","0.649684123959459","0.116150894088623","0.342485305871548","0.342442790051475","0.342485305871548",NA,"0.343293088470623",NA,"0.659065502059325","0.585912184948072",NA,"0.811828493007806","0.342566929158597","0.000124139107122076","90","51",NA,"no_exp","0.659303374457944"
+"lena","(18,24]","avg_voc_dur_fem","1.40643358593842","0.951604664025547","0.599518313156217","1.58728206151992","0.458096712468636","0.449371851316216","0.429479963362917","0.0286167491057198","0.428442806360005","0.0285476421292193","0.540594637914365","0.654555426499548","0.168960475050289","0.735251411365095","0.468417744715893","0.019045893399677","94","52","5","full","0.7526519150318"
+"lena","(18,24]","voc_dur_chi_ph","1.55406151993021","1.57932366247454","0.517880667092079","3.04958992067132","0.564394067297864","0.531958230102644","0.564394067297863",NA,"0.49750617705507",NA,"0.383981077828683","0.705341177767944",NA,"0.619662067443766","0.589428425263469","0.0574701951608251","94","51",NA,"no_exp","0.913511247994184"
+"lena","(18,24]","voc_dur_och_ph","1.35713465314093","0.810367621986885","0.590104787308158","1.37326054527279","0.503364049617438","0.496303586683329","0.503364049617438",NA,"0.500709655988364",NA,"0.494017036092464","0.707608405820877",NA,"0.70286345479934","0.510330140505508","0.0140265538221785","91","50",NA,"no_exp","0.329491783085477"
+"lena","(18,24]","voc_dur_mal_ph","1.25476537125519","0.321121792446013","0.626960993552642","0.512187832653501","0.401088009383873","0.400193117706934","0.387910018602249","0.0131779907816238","0.383554149578287","0.0130300141914585","0.59218676553067","0.619317486898511","0.114149087562969","0.769536721365959","0.402424278090695","0.00223116038376034","93","51","5","full","0.00619990092196736"
+"lena","(18,24]","voc_dur_fem_ph","1.38967865470218","2.24004693833489","0.647543103818404","3.45930166675528","0.244735024394035","0.218806348488631","0.243950943764251","0.000784080629783961","0.222112159985627","0.000713888782707497","0.68765274077171","0.471287767702098","0.026718697249445","0.82924829862455","0.3247522627263","0.105945914237669","92","52","5","full","0.0711253878489322"
+"lena","(18,24]","peak_voc_chi_ph","1.39413722625485","1.66663234778322","0.645750272258693","2.58092395680099","0.309672785077491","0.291674155498338","0.246684068356386","0.0629887167211044","0.237306549322983","0.0605942455504392","0.664084917881018","0.487141200601","0.246158984297627","0.814914055518138","0.349795599959946","0.0581214444616077","91","50","5","full","0.653262369818898"
 "lena","(18,24]","voc_chi_ph","1.52072952482584","1.59644419944874","0.535570370713539","2.98082994643973","0.534773725536116","0.503886461914962","0.534773725536115",NA,"0.479128644247111",NA,"0.416817849322259","0.692191190529836",NA,"0.645614319328699","0.561644093126534","0.057757631211572","94","51",NA,"no_exp","0.964130897319149"
-"lena","(18,24]","peak_voc_och_ph","1.30819975925968","0.108214930367821","0.601340001147792","0.179956314499732","0.463854269935078","0.463739297924976","0.463854269935078",NA,"0.469668413304597",NA,"0.542866004822745","0.685323582918753",NA,"0.73679441150347","0.46398716027648","0.000247862351503346","93","52",NA,"no_exp","0.336676159960903"
-"lena","(18,24]","voc_och_ph","1.36220340588782","0.543876744161592","0.55384426914622","0.98200301864639","0.616674086759495","0.613006639955049","0.547598428413257","0.0690756583462371","0.575569205337323","0.0726039734951393","0.402905815322277","0.758662774450759","0.26945124511707","0.634748623726178","0.618953779429837","0.00594713947478796","90","50","5","full","0.742784148416362"
-"lena","(18,24]","peak_voc_mal_ph","1.25070416821664","0.429655925629675","0.635894499738811","0.675671712534316","0.337152730471644","0.335821145823087","0.297260099957353","0.0398926305142907","0.299462317209745","0.0401881704780277","0.667757897267718","0.547231502391579","0.200469874240564","0.817164547241079","0.339770645643817","0.00394949982072954","95","51","5","full","0.000266326900630231"
-"lena","(18,24]","voc_mal_ph","1.3037645581556","0.123039525724635","0.613364590423668","0.200597699387322","0.461936922994735","0.461787712318924","0.440783199618433","0.0211537233763025","0.437465656716131","0.0209945104459888","0.534013359720998","0.661411866174271","0.144894825463123","0.730762177264942","0.462110723250467","0.000323010931543411","92","51","5","full","0.00615483418180813"
-"lena","(18,24]","peak_voc_fem_ph","1.48568071224418","2.22625529977309","0.661718989533418","3.36435153741445","0.0757169251791014","0.0676632385578892","0.0757169251791013",NA,"0.068422205717012",NA,"0.835235801461246","0.261576386008011",NA,"0.913912359836131","0.174028976497749","0.106365737939859","94","52",NA,"no_exp","0.137746847375784"
-"lena","(18,24]","peak_lena_CTC","1.36311242446992","2.75155518718428","0.547926942465865","5.02175559172416","0.407483581551814","0.341742325848729","0.171429384779338","0.236054196772476","0.145386415796413","0.20019364618631","0.502503339725525","0.381295706501415","0.447430046137169","0.708874699594735","0.503077060987562","0.161334735138832","94","51","5","full","0.212851774915248"
-"lena","(18,24]","standardScore","1.38029638474242","1.47267456534427","0.632614714761101","2.32791702592693","0.364093041389826","0.346791164485396","0.364093041389827",NA,"0.342475412104287",NA,"0.598150672912278","0.58521398830196",NA,"0.773402012482692","0.394311646718137","0.0475204822327404","89","52",NA,"no_exp","0.0858191293578022"
+"lena","(18,24]","peak_voc_och_ph","1.30819975925968","0.108214929667713","0.601339999423067","0.179956313851624","0.463854277027436","0.463739305017515","0.463854277027436",NA,"0.469668422326981",NA,"0.542865999769554","0.685323589501325",NA,"0.736794408074297","0.46398716736484","0.000247862347325604","93","52",NA,"no_exp","0.336676165033925"
+"lena","(18,24]","voc_och_ph","1.36220340588782","0.543877041332919","0.553844369820154","0.982003376705857","0.616673375781366","0.613005924303139","0.547599187447454","0.069074188333911","0.575569226668399","0.072602330451616","0.402906019074578","0.758662788509097","0.269448196230029","0.634748784224577","0.618953078213553","0.00594715391041483","90","50","5","full","0.742783168437976"
+"lena","(18,24]","peak_voc_mal_ph","1.25070416821665","0.429655925630393","0.635894499739164","0.675671712535071","0.337152730470503","0.335821145821947","0.297260099954634","0.0398926305158693","0.299462317207116","0.0401881704796329","0.667757897269113","0.547231502389177","0.200469874244568","0.817164547241933","0.339770645642689","0.00394949982074124","95","51","5","full","0.000266326900624176"
+"lena","(18,24]","voc_mal_ph","1.3037645581556","0.123039525724226","0.613364590423747","0.200597699386629","0.461936922994674","0.461787712318864","0.440783199617396","0.0211537233772774","0.437465656715261","0.0209945104469639","0.534013359721252","0.661411866173613","0.144894825466488","0.730762177265116","0.462110723250405","0.000323010931541146","92","51","5","full","0.00615483418181777"
+"lena","(18,24]","peak_voc_fem_ph","1.48568071224418","2.22625529977313","0.661718989531897","3.36435153742225","0.0757169251953021","0.0676632385723766","0.075716925195302",NA,"0.0684222057317495",NA,"0.835235801447799","0.261576386036182",NA,"0.913912359828774","0.174028976512104","0.106365737939727","94","52",NA,"no_exp","0.137746847386192"
+"lena","(18,24]","peak_lena_CTC","1.36311242446992","2.75155518718428","0.547926942464873","5.02175559173326","0.407483581556916","0.341742325853048","0.171429384785686","0.23605419677123","0.145386415801903","0.200193646185398","0.502503339721563","0.381295706508613","0.447430046136151","0.70887469959194","0.503077060991783","0.161334735138735","94","51","5","full","0.21285177491806"
+"lena","(18,24]","standardScore","1.38029638474242","1.47267456534343","0.632614714760968","2.32791702592609","0.364093041390536","0.346791164486096","0.364093041390537",NA,"0.342475412105046",NA,"0.598150672911771","0.585213988302609",NA,"0.773402012482364","0.394311646718772","0.0475204822326766","89","52",NA,"no_exp","0.0858191293585431"
 "lena","(18,24]","lena_CTC_ph","1.58171319589329","2.03276282037859","0.529447351252879","3.83940502406571","0.550858185700491","0.504076197080095","0.31184466550973","0.239013520190761","0.296275301374607","0.227080372246784","0.426717661416507","0.544311768543183","0.476529508264477","0.653236298299863","0.589001845522455","0.0849256484423598","95","52","5","full","0.919499803991051"
-"lena","(18,24]","lena_CVC_ph","1.55058391370275","2.04480908178096","0.507506708212767","4.02912719909053","0.616919272766893","0.560517574992869","0.585084957197207","0.031834315569687","0.522690835252891","0.0284394681321731","0.342228564969357","0.722973606193816","0.16864005494595","0.585003046974422","0.651942337135671","0.0914247621428024","92","51","5","full","0.481974248240425"
-"lena","(24,30]","voc_fem_ph","1.52335026028621","-1.1474244554249","0.531123815163361","-2.1603709392545","0.481369007943718","0.467639981095211","0.314316182072759","0.167052825870959","0.354811671129123","0.188575376308168","0.585449746103901","0.595660701346935","0.434252664134796","0.765146878778121","0.496160776206542","0.0285207951113315","96","40","3","full","0.410235515382895"
-"lena","(24,30]","peak_lena_CVC","1.37880167888979","0.638469871796075","0.504011084082233","1.26677744192607","0.582320323903505","0.57700242947171","0.43101011920821","0.151310204695294","0.487533483205872","0.171153269615126","0.4724548642285","0.698235979598496","0.413706743497282","0.687353522016509","0.586134678877238","0.00913224940552879","90","39","3","full","0.0155380838044035"
-"lena","(24,30]","lp_dur","1.34096311438815","0.485786188660149","0.529127960784744","0.918088297469076","0.451989804708955","0.449362336307229","0.419818191899486","0.0321716128094696","0.424670417306282","0.0325434497619023","0.554344053718531","0.651667413107547","0.18039803148012","0.744542848812969","0.455175450617225","0.00581311430999522","94","40","3","full","0.00123273041081229"
-"lena","(24,30]","lp_n","1.23938400608957","-0.000876622400857196","0.538313750427429","-0.00162845998297674","0.42857028788211","0.428570279702491","0.427142800810951","0.00142748707115849","0.431050816893346","0.00144054743977738","0.57665783840417","0.656544603887158","0.0379545443890107","0.759379903871685","0.428570298788319","1.90858277653267e-08","94","40","3","full","0.000363242751171082"
-"lena","(24,30]","peak_wc_adu_ph","1.52312744022119","-0.55306894297553","0.596536675202208","-0.927133177164767","0.273638943381669","0.271691048062643","0.153649610104206","0.119989333277462","0.165010201255322","0.128861140742094","0.780066959202379","0.406214476914993","0.358972339800846","0.8832139940028","0.278809535274124","0.00711848721148137","96","40","3","full","0.0370382337494563"
-"lena","(24,30]","wc_adu_ph","1.42819946264408","-0.614890395486054","0.558658866777776","-1.10065449964593","0.40563061554437","0.402135299347316","0.276731207195268","0.128899408349103","0.305873301468289","0.14247358651252","0.656961416667528","0.553058135703914","0.377456734623348","0.810531564263557","0.410752292402348","0.00861699305503274","95","40","3","full","0.319223118423597"
-"lena","(24,30]","wc_mal_ph","1.27543013850129","1.03089778258184","0.569556857669939","1.8099997721022","0.364364577423098","0.3553979730285","0.195787364089","0.168577213334098","0.213417890174877","0.183757482862729","0.692873983149968","0.461971741749295","0.428669433086532","0.832390523222104","0.380006853666714","0.0246088806382131","93","40","3","full","0.0201332619903069"
-"lena","(24,30]","wc_fem_ph","1.56458632225762","-0.726672564194502","0.602232001727279","-1.20663226482537","0.250684334222953","0.247554346459776","0.163720230669718","0.0869641035532349","0.173109148468761","0.0919512625401775","0.792286917177911","0.416063875467171","0.303234665795614","0.890105003456284","0.260040119744649","0.0124857732848737","95","40","3","full","0.1432774217486"
-"lena","(24,30]","avg_voc_dur_chi","1.29667888273057","0.685687525019596","0.424602418381583","1.61489312197789","0.675086352478835","0.667855293709892","0.595808351289574","0.0792780011892592","0.653008417466655","0.0868890172225145","0.356106701629624","0.80808936230262","0.294769430610629","0.596746765076799","0.678566603074081","0.0107113093641885","96","40","3","full","0.682091798499465"
-"lena","(24,30]","avg_voc_dur_och","1.16256176734647","0.590278567319087","0.597509748558099","0.98789780207526","0.263086584731801","0.260861273072294","0.21553193966241","0.0475546450693903","0.224911294522303","0.0496240919088735","0.768981852241586","0.474248136024068","0.222764655878965","0.876916103308399","0.269319749439593","0.00845847636729889","94","40","3","full","0.0140424654664943"
-"lena","(24,30]","avg_voc_dur_mal","1.23426633960677","0.53005515408904","0.584484023786858","0.906877061677109","0.301076081468158","0.299005163645856","0.254575081974192","0.0465009994939663","0.258830290767873","0.0472782611977718","0.71060639421323","0.508753664132135","0.217435648406079","0.842974729285066","0.305883550704048","0.00687838705819195","94","40","3","full","0.930812236175586"
-"lena","(24,30]","avg_voc_dur_fem","1.334002216827","-0.0461645575116036","0.534301811934065","-0.0864016488068741","0.473494108466864","0.473470317016066","0.473494108466863",NA,"0.505674898181793",NA,"0.562289600508864","0.711108218333745",NA,"0.749859720553694","0.473520563577475","5.02465614091743e-05","93","39",NA,"no_exp","0.292833597035185"
-"lena","(24,30]","voc_dur_chi_ph","1.13546803644543","0.888362944489558","0.462465726052539","1.92092709674367","0.632302670455854","0.62069630419019","0.62906450900076","0.00323816145509511","0.681594051209929","0.00350856160706954","0.398401608860697","0.825587094866392","0.0592331124209216","0.631190627988642","0.63905201705994","0.0183557128697499","92","40","3","full","0.160682756836922"
-"lena","(24,30]","voc_dur_och_ph","1.48416875315375","0.293209199341587","0.502857401178039","0.583086176428324","0.556352712938196","0.55522963586745","0.553123235784446","0.00322947715374939","0.598056591726539","0.00349182600671428","0.479687287142473","0.773341187139634","0.0590916745973092","0.692594605193019","0.557248278078818","0.0020186422113673","91","40","3","full","0.792679795939992"
-"lena","(24,30]","voc_dur_mal_ph","1.25526632466989","1.2974992076191","0.592799118974219","2.18876709848067","0.271745515421598","0.260812393659086","0.154296032722371","0.117449482699227","0.16076137756976","0.122370875650167","0.758769957312099","0.400950592429741","0.349815488007846","0.871074025162098","0.301045336401672","0.0402329427425866","92","40","3","full","0.0105307314295522"
-"lena","(24,30]","voc_dur_fem_ph","1.54786449277152","-0.75563101334864","0.588380303344845","-1.28425613341066","0.302989710398062","0.298949375036584","0.197777324172499","0.105212386225563","0.211538056381557","0.112532737423475","0.745506101658758","0.459932665051698","0.335458995144675","0.863426952126674","0.312284268014203","0.0133348929776185","95","40","3","full","0.156874631366519"
-"lena","(24,30]","peak_voc_chi_ph","1.35332795546294","0.492339270160171","0.438991540389889","1.12152336631112","0.669608959160999","0.665836324184471","0.563278809113628","0.106330150047371","0.615400691769241","0.116169198692293","0.360963117726066","0.78447478721068","0.340836029040789","0.60080206201882","0.671470410952448","0.00563408676797698","93","40","3","full","0.818145003215389"
-"lena","(24,30]","voc_chi_ph","1.2216576916972","0.0628279977100034","0.507072917195732","0.123903280138607","0.583545355142609","0.583492581513236","0.583545355142609",NA,"0.633177324753637",NA,"0.451875138047475","0.79572440251235",NA,"0.672216585668246","0.583583017721678","9.04362084423246e-05","89","39",NA,"no_exp","0.307578822158577"
-"lena","(24,30]","peak_voc_och_ph","1.24726952808657","-0.577780192398973","0.532134620908758","-1.08577824049911","0.45706080731699","0.453602146064597","0.336250782965069","0.12081002435192","0.370567004975814","0.133139344689041","0.598349091539306","0.608742149826849","0.364882645091598","0.773530278359746","0.461169325741838","0.00756717967724042","96","40","3","full","0.755342108378802"
-"lena","(24,30]","voc_och_ph","1.50998946421765","0.182906954946755","0.462556178354191","0.3954264660296","0.634197129417723","0.633710729824738","0.619048808201589","0.0151483212161343","0.6846663544572","0.0167540034417123","0.404577013206992","0.827445680668647","0.129437256776062","0.636063686439489","0.634477683143229","0.000766953318490416","92","40","3","full","0.732895545274855"
-"lena","(24,30]","peak_voc_mal_ph","1.47247784961578","0.97220431880937","0.599881157437752","1.62066153729833","0.157900961588224","0.154082956558643","0.157900961588224",NA,"0.154569701649063",NA,"0.824333150457386","0.393153534448138",NA,"0.907927943427993","0.178262701831742","0.0241797452730985","96","40",NA,"no_exp","0.0206752320647669"
-"lena","(24,30]","voc_mal_ph","1.25863551145159","0.449242202396393","0.584828440068782","0.76816066322554","0.342992892014113","0.34142058128541","0.16712272473477","0.175870167279344","0.187221252543293","0.197020680791873","0.736020154543189","0.432690712337685","0.443870117029603","0.857916169880944","0.346004672575087","0.00458409128967722","94","40","3","full","0.0464110567563693"
-"lena","(24,30]","peak_voc_fem_ph","1.52652203900561","-0.872863003818493","0.563831207461988","-1.54809274879901","0.433879211841719","0.426759247312967","0.261802313606079","0.17207689823564","0.300832273403535","0.197730431726996","0.650519093497814","0.54848178949126","0.444668901236635","0.806547638703266","0.443169262668461","0.0164100153554941","94","40","3","full","0.266276089237231"
-"lena","(24,30]","peak_lena_CTC","1.21110117975338","-0.18631639168897","0.583809238694234","-0.31913916282944","0.367078263792657","0.366769663269462","0.367078263792658",NA,"0.377140657899688",NA,"0.65027146398153","0.614117788294467",NA,"0.806394112070227","0.367610357349267","0.000840694079805217","91","40",NA,"no_exp","0.564135123748779"
-"lena","(24,30]","standardScore","1.36317920083546","-0.380146672161628","0.64104327726299","-0.593012493297971","0.300563604948635","0.299557358296049","0.300563604948635",NA,"0.306332011109125",NA,"0.712859953804508","0.55347268325467",NA,"0.844310342116279","0.302905224225318","0.00334786592926906","83","39",NA,"no_exp","0.973354845730773"
-"lena","(24,30]","lena_CTC_ph","1.30893787656328","-0.500911022618703","0.549601879811028","-0.91140704029421","0.428884291848882","0.4263365607867","0.428884291848882",NA,"0.452529878685115",NA,"0.602602909541516","0.672703410638831",NA,"0.776275021845684","0.432276930043869","0.00594036925716818","93","39",NA,"no_exp","0.916309281429925"
-"lena","(24,30]","lena_CVC_ph","1.27896125419052","0.29990617042081","0.518771607602225","0.578108296649048","0.588463248669563","0.5872758404532","0.588463248669562",NA,"0.659067495124536",NA,"0.460913228590327","0.811829720523052",NA,"0.678905905549751","0.589293652472978","0.00201781201977794","87","38",NA,"no_exp","0.41998857000769"
-"lena","(30,36]","voc_fem_ph","1.38037139736952","0.0233122982059024","0.704550460898682","0.0330881881422186","0.502888495952283","0.502882226943013","0.306831475579855","0.196057020372427","0.32213302069898","0.20583429415922","0.521902227013955","0.567567635351929","0.453689645197265","0.722428008187636","0.502894692945557","1.24660025445675e-05","71","21","5","full","0.62721607150031"
-"lena","(30,36]","peak_lena_CVC","1.40621708512048","0.496889850281877","0.78691852075027","0.631437483270985","0.435195612372277","0.432790311199631","0.386604912093404","0.0485907002788732","0.413675282990102","0.0519930581836315","0.604352421754798","0.643175934710015","0.228019863572522","0.777401068789333","0.438317253807198","0.00552694260756694","69","21","5","full","0.836524373282317"
-"lena","(30,36]","lp_dur","1.60217362507511","0.189857551187878","0.657377732509243","0.288810438502659","0.648442622772876","0.647945508398724","0.544263679148575","0.104178943624302","0.607798437791708","0.116340299034277","0.392596516833646","0.779614287831943","0.341086937648273","0.626575228391329","0.648712136557784","0.000766628159059602","72","21","5","full","0.0210631934225797"
-"lena","(30,36]","lp_n","1.39178192829429","0.0863535801342969","0.544148278411542","0.158694943198896","0.749826396696267","0.749692062389549","0.749826396696267",NA,"0.768713871891495",NA,"0.256475258923913","0.876763292965379",NA,"0.506433864313903","0.749871216267446","0.000179153877897109","73","21",NA,"no_exp","0.513869713482082"
-"lena","(30,36]","peak_wc_adu_ph","1.49593779355642","1.06299532657133","0.784300911726991","1.35534118433022","0.311699270654767","0.303210023737521","0.212487935043096","0.0992113356116703","0.208558199305743","0.0973765287035765","0.675571347916564","0.456681726485463","0.312052124978467","0.821931473978557","0.330445400000715","0.0272353762631944","67","20","5","full","0.359980818245339"
-"lena","(30,36]","wc_adu_ph","1.25021477962804","0.305367088103918","0.735916961163529","0.414947751198878","0.474066917156103","0.473021235812074","0.228628683098164","0.245438234057939","0.239634160843239","0.257252871600838","0.551249874946277","0.489524423132533","0.507201016955643","0.742462036030312","0.475227003196776","0.00220576738470229","68","21","5","full","0.151715980115193"
-"lena","(30,36]","wc_mal_ph","1.11252273099707","0.0648849070262742","0.696332770210906","0.0931808896580033","0.659789623432496","0.659728753628326","0.515629404549415","0.144160218883081","0.59075900243309","0.165165031991001","0.389780607748765","0.768608484492001","0.40640500980057","0.624324120748802","0.659821010011282","9.22563829559554e-05","66","20","5","full","0.0173935741457828"
-"lena","(30,36]","wc_fem_ph","1.54811865917466","0.194821418143016","0.755334891759924","0.257927205890203","0.425388601430725","0.425013056494417","0.283040501934147","0.142348099496578","0.292724098836081","0.147218220931008","0.594270440723943","0.541039831099413","0.383690266922433","0.770889382936321","0.425895884419389","0.000882827924972083","69","21","5","full","0.723868115713297"
-"lena","(30,36]","avg_voc_dur_chi","1.19343406612509","1.20546366083024","0.715913544470313","1.68381178166161","0.512720186471697","0.496249572000495","0.512720186471697",NA,"0.546156599105967",NA,"0.519057163715357","0.739024085606124",NA,"0.72045621915239","0.528373554839059","0.0321239828385645","74","21",NA,"no_exp","0.0093175093631487"
-"lena","(30,36]","avg_voc_dur_och","1.31567732661434","-1.14042288763605","0.599666567514825","-1.90176166125496","0.698523103827602","0.678594178336317","0.698523103827601",NA,"0.74433058886302",NA,"0.321247034531845","0.862745958473884",NA,"0.566786586407834","0.70712426614885","0.0285300878125325","73","21",NA,"no_exp","0.841475816680341"
-"lena","(30,36]","avg_voc_dur_mal","1.01583389374199","0.00690490754805978","0.750149396860728","0.0092047098577375","0.350221042893997","0.35022061687458","0.350221042893997",NA,"0.344596883414663",NA,"0.639344231508474","0.587023750298626",NA,"0.799590039650616","0.350221833304676","1.21643009534264e-06","71","21",NA,"no_exp","0.00523839599720946"
-"lena","(30,36]","avg_voc_dur_fem","1.3542158650769","1.78777383719693","0.72154463580991","2.47770373234112","0.400983484378805","0.370524048878715","0.400983484378805",NA,"0.376593994381591",NA,"0.562581829692566","0.613672546543831",NA,"0.750054551144492","0.446485869469098","0.0759618205903824","72","21",NA,"no_exp","0.0775108553809862"
-"lena","(30,36]","voc_dur_chi_ph","1.34758578490734","0.858433118755378","0.629176395331566","1.36437591289959","0.646210726504849","0.635195785853506","0.607768163969911","0.0384425625349375","0.62197668427558","0.0393412801097637","0.362060226753954","0.788654984309096","0.198346363994311","0.601714406304149","0.652241217319677","0.0170454314661704","71","21","5","full","0.834496306879229"
-"lena","(30,36]","voc_dur_och_ph","1.66473630021133","0.0195716316185991","0.713568547578224","0.0274278227158738","0.591989821841476","0.591985077728091","0.591989821841477",NA,"0.641044759471828",NA,"0.44181973552533","0.800652708402231",NA,"0.664695220025938","0.591993091570915","8.01384282404325e-06","66","20",NA,"no_exp","0.167101453415975"
-"lena","(30,36]","voc_dur_mal_ph","1.1095904795099","-0.179573350482207","0.686834622007492","-0.261450638521028","0.650828631263327","0.65033538229017","0.531584563174152","0.119244068089175","0.575568931051265","0.129110560311372","0.378062504782768","0.758662593681318","0.359319579638199","0.614867875874784","0.651093260707719","0.000757878417549338","65","20","5","full","0.0180717516957713"
-"lena","(30,36]","voc_dur_fem_ph","1.50178150110798","0.447082839687029","0.734633564551788","0.608579380605624","0.404411720173825","0.402466088290548","0.324297740959489","0.080113979214336","0.322913591491221","0.0797720412119242","0.593046223263002","0.568254864907658","0.282439446982754","0.770094944317259","0.407277105840783","0.00481101755023547","71","21","5","full","0.553888509080108"
+"lena","(18,24]","lena_CVC_ph","1.55058391370275","2.04480908179709","0.507506708214989","4.02912719910467","0.616919272749646","0.56051757497472","0.585084957221755","0.0318343155278897","0.522690835257788","0.0284394680939063","0.342228564973613","0.722973606197203","0.168640054832493","0.585003046978059","0.65194233712154","0.0914247621468201","92","51","5","full","0.481974248267869"
+"lena","(24,30]","voc_fem_ph","1.52335026028621","-1.14742445541211","0.531123815163992","-2.16037093922785","0.481369007908544","0.467639981060493","0.314316182094321","0.167052825814224","0.354811671131014","0.188575376232193","0.585449746106566","0.595660701348523","0.434252664047318","0.765146878779862","0.49616077617296","0.0285207951124667","96","40","3","full","0.410235515376206"
+"lena","(24,30]","peak_lena_CVC","1.37880167888979","0.638469871792817","0.504011084078198","1.26677744192974","0.582320323921093","0.577002429489303","0.431010119221022","0.151310204700071","0.487533483230718","0.171153269624163","0.472454864218639","0.698235979616288","0.413706743508205","0.687353522009336","0.586134678894547","0.00913224940524428","90","39","3","full","0.0155380838002019"
+"lena","(24,30]","lp_dur","1.34096311438815","0.485782965009828","0.529127793833348","0.918082494760856","0.451987648051079","0.449360215419918","0.41982192718768","0.0321657208633982","0.424672336741038","0.0325373472832272","0.554343808633561","0.651668885816285","0.180381116759009","0.744542684225398","0.455173278326594","0.00581306290667548","94","40","3","full","0.00123270890302054"
+"lena","(24,30]","lp_n","1.23938400608957","-0.000876149485917535","0.53831456407232","-0.00162757901121886","0.428566622222958","0.428566614052213","0.427138645869568","0.0014279763533903","0.431045600174831","0.00144103777598843","0.57666016799391","0.656540631015957","0.0379610033585577","0.75938143774648","0.428566633117499","1.90652859881866e-08","94","40","3","full","0.000363243570161259"
+"lena","(24,30]","peak_wc_adu_ph","1.52312744022119","-0.553068942992332","0.596536675200092","-0.927133177196221","0.273638943448029","0.271691048128561","0.153649610099413","0.119989333348616","0.165010201262717","0.128861140828303","0.780066959190404","0.406214476924096","0.358972339920924","0.883213993996021","0.278809535339934","0.00711848721137359","96","40","3","full","0.037038233754625"
+"lena","(24,30]","wc_adu_ph","1.42819946264408","-0.61489039550962","0.558658866772958","-1.1006544996976","0.405630615639119","0.402135299441439","0.276731207173468","0.12889940846565","0.305873301484456","0.142473586660095","0.656961416649276","0.55305813571853","0.377456734818833","0.810531564252297","0.410752292496002","0.00861699305456308","95","40","3","full","0.319223118551694"
+"lena","(24,30]","wc_mal_ph","1.27543013850129","1.03089778258523","0.56955685766592","1.80999977212094","0.36436457747584","0.355397973080419","0.195787364093743","0.168577213382098","0.213417890193039","0.183757482926238","0.692873983134659","0.461971741768952","0.428669433160609","0.832390523212908","0.380006853717329","0.02460888063691","93","40","3","full","0.0201332619967255"
+"lena","(24,30]","wc_fem_ph","1.56458632225762","-0.726672564204416","0.602232001722402","-1.2066322648516","0.250684334247052","0.247554346483512","0.163720230695702","0.0869641035513499","0.173109148497485","0.091951262538848","0.792286917158149","0.416063875501689","0.303234665793422","0.890105003445183","0.260040119768633","0.0124857732851211","95","40","3","full","0.143277421763839"
+"lena","(24,30]","avg_voc_dur_chi","1.29667888273057","0.685687525005358","0.4246024183842","1.6148931219344","0.675086352448078","0.667855293679195","0.595808351330161","0.079278001117916","0.653008417459353","0.0868890171374314","0.356106701635093","0.808089362298102","0.294769430466308","0.596746765081381","0.678566603043784","0.0107113093645888","96","40","3","full","0.682091798538798"
+"lena","(24,30]","avg_voc_dur_och","1.16256176734647","0.590276496172488","0.597512770836649","0.987889338910651","0.263085804617438","0.260860541082811","0.215510917855532","0.0475748867619055","0.224892012238993","0.0496458004187953","0.76899174248869","0.4742278062693","0.222813375762756","0.876921742511092","0.269318859606923","0.00845831852411198","94","40","3","full","0.0140427170968685"
+"lena","(24,30]","avg_voc_dur_mal","1.23426633960677","0.530055021763984","0.584484019406698","0.906876842076941","0.301076272402025","0.299005354760672","0.254575025592245","0.0465012468097793","0.258830292264587","0.0472785233918464","0.71060636157842","0.508753665603096","0.217436251328628","0.842974709928133","0.305883736855781","0.00687838209510843","94","40","3","full","0.930812043581926"
+"lena","(24,30]","avg_voc_dur_fem","1.334002216827","-0.0461645541825539","0.534301809106926","-0.0864016430333952","0.473494120980199","0.473470329532444","0.473494120980199",NA,"0.505674916672829",NA,"0.562289592846342","0.711108231335307",NA,"0.74985971544439","0.473520576086098","5.02465536532669e-05","93","39",NA,"no_exp","0.292833590305161"
+"lena","(24,30]","voc_dur_chi_ph","1.13546803644543","0.888362944415933","0.462465725714382","1.92092709798906","0.632302671672594","0.620696305403948","0.629064510303234","0.00323816136936054","0.681594053665919","0.00350856151955372","0.398401608153027","0.825587096353812","0.0592331116821809","0.631190627428059","0.639052018243092","0.0183557128391439","92","40","3","full","0.160682753271956"
+"lena","(24,30]","voc_dur_och_ph","1.48416875315375","0.293209199346612","0.502857401182034","0.583086176433685","0.556352712933152","0.555229635862386","0.55312323575029","0.00322947718286176","0.598056591693484","0.00349182603821425","0.479687287151036","0.773341187118263","0.059091674863844","0.6925946051992","0.557248278073809","0.0020186422114233","91","40","3","full","0.79267979597984"
+"lena","(24,30]","voc_dur_mal_ph","1.25526632466989","1.29749920761761","0.5927991189739","2.18876709847934","0.271745515417658","0.26081239365526","0.154296032725568","0.117449482692091","0.160761377572024","0.12237087564192","0.758769957311169","0.400950592432564","0.349815487996058","0.871074025161564","0.301045336398014","0.0402329427427543","92","40","3","full","0.0105307314293762"
+"lena","(24,30]","voc_dur_fem_ph","1.54786449277152","-0.755631013339357","0.588380303346449","-1.28425613339138","0.302989710378213","0.298949375017021","0.197777324168829","0.105212386209385","0.211538056373531","0.112532737403989","0.745506101665535","0.459932665042972","0.335458995115631","0.863426952130599","0.312284267994571","0.0133348929775503","95","40","3","full","0.15687463136815"
+"lena","(24,30]","peak_voc_chi_ph","1.35332795546294","0.492339270160036","0.438991540390061","1.12152336631037","0.669608959159381","0.66583632418285","0.563278809115096","0.106330150044285","0.615400691768462","0.116169198688472","0.360963117726436","0.784474787210183","0.340836029035182","0.600802062019128","0.671470410950846","0.0056340867679956","93","40","3","full","0.818145003217789"
+"lena","(24,30]","voc_chi_ph","1.2216576916972","0.062827997708726","0.507072917196522","0.123903280135895","0.583545355139701","0.58349258151033","0.583545355139702",NA,"0.633177324748481",NA,"0.451875138049201","0.79572440250911",NA,"0.67221658566953","0.583583017718769","9.04362084389336e-05","89","39",NA,"no_exp","0.30757882216736"
+"lena","(24,30]","peak_voc_och_ph","1.24726952808657","-0.577780192397723","0.532134620904328","-1.0857782405058","0.457060807398617","0.453602146146055","0.33625078293423","0.120810024464387","0.370567004988588","0.133139344829786","0.598349091524852","0.608742149837342","0.364882645284461","0.773530278350403","0.461169325822315","0.00756717967626028","96","40","3","full","0.755342108272049"
+"lena","(24,30]","voc_och_ph","1.50998946421765","0.182906954956838","0.462556178350432","0.395426466054612","0.634197129433839","0.633710729840801","0.619048808208177","0.0151483212256606","0.684666354481298","0.0167540034526598","0.404577013199102","0.827445680683208","0.129437256818351","0.636063686433286","0.634477683159357","0.000766953318556092","92","40","3","full","0.732895545289635"
+"lena","(24,30]","peak_voc_mal_ph","1.47247784961578","0.972204327520113","0.599881163226164","1.62066153618092","0.157900928374007","0.154082924047679","0.157900928374007",NA,"0.154569667762493",NA,"0.824333175648133","0.393153491352288",NA,"0.907927957300651","0.178262669953192","0.024179745905513","96","40",NA,"no_exp","0.0206752320455844"
+"lena","(24,30]","voc_mal_ph","1.25863551145159","0.449242202401613","0.584828440068897","0.768160663234313","0.342992892041909","0.341420581313107","0.167122724724909","0.175870167317001","0.187221252539983","0.197020680842201","0.736020154542467","0.43269071233386","0.443870117086295","0.857916169880524","0.346004672602701","0.00458409128959468","94","40","3","full","0.0464110567623102"
+"lena","(24,30]","peak_voc_fem_ph","1.52652203900561","-0.87286300382513","0.563831207458576","-1.54809274882015","0.43387921184764","0.426759247318646","0.261802313624749","0.17207689822289","0.30083227342337","0.197730431711282","0.650519093487511","0.548481789509342","0.444668901218965","0.806547638696879","0.443169262674472","0.0164100153558264","94","40","3","full","0.266276089230556"
+"lena","(24,30]","peak_lena_CTC","1.21110117975338","-0.186316390066692","0.583809239739307","-0.319139159479369","0.367078258469073","0.366769657954795","0.367078258469073",NA,"0.377140651295966",NA,"0.65027146749543","0.614117782917875",NA,"0.806394114249","0.367610352022499","0.000840694067703648","91","40",NA,"no_exp","0.564135127466377"
+"lena","(24,30]","standardScore","1.36317920083546","-0.380146672161748","0.641043277263423","-0.593012493297757","0.300563604946598","0.299557358294017","0.300563604946597",NA,"0.306332011106767",NA,"0.712859953805931","0.55347268325254",NA,"0.844310342117122","0.302905224223292","0.00334786592927422","83","39",NA,"no_exp","0.973354845731306"
+"lena","(24,30]","lena_CTC_ph","1.30893787656328","-0.500911019588361","0.549601881448188","-0.911407032065596","0.428884284398613","0.426336553398028","0.428884284398613",NA,"0.452529868447104",NA,"0.602602914237267","0.672703403029228",NA,"0.776275024870224","0.432276922614767","0.00594036921673811","93","39",NA,"no_exp","0.916309282582919"
+"lena","(24,30]","lena_CVC_ph","1.27896125419052","0.299906171484836","0.51877160682985","0.578108299560813","0.58846325156119","0.587275843334386","0.588463251561189",NA,"0.659067500477844",NA,"0.460913226830687","0.811829723820115",NA,"0.678905904253812","0.589293655361991","0.00201781202760541","87","38",NA,"no_exp","0.419988573580841"
+"lena","(30,36]","voc_fem_ph","1.38037139736952","0.0233122981436565","0.704550460897708","0.0330881880539159","0.502888495977986","0.502882226968749","0.306831475536428","0.196057020441558","0.322133020671112","0.205834294243124","0.521902227015687","0.567567635327379","0.453689645289733","0.722428008188835","0.502894692971227","1.24660024773119e-05","71","21","5","full","0.627216071431414"
+"lena","(30,36]","peak_lena_CVC","1.40621708512048","0.496889850265129","0.786918520751401","0.631437483248795","0.435195612384521","0.432790311212015","0.386604912073853","0.0485907003106686","0.413675282977246","0.0519930582186669","0.604352421753478","0.643175934700022","0.228019863649347","0.777401068788485","0.438317253819104","0.00552694260708927","69","21","5","full","0.836524373280019"
+"lena","(30,36]","lp_dur","1.60217362507511","0.189857551183002","0.65737773251021","0.288810438494816","0.648442622757877","0.647945508383746","0.544263679159891","0.104178943597986","0.607798437784321","0.116340299001057","0.392596516837463","0.779614287827206","0.341086937599575","0.626575228394375","0.648712136542791","0.000766628159045488","72","21","5","full","0.021063193422833"
+"lena","(30,36]","lp_n","1.39178192829429","0.0863535801380444","0.544148278410585","0.158694943206063","0.749826396700973","0.749692062394245","0.749826396700974",NA,"0.768713871905968",NA,"0.256475258922307","0.876763292973633",NA,"0.506433864312318","0.749871216272155","0.000179153877910407","73","21",NA,"no_exp","0.513869713478274"
+"lena","(30,36]","peak_wc_adu_ph","1.49593779355642","1.06299532666341","0.784300911724764","1.35534118445148","0.311699270572231","0.303210023654976","0.212487935085242","0.0992113354869889","0.208558199326241","0.0973765285714572","0.675571347929975","0.456681726507905","0.312052124766772","0.821931473986716","0.330445399925411","0.0272353762704355","67","20","5","full","0.35998081838176"
+"lena","(30,36]","wc_adu_ph","1.25021477962804","0.30536708808452","0.735916961163177","0.414947751172717","0.474066917180791","0.47302123583688","0.228628683091676","0.245438234089115","0.239634160845588","0.257252871643337","0.551249874941449","0.489524423134932","0.507201016997539","0.742462036027061","0.475227003221218","0.00220576738433862","68","21","5","full","0.151715980121171"
+"lena","(30,36]","wc_mal_ph","1.11252273099707","0.0648849070325181","0.696332770210944","0.093180889666965","0.659789623428784","0.659728753624602","0.515629404561297","0.144160218867487","0.59075900244033","0.165165031971353","0.389780607748813","0.768608484496711","0.406405009776397","0.624324120748841","0.659821010007577","9.22563829747044e-05","66","20","5","full","0.0173935741460161"
+"lena","(30,36]","wc_fem_ph","1.54811865917466","0.19482141811292","0.755334891759503","0.257927205850502","0.425388601448225","0.425013056512027","0.283040501921165","0.142348099527059","0.29272409883049","0.147218220966472","0.594270440721749","0.541039831094245","0.383690266968648","0.770889382934899","0.425895884436703","0.000882827924675955","69","21","5","full","0.723868115689338"
+"lena","(30,36]","avg_voc_dur_chi","1.19343406612509","1.20546366083204","0.71591354447098","1.68381178166256","0.512720186452348","0.496249571981342","0.512720186452349",NA,"0.546156599072434",NA,"0.519057163723686","0.739024085583436",NA,"0.72045621915817","0.528373554820735","0.0321239828393931","74","21",NA,"no_exp","0.00931750936297194"
+"lena","(30,36]","avg_voc_dur_och","1.31567732661434","-1.14042288764632","0.59966656751325","-1.90176166127708","0.698523103837626","0.678594178346128","0.698523103837627",NA,"0.744330588889868",NA,"0.32124703452814","0.862745958489443",NA,"0.566786586404565","0.707124266158558","0.02853008781243","73","21",NA,"no_exp","0.841475816695968"
+"lena","(30,36]","avg_voc_dur_mal","1.01583389374199","0.006904899317757","0.750149396349028","0.00920469889246475","0.350221033307529","0.350220607289137","0.350221033307529",NA,"0.344596871430128",NA,"0.639344236206139","0.587023740090747",NA,"0.799590042588162","0.350221823716341","1.21642720450942e-06","71","21",NA,"no_exp","0.00523839603560259"
+"lena","(30,36]","avg_voc_dur_fem","1.3542158650769","1.78777383719822","0.721544635809773","2.47770373234338","0.400983484371729","0.370524048871959","0.400983484371728",NA,"0.376593994372568",NA,"0.562581829695662","0.61367254653648",NA,"0.750054551146556","0.446485869462885","0.0759618205909264","72","21",NA,"no_exp","0.0775108553819051"
+"lena","(30,36]","voc_dur_chi_ph","1.34758578490734","0.858433118744391","0.629176395331403","1.36437591288248","0.646210726510077","0.635195785859043","0.607768163964935","0.0384425625451422","0.621976684277419","0.0393412801206454","0.362060226752638","0.788654984310261","0.198346364021742","0.601714406303055","0.652241217324598","0.0170454314655548","71","21","5","full","0.834496306879749"
+"lena","(30,36]","voc_dur_och_ph","1.66473630021133","0.0195716316173704","0.713568547578006","0.0274278227141603","0.591989821843166","0.59198507772978","0.591989821843166",NA,"0.641044759475267",NA,"0.44181973552461","0.800652708404379",NA,"0.664695220025396","0.591993091572603","8.01384282301692e-06","66","20",NA,"no_exp","0.167101453415848"
+"lena","(30,36]","voc_dur_mal_ph","1.1095904795099","-0.179573350494002","0.686834622007559","-0.261450638538174","0.650828631269722","0.650335382296504","0.531584563151833","0.119244068117889","0.575568931037589","0.129110560344815","0.378062504782735","0.758662593672305","0.359319579684736","0.614867875874756","0.651093260714139","0.000757878417635014","65","20","5","full","0.0180717516953256"
+"lena","(30,36]","voc_dur_fem_ph","1.50178150110798","0.447082839734774","0.734633564551385","0.60857938067095","0.404411720164225","0.402466088280542","0.324297740986787","0.0801139791774386","0.32291359151208","0.0797720411736224","0.593046223260951","0.568254864926012","0.282439446914949","0.770094944315927","0.407277105831894","0.00481101755135182","71","21","5","full","0.553888509148896"
 "lena","(30,36]","peak_voc_chi_ph","1.32708395618455","0.818183276999838","0.820203289500998","0.997537180687985","0.274376340908324","0.270132112185444","0.274376340908324",NA,"0.281841334966846",NA,"0.74536579970741","0.530887309103209",NA,"0.863345701157659","0.285600751751194","0.0154686395657507","67","21",NA,"no_exp","0.972694419406498"
-"lena","(30,36]","voc_chi_ph","1.47057908141574","0.934356446800939","0.750954548145915","1.24422503213788","0.548617323492069","0.538326571282437","0.516609452899836","0.0320078705922344","0.552973173862186","0.0342608786784815","0.483155137510412","0.743621660431019","0.185096944000925","0.695093617802963","0.557084185686826","0.0187576144043889","67","21","5","full","0.742039303419413"
-"lena","(30,36]","peak_voc_och_ph","1.37689511331421","-0.0186407073034269","0.81944489449107","-0.022747969300613","0.219637404865447","0.219635704176295","0.219637404865447",NA,"0.225220732795704",NA,"0.800199927832103","0.474574264784453",NA,"0.894538947073912","0.219643447343507","7.74316721137473e-06","68","20",NA,"no_exp","0.00990612827128799"
-"lena","(30,36]","voc_och_ph","1.71871212474114","0.199907624043232","0.71769902377619","0.278539634889585","0.590074771261737","0.589585784086033","0.590074771261737",NA,"0.64413907480376",NA,"0.447483726534483","0.802582752620414",NA,"0.668942244543191","0.590414470888992","0.000828686802958883","66","20",NA,"no_exp","0.133052618194695"
-"lena","(30,36]","peak_voc_mal_ph","1.25688400896596","0.205173404042431","0.704256970374493","0.291333153484202","0.625092625180172","0.624484860411776","0.545621989603243","0.0794706355769291","0.588627865592978","0.0857345039025661","0.404457540275701","0.76722087145292","0.292804548978608","0.63596976364895","0.625457139949103","0.000972279537326837","67","20","5","full","0.221878003516201"
-"lena","(30,36]","voc_mal_ph","1.09296694387303","0.0565966791240339","0.644931623062613","0.0877560924292578","0.705938694511854","0.705887067398853","0.591022875854211","0.114915818657643","0.646026522093237","0.12561047921131","0.321428171781229","0.803757750875994","0.354415687027691","0.566946357057905","0.705960199971699","7.31325728460838e-05","67","20","5","full","0.147183367736302"
-"lena","(30,36]","peak_voc_fem_ph","1.49763718948152","-0.141681141484461","0.773773039653829","-0.183104262133308","0.395671314834752","0.395480591386486","0.395671314834751",NA,"0.401942868475752",NA,"0.613907544242744","0.633989643823739",NA,"0.783522523124093","0.395962616342845","0.000482024956358634","70","21",NA,"no_exp","0.049432088093319"
-"lena","(30,36]","peak_lena_CTC","1.21770895709078","-0.754902361516866","0.74553386400277","-1.01256615958904","0.381333623521543","0.376533332182822","0.102472433527701","0.278861189993843","0.111619099223581","0.30375227526059","0.673888394031115","0.334094446562018","0.551137256280675","0.820907055659235","0.389121499190995","0.0125881670081728","70","21","5","full","0.0576694042353197"
-"lena","(30,36]","standardScore","1.49701035820184","1.50028030374938","0.645773797359849","2.32322883009972","0.60405474405542","0.571030938406312","0.604054744055421",NA,"0.589574492175367",NA,"0.386453753571305","0.767837542827496",NA,"0.621654046533364","0.625701158240027","0.0546702198337147","71","20",NA,"no_exp","0.0649162349995381"
-"lena","(30,36]","lena_CTC_ph","1.42655858703851","-0.41226998375483","0.665864305958887","-0.619150148259013","0.670642296333503","0.668164725993319","0.360454772534006","0.310187523799498","0.413713667239372","0.356019195142945","0.378021859606672","0.643205773636534","0.596673440956563","0.614834823027024","0.671859050603814","0.00369432461049555","68","21","5","full","0.83530399112552"
-"lena","(30,36]","lena_CVC_ph","1.50602411240187","0.767167458364524","0.790379865110514","0.970631328338881","0.479637249398032","0.473139218503444","0.479637249398031",NA,"0.508930612228496",NA,"0.552143382477355","0.713393728756075",NA,"0.743063511738637","0.486687021353917","0.0135478028504729","67","21",NA,"no_exp","0.256895962901605"
+"lena","(30,36]","voc_chi_ph","1.47057908141574","0.934356446932023","0.750954548139564","1.24422503232296","0.548617323474898","0.538326571262366","0.516609452963044","0.032007870511853","0.552973173908589","0.0342608785911252","0.483155137510221","0.74362166046222","0.18509694376495","0.695093617802826","0.557084185672627","0.0187576144102607","67","21","5","full","0.742039303486955"
+"lena","(30,36]","peak_voc_och_ph","1.37689511331421","-0.0186407073230657","0.819444894492528","-0.0227479693245385","0.219637404887694","0.219635704198539","0.219637404887695",NA,"0.225220732821117",NA,"0.800199927818527","0.474574264811227",NA,"0.894538947066324","0.219643447365767","7.74316722760073e-06","68","20",NA,"no_exp","0.00990612827053539"
+"lena","(30,36]","voc_och_ph","1.71871212474114","0.199907624048427","0.717699023777177","0.27853963489644","0.590074771253605","0.589585784077877","0.590074771253606",NA,"0.644139074787142",NA,"0.447483726537981","0.802582752610061",NA,"0.668942244545806","0.590414470880889","0.000828686803011869","66","20",NA,"no_exp","0.13305261819341"
+"lena","(30,36]","peak_voc_mal_ph","1.25688400896596","0.205173404073982","0.704256970374052","0.291333153529185","0.62509262516052","0.624484860391928","0.545621989645653","0.0794706355148668","0.58862786561192","0.0857345038317071","0.40445754027848","0.767220871465264","0.292804548857608","0.635969763651135","0.625457139929598","0.000972279537669821","67","20","5","full","0.221878003519042"
+"lena","(30,36]","voc_mal_ph","1.09296694387303","0.056596679115107","0.644931623062212","0.0877560924154707","0.705938694519901","0.705887067406917","0.591022875839076","0.114915818680825","0.646026522091309","0.125610479239491","0.321428171779705","0.803757750874795","0.354415687067448","0.566946357056561","0.705960199979738","7.31325728213609e-05","67","20","5","full","0.147183367731142"
+"lena","(30,36]","peak_voc_fem_ph","1.49763718948152","-0.141681141501455","0.773773039655591","-0.183104262154854","0.395671314864365","0.395480591416045","0.395671314864364",NA,"0.401942868516153",NA,"0.613907544228421","0.633989643855602",NA,"0.783522523114952","0.395962616372506","0.000482024956461841","70","21",NA,"no_exp","0.0494320881020907"
+"lena","(30,36]","peak_lena_CTC","1.21770895709078","-0.754902361536507","0.74553386400455","-1.01256615961297","0.381333623564451","0.376533332225188","0.102472433532619","0.278861190031833","0.111619099234703","0.30375227531766","0.673888394019182","0.334094446578663","0.551137256332449","0.820907055651967","0.389121499233366","0.0125881670081776","70","21","5","full","0.0576694042408212"
+"lena","(30,36]","standardScore","1.49701035820184","1.50028030374778","0.645773797359113","2.32322883009989","0.604054744064941","0.571030938415853","0.60405474406494",NA,"0.589574492193617",NA,"0.386453753567885","0.76783754283938",NA,"0.621654046530613","0.625701158248672","0.0546702198328191","71","20",NA,"no_exp","0.0649162349957236"
+"lena","(30,36]","lena_CTC_ph","1.42655858703851","-0.412269983767466","0.66586430595491","-0.619150148281688","0.67064229639204","0.668164726051811","0.360454772531278","0.310187523860762","0.413713667290284","0.356019195259769","0.378021859588867","0.643205773676111","0.596673441054459","0.614834823012544","0.671859050662051","0.00369432461024038","68","21","5","full","0.835303991130825"
+"lena","(30,36]","lena_CVC_ph","1.50602411240187","0.767167458356509","0.790379865110829","0.970631328328354","0.479637249413654","0.473139218519095","0.479637249413655",NA,"0.508930612253526",NA,"0.552143382469949","0.713393728773618",NA,"0.743063511733653","0.486687021369067","0.0135478028499717","67","21",NA,"no_exp","0.256895962925654"

File diff suppressed because it is too large
+ 525 - 525
OUTPUT/df.icc.corpus.csv


+ 68 - 68
OUTPUT/df.icc.mixed.csv

@@ -1,69 +1,69 @@
 "data_set","age_bin","metric","iqr","age_b","age_se","age_t","icc_adjusted","icc_conditional","icc_child_id","icc_corpus","child_id_var","corpus_var","residual_var","child_id_sd","corpus_sd","residual_sd","r2_cond","r2_marg","nobs","nchi","ncor","formula","sw"
-"aclew",NA,"wc_adu_ph",1.39834708718581,0.0353940221658755,0.0456039377746273,0.776117675205839,0.455118598090009,0.45459073597026,0.325238217290086,0.129880380799921,0.340247186266423,0.135874050985126,0.570026380643396,0.583307111448526,0.368610975128422,0.755000914332821,0.45575057018043,0.00115983421017037,1219,191,8,"full",4.48030725270666e-08
-"aclew",NA,"sc_fem_ph",1.43206436001967,0.0184672181802355,0.0454878617194332,0.405981232842738,0.517602734914694,0.517442268052595,0.368315144434488,0.149287590480197,0.394665588521939,0.159968102442144,0.516909509161195,0.628224154678837,0.399960126065266,0.718964191849076,0.517752287400012,0.000310019347417168,1233,190,8,"full",3.25227585449576e-08
-"aclew",NA,"sc_mal_ph",1.41177766561036,0.0273933341149073,0.0447157937211623,0.61260981490625,0.422506973018207,0.422193735000548,0.360889020391458,0.0616179526267468,0.359026962740003,0.0613000261350204,0.57451337049796,0.599188586957398,0.24758842084197,0.757966602495097,0.422935114522456,0.00074137952190854,1227,191,8,"full",1.17281030399006e-11
-"aclew",NA,"pc_fem_ph",1.41592624527927,0.0232272496259159,0.0453056540165029,0.512678828506817,0.530004908965321,0.529745223621515,0.369686394098888,0.160318514866436,0.399886437517412,0.173415091281051,0.508389450097684,0.632365746635135,0.416431376436804,0.713014340737747,0.53023519143014,0.000489967808624928,1235,191,8,"full",6.90250236144521e-08
-"aclew",NA,"pc_mal_ph",1.42679899943196,0.0307332884444745,0.0447292134637975,0.687096554231813,0.424959729873028,0.424564519923687,0.36263993530909,0.062319794563934,0.361116009141238,0.0620579073406468,0.572623771473926,0.600929287970921,0.249114245559436,0.756719083593063,0.425494513806776,0.000929993883089478,1227,191,8,"full",1.40672320334034e-11
-"aclew",NA,"sc_adu_ph",1.3998216392517,0.032158137370917,0.0456621302860083,0.704262748353876,0.456803160474641,0.456369691648768,0.318294205015999,0.138508955458634,0.335609137503786,0.146043724156668,0.572746282951412,0.579317820806322,0.38215667488174,0.756800028376989,0.457318609833621,0.000948918184852403,1221,191,8,"full",9.85940149168199e-09
-"aclew",NA,"pc_adu_ph",1.39163710073087,0.041001254323524,0.0455637174665799,0.899866310372889,0.458055433475092,0.457343385854788,0.324054415061753,0.13400101841335,0.339295923615764,0.140303594689017,0.567434275544659,0.58249113608343,0.374571214442618,0.753282334549709,0.458897886834946,0.0015545009801585,1219,191,8,"full",6.32368398042491e-08
-"aclew",NA,"wc_fem_ph",1.41696690734734,0.0170107653020958,0.0453784512523193,0.374864386788132,0.527574359681527,0.527435650573866,0.371570004634602,0.156004355046913,0.401828632707611,0.168708496119269,0.510897399513909,0.633899544650105,0.410741398107458,0.714770872037963,0.527698569165559,0.000262918591693424,1235,191,8,"full",4.99233671761454e-08
-"aclew",NA,"wc_mal_ph",1.41466799635154,0.0252144179892803,0.0446552563959207,0.564646136296369,0.423617095839336,0.423350183410256,0.363521610763293,0.0600954850760492,0.361015138013519,0.0596811281540184,0.572408757920278,0.600845352826764,0.244297212743041,0.756577000655107,0.42398026286574,0.00063007945548387,1227,191,8,"full",8.21398075406397e-12
-"aclew",NA,"can_voc_dur_chi_ph",1.2673707256136,0.557927074959328,0.0367999069699582,15.1611001466606,0.580373853367969,0.414039697331518,0.43542996735262,0.14494388601534,0.315810971751424,0.105125675594264,0.304348692272822,0.561970614668973,0.324230898580415,0.55167806941442,0.700637990950703,0.286598293619185,1222,191,8,"full",2.7497974340391e-14
-"aclew",NA,"non_can_voc_chi_ph",1.47668302484447,0.372879110351119,0.0398272620019617,9.36240885282933,0.51757403415524,0.443962264334407,0.448662469222941,0.0689115649323044,0.366444860132792,0.056283488157335,0.394021180074606,0.60534689239542,0.237241413242577,0.627711064164562,0.586186883351431,0.142224619017023,1234,191,8,"full",0.000803476673947708
-"aclew",NA,"avg_cry_voc_dur_chi",1.22878664362143,-0.313507744518171,0.0467304352674262,-6.70885564673316,0.412798071070225,0.378527762253626,0.319923513332258,0.092874557737958,0.345483765690837,0.100294759862984,0.63411635960903,0.587778670666806,0.316693479350276,0.796314234212242,0.461547309141888,0.0830195468882627,1229,191,8,"full",1.00492166911133e-12
-"aclew",NA,"cry_voc_dur_chi_ph",1.45040610727736,0.152318864558949,0.0423823249181075,3.59392423264331,0.482363468300665,0.471044633984528,0.451513129149421,0.0308503391512506,0.422953618480856,0.0288989660167001,0.484894524667655,0.6503488436838,0.169996958845446,0.696343682866194,0.494509997885348,0.02346536390082,1226,191,8,"full",7.93203929852983e-11
-"aclew",NA,"cry_voc_chi_ph",1.32182712879321,0.272857764161779,0.0400678010824965,6.80990113732436,0.484655292535397,0.446560738435279,0.455210620709526,0.0294446718258805,0.382557912177865,0.0247452314731011,0.433094454238083,0.618512661291477,0.157306171122118,0.658099121894326,0.525162075688469,0.0786013372531897,1222,191,8,"full",9.27445767055415e-10
-"aclew",NA,"non_can_voc_dur_chi_ph",1.41101351642967,0.380271648801056,0.0404029386796668,9.41197995066712,0.494572139294607,0.422721070046812,0.442196338512168,0.0523758007824347,0.369388951887456,0.0437521536708911,0.422209438343296,0.607773767028041,0.209170154828291,0.649776452592194,0.568000319602344,0.145279249555533,1231,191,8,"full",1.63593838497926e-05
-"aclew",NA,"avg_non_can_voc_dur_chi",1.32143633409438,0.12733066612106,0.0442190842800329,2.87954099896537,0.400862472083101,0.394862323566217,0.383401016795738,0.0174614552873547,0.405640893617126,0.0184743389201591,0.633891595423824,0.636899437601515,0.135920340347422,0.796173093883374,0.409830420943115,0.0149680973768976,1226,190,8,"full",0.00348219639682617
-"aclew",NA,"lp_n",1.39963275050627,0.0522566054209834,0.0385136636970435,1.35683288487028,0.408254922651103,0.407065493065016,0.408254922651093,NA,0.381725509019451,NA,0.55329202007886,0.617839387720993,NA,0.743836016927696,0.40997894130555,0.00291344824053411,1243,191,NA,"no_exp",6.44369186464626e-07
-"aclew",NA,"lp_dur",1.4038360344008,0.235734939788234,0.0414975113807274,5.68070064793609,0.383909360592447,0.362872485542145,0.370572675061759,0.0133366855306799,0.355676138491937,0.0128005682260381,0.591324601979861,0.596385897294643,0.113139596190008,0.768976333822999,0.41766894848287,0.0547964629407255,1242,191,8,"full",3.19482072030425e-07
-"aclew",NA,"cp_n",1.42551019847118,0.539115400061955,0.0387562162041598,13.9104240006817,0.579846751402365,0.429924082910787,0.425087141591643,0.154759609810716,0.346241109361066,0.126054480934225,0.342222364928294,0.588422560207429,0.355041520014525,0.584997747797625,0.688479758404335,0.258555675493548,1238,191,8,"full",0.000269408576331973
-"aclew",NA,"cp_dur",1.5091220597277,0.434410885706191,0.0403765159746657,10.7589987699474,0.518339380579984,0.424622220636666,0.398988392796131,0.119350987783862,0.335082971807033,0.100234704559829,0.404513701831278,0.5788635174262,0.316598649017694,0.636013916381771,0.605424921443337,0.180802700806671,1245,191,8,"full",0.164056220291004
-"aclew",NA,"avg_can_voc_dur_chi",1.33173611303315,-0.0490538456326353,0.043979172993209,-1.11538808699768,0.409660109252537,0.408727434297979,0.392353953313448,0.0173061559390947,0.412554230240014,0.0181971604505869,0.620733440176977,0.642303845730363,0.134896851151489,0.787866384723309,0.411004138652375,0.00227670435439597,1228,191,8,"full",4.19083127262851e-07
-"aclew",NA,"can_voc_chi_ph",1.26029942826758,0.617614182772372,0.035165933208523,17.5628549116019,0.60142886480456,0.396185037072012,0.423048856275563,0.178380008529002,0.289202348691621,0.121943167227513,0.272469022689249,0.537775370105048,0.349203618577346,0.521985653719763,0.737445391776211,0.341260354704199,1216,191,8,"full",2.74622771533917e-12
-"aclew",NA,"peak_voc_chi",1.3052115338496,0.505156336537043,0.0383068469149264,13.1871030173514,0.422824117229295,0.316464612774181,0.333180821775678,0.0896432954536128,0.239537048608345,0.0644481585285885,0.414954878705157,0.489425222693258,0.253866418670506,0.64416991446757,0.568010113896663,0.251545501122482,1225,190,8,"full",3.91282012613783e-09
-"aclew",NA,"voc_fem_ph",1.45747376455369,0.160102840972138,0.0419742218494536,3.81431349808864,0.557399830871733,0.542985214783098,0.372868788692384,0.184531042179349,0.356228947829331,0.17629606175386,0.422848458597379,0.596849183487195,0.419876245760414,0.65026798982987,0.568845674887816,0.0258604601047186,1240,190,8,"full",0.000102584296420943
-"aclew",NA,"peak_voc_fem_ph",1.34706605098303,0.133908110318364,0.0455239404303699,2.94148768872897,0.295658448779726,0.290805054636012,0.211317009168655,0.0843414396110688,0.212989590853703,0.0850090051219526,0.709916439788045,0.461507953185753,0.29156303798999,0.842565391995212,0.30722059819225,0.0164155435562376,1227,191,8,"full",7.64031189116186e-06
-"aclew",NA,"peak_simple_CTC",1.46759009018041,0.543932891623837,0.0359895896396895,15.1136174952099,0.497035813277459,0.347977775935318,0.359742783477497,0.137293029799969,0.237159578873392,0.0905101050669152,0.331577950107726,0.486990327289354,0.300848973850527,0.575828056026907,0.647871733996913,0.299893958061595,1229,191,8,"full",8.10081407973889e-05
-"aclew",NA,"peak_voc_mal_ph",1.36006202401403,0.00715949166686894,0.0462163845888859,0.154912413217858,0.30525313805476,0.30523870552293,0.237385474672682,0.0678676633820836,0.250231101339764,0.0715401823842486,0.732341659305863,0.500231047956605,0.267469965387235,0.85576962981042,0.305285986058429,4.72805354988579e-05,1233,189,8,"full",5.02667414994152e-09
-"aclew",NA,"voc_och_ph",1.49861117698269,0.52360224197386,0.0334405162051635,15.6577200770905,0.67664788568064,0.493792101419664,0.631967672301233,0.0446802133794151,0.447161092559911,0.0316143592563797,0.228794115676984,0.668701048720511,0.177804272323192,0.478324278786875,0.76402982495447,0.270237723534805,1227,191,8,"full",3.39016354243327e-10
-"aclew",NA,"peak_voc_och_ph",1.57447636040163,0.501712806491284,0.0362446953127391,13.842378923653,0.57740226768101,0.442719343054861,0.565386391554688,0.012015876126315,0.440361290042225,0.00935877974958274,0.329147792293316,0.663597234806042,0.096740786380837,0.573714033550963,0.675976003384701,0.23325666032984,1232,190,8,"full",1.00768469099783e-14
-"aclew",NA,"voc_chi_ph",1.40048402487965,0.476741679856661,0.0359315395977514,13.2680560085573,0.552054317424748,0.418155100471758,0.445139032692936,0.106915284731818,0.302480127250711,0.0726508945645185,0.304387297260978,0.549981933567559,0.269538298882586,0.551713056997003,0.660702278759593,0.242547178287835,1231,191,8,"full",0.00210520193522669
-"aclew",NA,"peak_voc_chi_ph",1.3052115338496,0.505156336537043,0.0383068469149264,13.1871030173514,0.422824117229295,0.316464612774181,0.333180821775678,0.0896432954536128,0.239537048608345,0.0644481585285885,0.414954878705157,0.489425222693258,0.253866418670506,0.64416991446757,0.568010113896663,0.251545501122482,1225,190,8,"full",3.91282012613783e-09
-"aclew",NA,"voc_mal_ph",1.43742951187877,0.0815332347063369,0.0452136108657663,1.80328961003356,0.463386798162057,0.460430720916401,0.366342497217549,0.0970443009445143,0.374513736329581,0.0992088660536687,0.548582314938919,0.611975274279591,0.314974389520273,0.740663428919586,0.466810007631907,0.00637928671550577,1229,191,8,"full",2.39087172047618e-09
-"aclew",NA,"voc_dur_mal_ph",1.39832698810781,0.0123871642611258,0.0443737097865508,0.279155480141536,0.449256802083813,0.449187868798722,0.39456972726988,0.0546870748139407,0.391541954776251,0.0542674277669552,0.546517011793795,0.625733133832827,0.232953703054824,0.73926788905903,0.449341307288182,0.000153438489460222,1222,191,8,"full",8.07891342224684e-13
-"aclew",NA,"voc_dur_och_ph",1.45536694027632,0.498183456422887,0.0340376080352395,14.6362651543291,0.654403497867133,0.496783750989941,0.63818694505195,0.0162165528151917,0.475826383972472,0.0120909143416012,0.257673609901298,0.689801699021155,0.109958693797267,0.507615612349835,0.737643934945122,0.240860183955181,1222,191,8,"full",1.79187328755744e-16
-"aclew",NA,"voc_dur_chi_ph",1.39241056760047,0.466917063371526,0.0373716173364222,12.4938950104381,0.579537135695963,0.454238967776104,0.503293626089356,0.0762435096065954,0.380119977764455,0.0575840417482212,0.317560816082447,0.616538707434055,0.239966751339058,0.563525346441886,0.670442831518829,0.216203863742725,1229,191,8,"full",0.00063081748182601
-"aclew",NA,"avg_voc_dur_fem",1.37619026696054,-0.267223570387085,0.0432456393193331,-6.17920268015606,0.487238313531073,0.453853843980319,0.448444508344118,0.0387938051869605,0.436496255980916,0.0377601919619614,0.499099782001116,0.660678632907797,0.194319818757535,0.706469944159775,0.522371586989511,0.0685177430091913,1234,190,8,"full",3.70139295504595e-07
-"aclew",NA,"avg_voc_dur_mal",1.43437855478031,-0.122294007658446,0.0451315998386776,-2.7097201981668,0.452286924010889,0.445848071266451,0.390405346769995,0.0618815772408857,0.400963611439444,0.0635551251983555,0.562525628294185,0.633216875516947,0.252101418477476,0.750017085334851,0.460084283729412,0.0142362124629613,1234,191,8,"full",0.00208691377459358
-"aclew",NA,"avg_voc_dur_och",1.57732385012919,0.328088243652795,0.0363815120015201,9.01799363476391,0.619026629010372,0.552665185167556,0.619026629010358,NA,0.550330079163304,NA,0.338694808252464,0.741842354657176,NA,0.581974920638737,0.659868075532558,0.107202890365002,1241,191,NA,"no_exp",1.99757810759153e-09
-"aclew",NA,"avg_voc_dur_chi",1.43664754541997,0.0907886124783394,0.0420413864726481,2.15950567038045,0.476518055245447,0.472791224783953,0.469574451938309,0.00694360330713043,0.485746590338466,0.00718274092037829,0.541510656550113,0.69695522836009,0.0847510526210636,0.735874076558016,0.480612188586834,0.00782096380288083,1236,191,8,"full",0.0340392264029626
-"aclew",NA,"voc_dur_fem_ph",1.41251202242163,-0.0127051802398437,0.0451728095392448,-0.28125725119678,0.534036822729506,0.533957457848417,0.397161431008609,0.136875391720896,0.425187859217311,0.146534255951145,0.498844727481715,0.652064306044512,0.382797930965078,0.706289407737165,0.534106070973414,0.000148613124996302,1237,191,8,"full",1.3246955366345e-07
-"aclew",NA,"simple_CTC_ph",1.42654678027831,0.557327783280278,0.0330812476399664,16.8472419585214,0.57916521955604,0.385746609076581,0.455319225291674,0.123845994264371,0.269240384177356,0.0732328907333216,0.248848965007666,0.518883786774414,0.270615762167176,0.498847637067337,0.719707634270263,0.333961025193682,1233,191,8,"full",7.72444882960434e-06
-"lena",NA,"voc_fem_ph",1.41199701375671,-0.148069406838096,0.0469306552890104,-3.15506795987076,0.525501476514726,0.515811640079551,0.391131447436056,0.134370029078673,0.444258049284887,0.152621241253182,0.538948708455843,0.666526855636656,0.390667686471741,0.734131261053392,0.534250858365751,0.0184392182861992,1230,191,8,"full",6.44023205691597e-07
-"lena",NA,"peak_lena_CVC",1.28770452105026,0.533109738168644,0.0372883867375471,14.2969375940267,0.464883174252291,0.335310298413581,0.30609815879595,0.158785015456346,0.213320870202865,0.110657828866272,0.372924774777203,0.46186672342015,0.332652715104314,0.610675670693702,0.614031669749751,0.27872137133617,1225,191,8,"full",1.31443564234571e-14
-"lena",NA,"lp_dur",1.46085830365267,0.658294462602961,0.0365181800764954,18.0264860194023,0.506108249694229,0.309402769511224,0.401088467348818,0.105019782345401,0.273311154634873,0.0715629600672663,0.336549503487254,0.522791693349151,0.26751254188779,0.580128868000252,0.698065630276379,0.388662860765155,1247,191,8,"full",0.000697263500353877
-"lena",NA,"lp_n",1.36264779324034,0.641754894227622,0.0370134430905113,17.3384273561986,0.521254651583072,0.328938891001934,0.425639716318834,0.0956149352642469,0.300984708681944,0.0676126600333393,0.338537555828478,0.548620733004089,0.260024345078186,0.581839802547469,0.697886697984696,0.368947806982762,1244,191,8,"full",6.90923411403355e-06
-"lena",NA,"peak_wc_adu_ph",1.35395428942435,-0.12103313455136,0.0458406148298421,-2.64030347325463,0.297288589217105,0.293209418830801,0.228279094631213,0.0690094945858947,0.239495937409746,0.0724003817463968,0.737240211706023,0.48938322142238,0.269073190315194,0.858626933950958,0.306930666582172,0.0137212477513707,1220,191,8,"full",7.26427538050777e-14
-"lena",NA,"wc_adu_ph",1.32719709043864,-0.0718844145532734,0.0458874246789326,-1.56653843740933,0.459202487575401,0.456973511700389,0.367196164816475,0.0920063227589262,0.383583155579914,0.096112320875715,0.564931870814268,0.619340904171454,0.310019871743272,0.751619498692169,0.461827526944908,0.00485401524451931,1221,191,8,"full",1.1249072766203e-09
-"lena",NA,"wc_mal_ph",1.30078249920383,-0.0410938566278482,0.0453915315162589,-0.905319896799004,0.445357891626084,0.444625707044693,0.385257306212953,0.0601005854131349,0.393980025219836,0.0614613396681579,0.567199916318659,0.627678281621912,0.247913976346954,0.753126759794564,0.446269743436902,0.00164403639220914,1207,191,8,"full",1.15493949726437e-20
-"lena",NA,"wc_fem_ph",1.39202797889343,-0.121569989060756,0.0463916257215474,-2.6205158187481,0.482473935488774,0.47604745640231,0.393986663096279,0.088487272392491,0.424150362161452,0.0952618759655385,0.557147965277154,0.651268272036533,0.308645226701367,0.746423449040258,0.489367303576963,0.0133198471746524,1228,191,8,"full",8.6772452092217e-11
-"lena",NA,"avg_voc_dur_chi",1.29033654829908,-0.248208157666275,0.0472367830057724,-5.2545525303013,0.418379640501974,0.396080100830386,0.323902322010647,0.0944773184913229,0.350873008202084,0.102344252242894,0.630050701402325,0.592345345387371,0.319912882270931,0.793757331558156,0.44937987336433,0.0532997725339441,1217,190,8,"full",5.74330090284333e-10
-"lena",NA,"avg_voc_dur_och",1.3362214691335,0.0396835691049056,0.0408940520108971,0.970399536204703,0.481616259954538,0.480887683015744,0.481045843047459,0.000570416907084571,0.503144828640081,0.000596621550973795,0.542198008411531,0.709327025172509,0.0244258377742462,0.736340959346641,0.48240045781048,0.0015127747947368,1231,190,8,"full",2.31313458307868e-10
-"lena",NA,"avg_voc_dur_mal",1.26068636985981,-0.0536264405529199,0.0433836337683247,-1.23609840612461,0.366628516646243,0.365574130340793,0.343460620236946,0.0231678964092984,0.344327078653706,0.0232263427570299,0.63496930860752,0.586793897934962,0.15240191192052,0.796849614800384,0.368450028579956,0.00287589823916368,1233,190,8,"full",1.3095857090841e-13
-"lena",NA,"avg_voc_dur_fem",1.26489204723411,-0.172790590473586,0.04053022893713,-4.26325226885881,0.371505522898276,0.360580579414675,0.366357406552958,0.00514811634532557,0.357014677238817,0.00501683073015368,0.612466812122211,0.597507052041076,0.070829589368806,0.78260258888034,0.389987796293635,0.0294072168789599,1223,191,8,"full",2.78683195965005e-07
-"lena",NA,"voc_dur_chi_ph",1.35375093218474,0.309218185594992,0.0404101254124226,7.65199767234412,0.508517597018739,0.458190535660045,0.431111197595721,0.0774063994230031,0.354526730657796,0.0636555901875771,0.404173332719097,0.595421473124539,0.252300594901354,0.635746280145702,0.557158716218091,0.0989681805580461,1221,191,8,"full",0.000121999232037438
-"lena",NA,"voc_dur_och_ph",1.44107787421807,0.400179223024689,0.0371344456561718,10.7764964833447,0.606134401096936,0.516177681265476,0.606134401096934,NA,0.549646098167417,NA,0.357159549511894,0.741381209748006,NA,0.597628270341936,0.664588198254221,0.148410516988746,1226,190,NA,"no_exp",1.0283654751987e-15
-"lena",NA,"voc_dur_mal_ph",1.26308887020401,-0.0558212443349567,0.0442374329316811,-1.26185541600403,0.438362434356854,0.436987878844398,0.398801730364551,0.039560703992309,0.396986575913122,0.03938064261723,0.559081260467551,0.630068707295579,0.198445565879488,0.747717366701852,0.440123538756664,0.00313565991226656,1212,191,8,"full",3.20976078145854e-20
-"lena",NA,"voc_dur_fem_ph",1.3831894477849,-0.148327429254386,0.0468368425811362,-3.16689642341787,0.483938036754181,0.474691621326436,0.389434795639955,0.0945032411142352,0.428585548468175,0.104003863749275,0.56794282903718,0.654664454868427,0.322496300365252,0.753619817306565,0.493798231523397,0.019106610196961,1226,191,8,"full",2.82713559476989e-10
-"lena",NA,"peak_voc_chi_ph",1.34338486015642,0.430214992184305,0.0391807520398244,10.9802637720435,0.42828477731566,0.346634519138433,0.329999144583877,0.0982856327317833,0.247571126588616,0.073735599689404,0.428910753530295,0.497565198329441,0.271542997864802,0.654912783147722,0.537279301539952,0.190644782401518,1225,191,8,"full",1.87242477930156e-08
-"lena",NA,"voc_chi_ph",1.34801494895718,0.376758447487986,0.0387976601008298,9.71085489456948,0.508562618124873,0.431913223524192,0.421315774215083,0.0872468439097962,0.317486522324168,0.0657456918347899,0.370327328954879,0.56345942384893,0.256409227280903,0.608545256291493,0.582630936287461,0.150717712763269,1223,191,8,"full",7.90865029781591e-07
-"lena",NA,"peak_voc_och_ph",1.4609459375195,0.313168688383856,0.0401063035537136,7.80846551875406,0.508366525511836,0.459228703502694,0.490488045292221,0.017878480219617,0.441673637009673,0.0160991760321074,0.442705070667976,0.664585312062848,0.126882528474599,0.665360857481093,0.555886959983426,0.096658256480732,1238,190,8,"full",2.7586148869123e-15
-"lena",NA,"voc_och_ph",1.4557014670286,0.424233900521787,0.036443627232658,11.6408253715651,0.600504328204522,0.498168506501748,0.600504328204515,NA,0.520432382586769,NA,0.346226454232673,0.721409996178851,NA,0.58841010718093,0.668584966294391,0.170416459792643,1225,190,NA,"no_exp",8.12487923254334e-14
-"lena",NA,"peak_voc_mal_ph",1.39103796697578,-0.0620305861657772,0.0450427375450158,-1.37714955943306,0.373736887758606,0.372323823687572,0.326484045957326,0.0472528418012873,0.332592143147522,0.0481368817836664,0.637979690749811,0.576708022440751,0.219401189111788,0.798736308646233,0.376104729767002,0.00378090607942982,1228,191,8,"full",1.53846663192333e-17
-"lena",NA,"voc_mal_ph",1.26902285836936,-0.0420294067923732,0.0442922239043894,-0.948911639277793,0.443028723433027,0.44223773476507,0.396618922823173,0.0464098006098643,0.39191861010468,0.0458598001849815,0.550370635436569,0.626034032704836,0.214149013971537,0.741869688986259,0.444023146468916,0.00178541170384678,1213,191,8,"full",1.34954608614842e-17
-"lena",NA,"peak_voc_fem_ph",1.46716804925015,-0.150553036002144,0.0470234770273995,-3.20165682164294,0.334287060866377,0.327551021786435,0.255674428459157,0.0786126324072278,0.276857331417044,0.0851257740365337,0.720867976234762,0.52617234003418,0.291763215701592,0.849039443273846,0.347701484871917,0.020150463085482,1233,191,8,"full",2.35975761597958e-12
-"lena",NA,"peak_lena_CTC",1.34555573402461,0.414993756226962,0.0396532112758969,10.465577512488,0.497010387384358,0.416061535722033,0.25280695224223,0.244203435142126,0.218815629256953,0.211368903637325,0.43535981751303,0.46777732871202,0.459748739679975,0.659818018481634,0.578933084721922,0.162871548999889,1229,191,8,"full",7.05536450660863e-10
-"lena",NA,"standardScore",1.32339098819807,0.0369236307390135,0.0499325816004787,0.739469692042912,0.320372731791413,0.320016552905101,0.278948089485189,0.0414246423062238,0.28707999643355,0.04263225529696,0.699439792161846,0.535798466247852,0.206475798332299,0.836325171307098,0.32112831695668,0.00111176405157913,1130,186,8,"full",0.0558041643321107
-"lena",NA,"lena_CTC_ph",1.36605878487377,0.409471862151145,0.0388334014206044,10.5443213103111,0.55895641114171,0.467658576790165,0.351084190536585,0.207872220605114,0.287332326860783,0.170125600770854,0.360956386102145,0.536033885925864,0.412462847746138,0.60079645979495,0.63099480933299,0.163336232542825,1218,191,8,"full",5.95081443722613e-11
-"lena",NA,"lena_CVC_ph",1.270413167644,0.524845035287362,0.0361986890070732,14.4990067232769,0.543752773913815,0.391936261548657,0.428258735292795,0.115494038621015,0.287060178279864,0.0774152085751226,0.305820755694453,0.53577997189132,0.278235886569512,0.553010628916347,0.671137618577911,0.279201357029254,1217,191,8,"full",1.74332594140541e-11
+"aclew",NA,"wc_adu_ph",1.39834708718581,0.0353939400101976,0.0456039422609617,0.776115797350613,0.455118857263093,0.454590997545084,0.32523798120207,0.129880876061027,0.340247103624187,0.135874634729332,0.570026384835062,0.583307040609135,0.368611766943666,0.755000917108756,0.4557508258176,0.00115982827251581,1219,191,8,"full",4.48030997008109e-08
+"aclew",NA,"sc_fem_ph",1.43206436001967,0.0184672182519353,0.0454878617160339,0.405981234449318,0.517602734693081,0.517442267829731,0.368315144655881,0.149287590037207,0.394665588577838,0.159968101893962,0.516909509161165,0.628224154723327,0.399960125379971,0.718964191849055,0.517752287179697,0.000310019349966148,1233,190,8,"full",3.25227585408304e-08
+"aclew",NA,"sc_mal_ph",1.41177766561037,0.027393334111473,0.0447157937244936,0.612609814783808,0.422506973105569,0.422193735087962,0.360889020412255,0.0616179526933051,0.359026962804807,0.0613000262087674,0.574513370481641,0.599188587011474,0.2475884209909,0.757966602484332,0.422935114609594,0.000741379521631756,1227,191,8,"full",1.17281030525865e-11
+"aclew",NA,"pc_fem_ph",1.41592624527927,0.023227249723105,0.0453056540119384,0.512678830703656,0.530004908631522,0.529745223285527,0.369686394386321,0.160318514245209,0.399886437550044,0.173415090488395,0.508389450104962,0.632365746660937,0.41643137548508,0.713014340742851,0.53023519109859,0.000489967813064039,1235,191,8,"full",6.90250236061143e-08
+"aclew",NA,"pc_mal_ph",1.42679899943196,0.030733288443278,0.0447292134674307,0.687096554149253,0.42495972992724,0.424564519977918,0.362639935239645,0.0623197946875868,0.361116009107125,0.0620579074698017,0.572623771475505,0.600929287942538,0.249114245818664,0.756719083594107,0.425494513860845,0.000929993882926982,1227,191,8,"full",1.40672320345982e-11
+"aclew",NA,"sc_adu_ph",1.3998216392517,0.0321581373590287,0.045662130286347,0.704262748088299,0.456803160507741,0.456369691682188,0.318294204956434,0.138508955551308,0.33560913746493,0.146043724264805,0.572746282957385,0.579317820772787,0.382156675023223,0.756800028380935,0.457318609866272,0.000948918184083824,1221,191,8,"full",9.85940149315573e-09
+"aclew",NA,"pc_adu_ph",1.39163710073087,0.0410012543151878,0.0455637174677754,0.89986631016632,0.458055433524682,0.457343385904636,0.32405441510715,0.134001018417523,0.339295923685399,0.140303594702525,0.5674342755297,0.582491136143202,0.374571214460649,0.753282334539779,0.458897886884062,0.00155450097942626,1219,191,8,"full",6.32368397945623e-08
+"aclew",NA,"wc_fem_ph",1.41696690734734,0.0170107653040243,0.0453784512522159,0.374864386831485,0.527574359674851,0.527435650567159,0.371570004638572,0.156004355036273,0.401828632706549,0.168708496105514,0.510897399514319,0.633899544649267,0.410741398090714,0.714770872038249,0.527698569158915,0.000262918591756528,1235,191,8,"full",4.99233671760119e-08
+"aclew",NA,"wc_mal_ph",1.41466799635154,0.0252144179877302,0.0446552563992746,0.564646136219247,0.423617095894843,0.423350183465785,0.363521610719382,0.0600954851754562,0.361015138003205,0.0596811282582438,0.572408757917941,0.600845352818181,0.244297212956357,0.756577000653563,0.423980262921134,0.000630079455348376,1227,191,8,"full",8.21398075638792e-12
+"aclew",NA,"can_voc_dur_chi_ph",1.2673707256136,0.557927074956229,0.0367999069687134,15.1611001470892,0.580373853281766,0.41403969724833,0.435429967423087,0.144943885858673,0.315810971741298,0.105125675460251,0.304348692276331,0.561970614659964,0.324230898373754,0.5516780694176,0.700637990904889,0.286598293656559,1222,191,8,"full",2.74979743266168e-14
+"aclew",NA,"non_can_voc_chi_ph",1.47668302484447,0.372879110374806,0.0398272619988977,9.36240885414433,0.51757403408312,0.443962264255837,0.448662469274013,0.0689115648091156,0.366444860124097,0.0562834880489784,0.394021180079309,0.605346892388238,0.237241413014209,0.627711064168308,0.586186883305141,0.142224619049305,1234,191,8,"full",0.00080347667399251
+"aclew",NA,"avg_cry_voc_dur_chi",1.22878664362143,-0.313507744454981,0.046730435260078,-6.7088556464359,0.41279807083286,0.378527762036652,0.319923513449121,0.0928745573837454,0.345483765685293,0.100294759442226,0.634116359623549,0.587778670662089,0.316693478685977,0.796314234221359,0.461547308923257,0.0830195468866048,1229,191,8,"full",1.00492166883154e-12
+"aclew",NA,"cry_voc_dur_chi_ph",1.45040610727736,0.152318864662809,0.0423823249059685,3.59392423612321,0.482363468254697,0.47104463392344,0.451513129311834,0.0308503389428592,0.422953618589914,0.0288989658185465,0.484894524661324,0.650348843767646,0.16999695826263,0.696343682861649,0.494509997857843,0.0234653639344032,1226,191,8,"full",7.93203930498808e-11
+"aclew",NA,"cry_voc_chi_ph",1.32182712879321,0.272857764182825,0.0400678010797229,6.80990113832101,0.484655292535204,0.446560738429361,0.455210620761609,0.029444671773596,0.382557912218089,0.024745231428932,0.433094454234231,0.618512661323994,0.157306170981726,0.658099121891399,0.525162075694395,0.0786013372650333,1222,191,8,"full",9.27445767391038e-10
+"aclew",NA,"non_can_voc_dur_chi_ph",1.41101351642967,0.38027164889521,0.0404029386612777,9.41197995728127,0.494572138973913,0.422721069707301,0.442196338689378,0.0523758002845388,0.36938895182499,0.043752153230041,0.422209438370588,0.607773766976652,0.209170153774483,0.649776452613195,0.568000319395084,0.145279249687783,1231,191,8,"full",1.6359383850906e-05
+"aclew",NA,"avg_non_can_voc_dur_chi",1.32143633409438,0.127330646480004,0.0442190704745487,2.87954145380084,0.400862626692438,0.394862478598254,0.383401334486366,0.0174612922060634,0.405641292434474,0.0184741692345243,0.63389152982439,0.63689975069431,0.135919716136123,0.796173052686657,0.409830569147608,0.014968090549354,1226,190,8,"full",0.00348219236445071
+"aclew",NA,"lp_n",1.39963275050626,0.0522566054215892,0.0385136636973941,1.35683288487366,0.408254922663895,0.407065493077761,0.408254922663887,NA,0.381725509037301,NA,0.553292020075434,0.617839387735438,NA,0.743836016925393,0.409978941318318,0.00291344824055666,1243,191,NA,"no_exp",6.44369186479479e-07
+"aclew",NA,"lp_dur",1.4038360344008,0.235734940122481,0.0414975114807777,5.6807006422946,0.383909361255472,0.362872486129512,0.370572675066288,0.0133366861891744,0.355676138801457,0.0128005688690451,0.59132460185085,0.59638589755414,0.113139599031661,0.768976333739115,0.417668949172675,0.0547964630431625,1242,191,8,"full",3.1948206910206e-07
+"aclew",NA,"cp_n",1.42551019847118,0.539115400067909,0.0387562162048252,13.9104240005965,0.579846751446703,0.429924082951513,0.425087141583917,0.154759609862782,0.346241109386876,0.126054480988322,0.342222364923911,0.588422560229361,0.35504152009071,0.584997747793879,0.68847975843152,0.258555675480007,1238,191,8,"full",0.000269408576348947
+"aclew",NA,"cp_dur",1.5091220597277,0.434410885702529,0.0403765159736627,10.758998770124,0.518339380528725,0.424622220589217,0.39898839278253,0.119350987746187,0.335082971766139,0.100234704519373,0.40451370183875,0.578863517390877,0.316598648953803,0.636013916387645,0.605424921406417,0.180802700817201,1245,191,8,"full",0.16405622029742
+"aclew",NA,"avg_can_voc_dur_chi",1.33173611303314,-0.049053845589988,0.0439791729773567,-1.11538808643,0.409660109121018,0.408727434168212,0.39235395329962,0.0173061558214075,0.412554230152196,0.0181971603236084,0.620733440205012,0.642303845662001,0.134896850680838,0.787866384741101,0.411004138519062,0.00227670435084973,1228,191,8,"full",4.19083126831873e-07
+"aclew",NA,"can_voc_chi_ph",1.26029942826758,0.61761418277462,0.0351659332087102,17.5628549115723,0.601428864819005,0.396185037084662,0.42304885627804,0.178380008540959,0.289202348702124,0.1219431672394,0.272469022687673,0.537775370114812,0.349203618594367,0.521985653718254,0.737445391783649,0.341260354698988,1216,191,8,"full",2.74622771555974e-12
+"aclew",NA,"peak_voc_chi",1.3052115338496,0.505156336527837,0.0383068469145328,13.1871030172465,0.422824117197123,0.316464612751151,0.333180821687614,0.089643295509514,0.23953704853946,0.0644481585672789,0.414954878718633,0.489425222622884,0.253866418746708,0.64416991447803,0.568010113871151,0.25154550112,1225,190,8,"full",3.91282012235942e-09
+"aclew",NA,"voc_fem_ph",1.45747376455369,0.160102840954247,0.0419742218503613,3.81431349757992,0.557399830949768,0.542985214864604,0.372868788641179,0.184531042308579,0.356228947840046,0.176296061906836,0.422848458593613,0.596849183496171,0.419876245942582,0.650267989826974,0.568845674959475,0.0258604600948714,1240,190,8,"full",0.00010258429640372
+"aclew",NA,"peak_voc_fem_ph",1.34706605098303,0.133908110202208,0.0455239404397342,2.94148768557237,0.295658449097037,0.290805054958335,0.211317009129164,0.0843414399678687,0.212989590900365,0.0850090055160866,0.709916439756418,0.461507953236307,0.291563038665889,0.842565391976443,0.307220598480007,0.0164155435216718,1227,191,8,"full",7.64031188210267e-06
+"aclew",NA,"peak_simple_CTC",1.46759009018041,0.543935372077509,0.0359851495957423,15.1155512256608,0.496734177571861,0.347708932809878,0.359835159918718,0.136899017653142,0.237091526078302,0.0902012938961706,0.331596450690067,0.486920451489052,0.300335302447399,0.57584412013154,0.64771898142471,0.300010048614831,1229,191,8,"full",8.08506983922378e-05
+"aclew",NA,"peak_voc_mal_ph",1.36006202401403,0.00715949167129997,0.0462163845833644,0.154912413332242,0.305253137912553,0.305238705380709,0.237385474660003,0.0678676632525499,0.250231101283438,0.0715401822354233,0.732341659330036,0.500231047900306,0.267469965109026,0.855769629824544,0.305285985916275,4.7280535565496e-05,1233,189,8,"full",5.02667414768873e-09
+"aclew",NA,"voc_och_ph",1.49861117698269,0.523602241979519,0.0334405162042786,15.6577200776741,0.676647885655229,0.493792101389369,0.631967672305328,0.0446802133498865,0.447161092533094,0.0316143592333853,0.22879411567976,0.668701048700459,0.17780427225853,0.478324278789776,0.764029824941542,0.270237723552173,1227,191,8,"full",3.39016354159175e-10
+"aclew",NA,"peak_voc_och_ph",1.57447636040163,0.501712806488802,0.0362446953133101,13.8423789233664,0.577402267682186,0.442719343057079,0.56538639154897,0.0120158761332018,0.440361290039026,0.00935877975497329,0.329147792293337,0.663597234803632,0.0967407864086978,0.573714033550982,0.67597600338464,0.233256660327561,1232,190,8,"full",1.00768469103374e-14
+"aclew",NA,"voc_chi_ph",1.40048402487965,0.476741646869291,0.0359315412926672,13.2680544646323,0.552054354637595,0.418155156865729,0.445138739250885,0.106915615386699,0.302479970116211,0.0726511294019235,0.304387314505424,0.549981790713303,0.269538734511245,0.551713072625096,0.660702284058968,0.24254712719324,1231,191,8,"full",0.00210520125244391
+"aclew",NA,"peak_voc_chi_ph",1.3052115338496,0.505156336527837,0.0383068469145328,13.1871030172465,0.422824117197123,0.316464612751151,0.333180821687614,0.089643295509514,0.23953704853946,0.0644481585672789,0.414954878718633,0.489425222622884,0.253866418746708,0.64416991447803,0.568010113871151,0.25154550112,1225,190,8,"full",3.91282012235942e-09
+"aclew",NA,"voc_mal_ph",1.43742951187877,0.0815332347058095,0.0452136108661234,1.80328961000765,0.463386798180503,0.460430720934828,0.366342497250411,0.097044300930087,0.374513736370921,0.0992088660409713,0.548582314931406,0.611975274313367,0.314974389500117,0.740663428914515,0.466810007650121,0.00637928671529273,1229,191,8,"full",2.39087172151501e-09
+"aclew",NA,"voc_dur_mal_ph",1.39832698810781,0.012387164262223,0.0443737097852923,0.279155480174181,0.449256802047541,0.44918786876244,0.394569727251802,0.0546870747957423,0.391541954738219,0.0542674277461117,0.546517011801743,0.625733133802437,0.232953703010087,0.739267889064406,0.449341307251935,0.000153438489495274,1222,191,8,"full",8.07891341656448e-13
+"aclew",NA,"voc_dur_och_ph",1.45536694027632,0.498183456436395,0.0340376080331097,14.6362651556418,0.654403497860953,0.496783750976616,0.638186945083491,0.0162165527774596,0.475826383987459,0.0120909143132517,0.257673609901286,0.689801699032018,0.109958693668358,0.507615612349823,0.73764393494499,0.240860183968374,1222,191,8,"full",1.79187328786815e-16
+"aclew",NA,"voc_dur_chi_ph",1.39241056760047,0.466916432552681,0.0373717526707796,12.4938328867234,0.579540487929932,0.454242611487683,0.503289159912028,0.076251328017902,0.380119510907433,0.057590387039676,0.317560712240233,0.616538328822655,0.23997997216367,0.563525254305637,0.670444721697103,0.21620211020942,1229,191,8,"full",0.000630822618408388
+"aclew",NA,"avg_voc_dur_fem",1.37619026696054,-0.267223570220902,0.0432456392972119,-6.17920267947409,0.487238313285197,0.453853843776568,0.448444508509757,0.0387938047754336,0.436496255954048,0.0377601915451276,0.49909978202537,0.660678632887464,0.19431981768499,0.706469944176941,0.52237158673388,0.0685177429573121,1234,190,8,"full",3.70139296584884e-07
+"aclew",NA,"avg_voc_dur_mal",1.43437855478031,-0.122294007608022,0.045131599847696,-2.70972019650805,0.452286924169054,0.445848071429323,0.390405346652305,0.0618815775167372,0.400963611427559,0.0635551254989424,0.562525628284645,0.633216875507561,0.252101419073639,0.750017085328491,0.460084283876897,0.014236212447574,1234,191,8,"full",0.00208691377473258
+"aclew",NA,"avg_voc_dur_och",1.57732385012919,0.327996428462653,0.0363599254395032,9.0208223613765,0.617935600453378,0.551591918820544,0.61792915054588,6.44990749638231e-06,0.548127435073896,5.72132136723568e-06,0.338906133772029,0.740356289278275,0.00239192837836664,0.582156451284386,0.658955342426754,0.10736342360621,1241,191,8,"full",2.00311692397805e-09
+"aclew",NA,"avg_voc_dur_chi",1.43664754541998,0.0907886124741244,0.0420413864689962,2.15950567046778,0.476518055141213,0.472791224680331,0.469574451841074,0.00694360330014241,0.485746590166062,0.00718274091208761,0.541510656577872,0.696955228236407,0.0847510525721516,0.735874076576877,0.480612188483639,0.00782096380330765,1236,191,8,"full",0.0340392264054434
+"aclew",NA,"voc_dur_fem_ph",1.41251202242163,-0.0127051802498337,0.0451728095399317,-0.281257251413655,0.53403682276398,0.533957457882766,0.397161431015739,0.136875391748242,0.425187859251199,0.146534255989469,0.498844727475612,0.652064306070497,0.382797931015136,0.706289407732845,0.534106071007987,0.000148613125220801,1237,191,8,"full",1.32469553682115e-07
+"aclew",NA,"simple_CTC_ph",1.42654678027831,0.55732778329024,0.0330812476399959,16.8472419588075,0.57916521956615,0.385746609078616,0.455319225382126,0.123845994184018,0.269240384230648,0.0732328906857545,0.248848965001507,0.518883786825767,0.270615762079289,0.498847637061164,0.71970763428041,0.333961025201795,1233,191,8,"full",7.72444883510347e-06
+"lena",NA,"voc_fem_ph",1.41199701375671,-0.148069406776286,0.0469306552855151,-3.1550679587887,0.525501476347953,0.515811639920906,0.391131447441176,0.13437002890679,0.44425804915582,0.152621241011615,0.538948708481637,0.666526855539835,0.390667686162568,0.73413126107096,0.53425085819749,0.0184392182765838,1230,191,8,"full",6.44023205354976e-07
+"lena",NA,"peak_lena_CVC",1.28770452105026,0.533109738218897,0.0372883867486789,14.2969375911063,0.464883175023152,0.335310299069801,0.306098158768931,0.158785016254215,0.213320870452995,0.110657829561829,0.372924774710178,0.461866723690931,0.332652716149784,0.610675670638825,0.614031670190401,0.2787213711206,1225,191,8,"full",1.31443564697194e-14
+"lena",NA,"lp_dur",1.46085830365267,0.658294462607775,0.0365181800772759,18.0264860191489,0.506108249726011,0.309402769536748,0.401088467308382,0.105019782417633,0.273311154625166,0.0715629601211604,0.336549503487574,0.522791693339867,0.267512541988521,0.580128868000528,0.698065630289862,0.388662860753114,1247,191,8,"full",0.000697263500293818
+"lena",NA,"lp_n",1.36264779324034,0.641754894223615,0.037013443089347,17.3384273566357,0.521254651541107,0.328938890966736,0.425639716358653,0.0956149351824589,0.300984708684725,0.0676126599698036,0.338537555829611,0.548620733006624,0.260024344956013,0.581839802548442,0.697886697966219,0.368947806999483,1244,191,8,"full",6.909234115188e-06
+"lena",NA,"peak_wc_adu_ph",1.35395428942435,-0.121033134576082,0.0458406148380993,-2.64030347331835,0.29728858940214,0.293209419012673,0.228279094552071,0.0690094948500662,0.239495937387422,0.0724003820419004,0.737240211698768,0.489383221399571,0.269073190864308,0.858626933946733,0.306930666766142,0.0137212477534689,1220,191,8,"full",7.2642753891843e-14
+"lena",NA,"wc_adu_ph",1.32719709043864,-0.0718844145187212,0.0458874246725685,-1.56653843687361,0.45920248738493,0.456973511512243,0.367196164924846,0.0920063224600869,0.383583155566627,0.0961123205318443,0.564931870826942,0.619340904160728,0.310019871188678,0.7516194987006,0.461827526753712,0.0048540152414686,1221,191,8,"full",1.12490727484954e-09
+"lena",NA,"wc_mal_ph",1.30078249920383,-0.0410938566250352,0.045391531517749,-0.905319896707313,0.445357891660406,0.444625707079096,0.385257306215997,0.060100585444415,0.393980025243204,0.061461339703306,0.56719991631272,0.627678281640527,0.247913976417841,0.753126759790621,0.446269743470996,0.00164403639190004,1207,191,8,"full",1.15493949797995e-20
+"lena",NA,"wc_fem_ph",1.39202797889343,-0.121569988901641,0.0463916257073343,-2.62051581612113,0.482473935112658,0.476047456043403,0.393986663392416,0.088487271720252,0.424150362185982,0.0952618751757391,0.557147965295511,0.651268272055366,0.308645225421906,0.746423449052554,0.489367303192772,0.0133198471493682,1228,191,8,"full",8.67724518475722e-11
+"lena",NA,"avg_voc_dur_chi",1.29033654829908,-0.248208157649865,0.0472367829960768,-5.25455253103244,0.418379640202309,0.39608010053923,0.323902322160104,0.0944773180421993,0.350873008193556,0.102344251706661,0.630050701420907,0.592345345380173,0.319912881432838,0.793757331569862,0.449379873091012,0.0532997725517817,1217,190,8,"full",5.74330089595618e-10
+"lena",NA,"avg_voc_dur_och",1.3362214691335,0.0396835690948962,0.0408940520065454,0.970399536063205,0.481616259905028,0.480887682966623,0.481045843010921,0.000570416894112281,0.503144828565845,0.000596621537362853,0.5421980084245,0.70932702512018,0.0244258374956285,0.736340959355447,0.482400457760706,0.00151277479408296,1231,190,8,"full",2.31313458409174e-10
+"lena",NA,"avg_voc_dur_mal",1.26068636985981,-0.0536264405527059,0.0433836337670405,-1.23609840615627,0.366628516587878,0.365574130282538,0.343460620176673,0.0231678964112121,0.344327078571576,0.0232263427574844,0.634969308626006,0.58679389786498,0.152401911922011,0.796849614811983,0.36845002852186,0.00287589823932155,1233,190,8,"full",1.30958570870501e-13
+"lena",NA,"avg_voc_dur_fem",1.26489204723411,-0.172790590471754,0.0405302289392825,-4.26325226858718,0.371505522911089,0.360580579427496,0.3663574065573,0.00514811635378301,0.357014677248439,0.00501683073847119,0.612466812118973,0.597507052049128,0.070829589427521,0.782602588878272,0.389987796305419,0.0294072168779236,1223,191,8,"full",2.78683195927009e-07
+"lena",NA,"voc_dur_chi_ph",1.35375093218474,0.309218258197833,0.040410105425507,7.65200325368745,0.508517125149107,0.458190047201627,0.431111687408588,0.0774054377405149,0.354526805134283,0.063654740392498,0.404173346462675,0.595421535665517,0.252298910803233,0.635746290954713,0.557158352217359,0.0989683050157314,1221,191,8,"full",0.000121999049955773
+"lena",NA,"voc_dur_och_ph",1.44107787421807,0.400179223022343,0.0371344456558094,10.7764964833867,0.606134401079938,0.516177681249327,0.606134401079946,NA,0.54964609813355,NA,0.35715954951531,0.741381209725165,NA,0.597628270344793,0.664588198240835,0.148410516991508,1226,190,NA,"no_exp",1.02836547499146e-15
+"lena",NA,"voc_dur_mal_ph",1.26308887020401,-0.0558212443291876,0.0442374329343234,-1.26185541579824,0.438362434377629,0.436987878865441,0.398801730336074,0.0395607040415582,0.396986575899352,0.0393806426677011,0.5590812604674,0.630068707284652,0.198445566006654,0.747717366701751,0.440123538776947,0.00313565991150568,1212,191,8,"full",3.20976078231765e-20
+"lena",NA,"voc_dur_fem_ph",1.3831894477849,-0.148327429133352,0.0468368425727634,-3.16689642139985,0.483938036516214,0.474691621103762,0.389434795848956,0.0945032406672531,0.428585548506526,0.104003863210847,0.567942829045089,0.654664454897718,0.32249629953047,0.753619817311812,0.493798231278519,0.0191066101747563,1226,191,8,"full",2.82713559108979e-10
+"lena",NA,"peak_voc_chi_ph",1.34338486015642,0.430214992185634,0.0391807520382717,10.9802637725126,0.428284777256943,0.346634519083657,0.329999144637243,0.0982856326196942,0.247571126603008,0.0737355995976754,0.42891075352992,0.497565198343904,0.2715429976959,0.654912783147435,0.537279301502111,0.190644782418454,1225,191,8,"full",1.87242477941775e-08
+"lena",NA,"voc_chi_ph",1.34801494895718,0.376758447493698,0.0387976600997815,9.7108548949791,0.508562618101321,0.431913223498712,0.421315774270216,0.0872468438310979,0.317486522348625,0.065745691771947,0.370327328952693,0.563459423870632,0.256409227158359,0.608545256289697,0.582630936272752,0.15071771277404,1223,191,8,"full",7.90865029681214e-07
+"lena",NA,"peak_voc_och_ph",1.4609459375195,0.3131686883528,0.0401063035708534,7.80846551464271,0.508366525567558,0.459228703566793,0.490488045149651,0.0178784804178964,0.44167363693064,0.0160991762124524,0.442705070667261,0.664585312003387,0.126882529185276,0.665360857480557,0.555886960020453,0.0966582564536595,1238,190,8,"full",2.75861488384973e-15
+"lena",NA,"voc_och_ph",1.4557014670286,0.424233899492811,0.0364436270159254,11.6408254125591,0.600504317973622,0.498168496737305,0.600504317973631,NA,0.520432363366824,NA,0.346226456211691,0.721409982857753,NA,0.588410108862595,0.668584958656589,0.170416461919283,1225,190,NA,"no_exp",8.12487855211026e-14
+"lena",NA,"peak_voc_mal_ph",1.39103796697578,-0.0620305861544352,0.0450427375494051,-1.37714955904705,0.373736887781913,0.372323823711381,0.326484045869753,0.0472528419121527,0.332592143076045,0.0481368818991729,0.637979690760087,0.576708022378781,0.219401189375019,0.798736308652666,0.376104729789233,0.00378090607785154,1228,191,8,"full",1.53846663183908e-17
+"lena",NA,"voc_mal_ph",1.26902285836936,-0.0420294067890845,0.044292223902997,-0.948911639233374,0.443028723383269,0.442237734715472,0.396618922781581,0.0464098006016955,0.391918610037882,0.0458598001739024,0.550370635449648,0.626034032651486,0.214149013945669,0.741869688995074,0.444023146419157,0.00178541170368473,1213,191,8,"full",1.34954608476349e-17
+"lena",NA,"peak_voc_fem_ph",1.46716804925015,-0.150553036111456,0.047023477036291,-3.20165682336218,0.334287061096193,0.327551022004229,0.255674428352024,0.0786126327441681,0.276857331393027,0.0851257744296748,0.720867976225428,0.526172340011357,0.291763216375325,0.849039443268349,0.347701485111822,0.0201504631075932,1233,191,8,"full",2.35975761632098e-12
+"lena",NA,"peak_lena_CTC",1.34555573402461,0.414995081159047,0.0396535201801586,10.4655293974808,0.497038807016921,0.416088334511096,0.2528041036745,0.244234703342426,0.218824273342114,0.21140670071023,0.435357322029525,0.467786568150598,0.459789844070343,0.659816127439702,0.578953831858608,0.162865497347512,1229,191,8,"full",7.05609073313179e-10
+"lena",NA,"standardScore",1.32339098819807,0.0369236307333894,0.0499325815957371,0.739469692000497,0.320372731732068,0.320016552845903,0.278948089496638,0.0414246422354285,0.287079996423624,0.0426322552208771,0.699439792170031,0.535798466238589,0.206475798148057,0.836325171311991,0.321128316897228,0.0011117640513248,1130,186,8,"full",0.0558041643242473
+"lena",NA,"lena_CTC_ph",1.36605878487377,0.409471862152539,0.0388334014197989,10.5443213105657,0.558956411041549,0.467658576688961,0.351084190614719,0.207872220426822,0.287332326861223,0.170125600587336,0.360956386104341,0.536033885926275,0.412462847523672,0.600796459796778,0.63099480926292,0.16333623257396,1218,191,8,"full",5.95081443524452e-11
+"lena",NA,"lena_CVC_ph",1.270413167644,0.524844747834191,0.0361985810358791,14.4990420291331,0.543746613869171,0.39193073570177,0.428256620386812,0.115489993482348,0.287055598181085,0.0774116442918298,0.305821515519446,0.535775697639492,0.278229481349173,0.553011315905421,0.67113408942404,0.279203353722269,1217,191,8,"full",1.74327897875327e-11

File diff suppressed because it is too large
+ 384 - 384
data_output/aclew_base_data_set.csv


File diff suppressed because it is too large
+ 545 - 545
data_output/aclew_metrics.csv


File diff suppressed because it is too large
+ 1254 - 1254
data_output/aclew_metrics_scaled.csv


+ 68 - 68
data_output/all_rs.csv

@@ -1,69 +1,69 @@
 "X1","X2","X3","X4","X5","X6","X7","X8","X9","X10","X11","X12","X13","X14","X15","X16","X17","X18","X19","X20","data_set","metric"
-0.514956977969716,0.563744701216287,0.525971430582757,0.503452380233829,0.592771575309432,0.577479558038973,0.642940591504311,0.57122626461789,0.539493475370991,0.582039030298194,0.492423873952027,0.575671448940038,0.567066523327573,0.568242518572264,0.545582150802406,0.589180554422384,0.549768871820702,0.531581330400875,0.532184350618511,0.501716076090499,"aclew","wc_adu_ph"
-0.60744380590414,0.623856925303961,0.54062580484287,0.55472480161382,0.593846071676229,0.607708294249994,0.58955399461157,0.4950946361123,0.575656311630062,0.539511217976342,0.575363709505421,0.555682618490975,0.55506906381151,0.581382045925099,0.578563624653707,0.592981973159342,0.640648579918711,0.571084849328106,0.558285903519239,0.510690830649518,"aclew","sc_fem_ph"
-0.454071162360524,0.416643085255234,0.51533218912316,0.497063740374322,0.591178498094461,0.471474384596598,0.522868299409386,0.50036765480733,0.501438535746882,0.547862286324877,0.472576246450398,0.510839534253933,0.437894885070397,0.493173218253865,0.514134236371331,0.567551797533735,0.520590013113675,0.502958346383655,0.494607071492018,0.439444364379745,"aclew","sc_mal_ph"
-0.612101582025413,0.624543074576438,0.545722890942746,0.556923250940681,0.592617310167979,0.622195219519041,0.603225900057828,0.497357241828521,0.591652144509599,0.5441069215985,0.591090795985835,0.556432397307222,0.557269218266729,0.586705264190521,0.583995318170169,0.600459305601605,0.638250562783884,0.572114153468442,0.574749936931428,0.526607430019331,"aclew","pc_fem_ph"
-0.453895468816131,0.412407372282287,0.512433831300369,0.511873974622775,0.592634100402089,0.47391917352104,0.521497047396641,0.502339897135917,0.520126249863827,0.547309497991841,0.473486921390159,0.510471864543098,0.434204701889369,0.451121011024018,0.515945996981483,0.579683360433923,0.529088826493948,0.511613647409361,0.494454020675439,0.436541952599067,"aclew","pc_mal_ph"
-0.519086082742011,0.569154313347122,0.533682891117097,0.508831093574555,0.595335039076691,0.58003562049415,0.648947186251174,0.574291848723576,0.548825632106,0.589004529725621,0.498902142013653,0.581185791252215,0.574064323777902,0.57031334119447,0.551804092696188,0.590081859535413,0.555797831436618,0.538727391210747,0.538449358391666,0.511443108935004,"aclew","sc_adu_ph"
-0.51995062874752,0.568085421558203,0.532163353275416,0.50895545693479,0.596963031453519,0.582120235442166,0.647471002167913,0.579350351756224,0.545731445140159,0.588359810481756,0.498806213999138,0.582346981795963,0.572016233979889,0.572732787904484,0.551544693764168,0.593614620187932,0.556089134847895,0.536833080599536,0.539653156576613,0.508977330996001,"aclew","pc_adu_ph"
-0.605615876579067,0.618545460689729,0.538651399072411,0.550073425134171,0.588960992728224,0.61685127983049,0.596794575012263,0.490719972563589,0.587764411316614,0.536838233451771,0.586824465022847,0.549664569846853,0.550812138441852,0.58274680029187,0.578317047217438,0.593486845415488,0.633032385125835,0.565887572830481,0.568657662905796,0.519801321589111,"aclew","wc_fem_ph"
-0.422639081158376,0.409995609387467,0.510338182131191,0.486450751205043,0.583515143596572,0.4702179808776,0.519274100005391,0.498202497040722,0.505042641406648,0.545207557735081,0.460438809035565,0.508254560818523,0.431286147794675,0.492716552758193,0.514096181113092,0.580789868119779,0.529737125416281,0.511045856852237,0.492660660373013,0.434700772038992,"aclew","wc_mal_ph"
-0.776329844851422,0.762317655392172,0.773629386583529,0.80731330904492,0.731206223987224,0.670378070668104,0.712161527016787,0.770412314251489,0.753567128474684,0.762713383064226,0.731973977307767,0.753508249756244,0.731202953941381,0.780639483102848,0.763748531544185,0.748497438673731,0.805129836561287,0.705149471214602,0.770480367705703,0.733992810824964,"aclew","can_voc_dur_chi_ph"
-0.621767184114722,0.634605658364187,0.692825057591668,0.63645398810317,0.72163885643533,0.589857132730738,0.658281085267822,0.652289219478783,0.647537718892408,0.663932338728842,0.568432136722615,0.711800494221145,0.648943983754027,0.653799334450546,0.659337711603198,0.705469969349028,0.672474965368139,0.635086274996597,0.639090886506478,0.689460043423256,"aclew","non_can_voc_chi_ph"
-0.605880566400882,0.520254021515901,0.623455921534492,0.558988310256889,0.609208373584932,0.512370889879785,0.575505767971488,0.582134245247768,0.521647027804582,0.530269924759634,0.620067712422063,0.6167847547,0.508475328776737,0.610819952814321,0.533115322397369,0.507456558400073,0.568092736409478,0.602522703242067,0.610243090959404,0.436259727960763,"aclew","avg_cry_voc_dur_chi"
-0.537049457883616,0.596773739324188,0.543011654069975,0.582362892425719,0.516567932934974,0.512553516541952,0.516733100973558,0.528549854993053,0.554601085191362,0.463284997450611,0.568776087293533,0.543250750719489,0.511597658204418,0.604439235255224,0.505335046483145,0.474642800944769,0.540290629181634,0.571127659135166,0.522856594543378,0.474344201119857,"aclew","cry_voc_dur_chi_ph"
-0.510725516342005,0.558775343450323,0.478223549799327,0.53377530366097,0.48002450765795,0.505111192860029,0.475047514267117,0.504943205238094,0.517192488490542,0.436340884408221,0.513046600497162,0.53184215268911,0.486452959533396,0.542002860036901,0.502944900567508,0.466410477262084,0.486997585796251,0.476688375276069,0.510592386506566,0.459310544745964,"aclew","cry_voc_chi_ph"
-0.604819565510691,0.621973933703232,0.675704734556044,0.636292273760913,0.68973507440383,0.603146973672804,0.67341626947081,0.639817700452688,0.63918958475856,0.64945794552826,0.580148858722549,0.691380507410264,0.626026883384086,0.636363294533376,0.669760257894985,0.698986969787719,0.637613477605976,0.620030470618626,0.654009589287115,0.646942730696498,"aclew","non_can_voc_dur_chi_ph"
-0.538798524821472,0.500082027728531,0.551785875458969,0.503240712876565,0.513094865669124,0.576787116209657,0.558317173778955,0.526866710149401,0.557031249847189,0.523875561332612,0.538254724986203,0.571525841079245,0.566967165121223,0.478738853411478,0.458980985092495,0.580658728723593,0.576578295452479,0.615110650373415,0.565038167350548,0.478800184918283,"aclew","avg_non_can_voc_dur_chi"
-0.465291632371695,0.536160464205058,0.40292859355782,0.521774482081191,0.397405860516335,0.481425593640985,0.503985713205109,0.411959654758617,0.426225705755156,0.480293869525321,0.477832797936293,0.409158246328431,0.403245765766393,0.490631410119349,0.53868515186307,0.512274032640272,0.530966114894488,0.518820153189833,0.437108619568531,0.36402312668394,"aclew","lp_n"
-0.448729999595054,0.471972559297468,0.453237504370271,0.560383304976782,0.485241347788393,0.422328651051034,0.487204239923691,0.444060162507449,0.420185755373799,0.50502300040171,0.473107702809308,0.41991245225398,0.410315739698773,0.520833384000972,0.516806327928826,0.532917333199025,0.517929227055006,0.541310155751209,0.38491444908078,0.377088423972374,"aclew","lp_dur"
-0.76364071209065,0.764088798553397,0.705123509039246,0.773229824468831,0.6736735425919,0.762336113838847,0.652349693260087,0.771745180406618,0.719328661602541,0.70740190926681,0.733502194974017,0.73273532045883,0.736740847850496,0.731450124257904,0.760200318401558,0.751329727656444,0.747361781687061,0.665839563423871,0.726412676351454,0.736094835523757,"aclew","cp_n"
-0.720578597004699,0.71898788323355,0.653631045997614,0.723505272436522,0.629428734830478,0.738437824784773,0.62713089686823,0.70394266472892,0.656885947990794,0.655098176259349,0.699178023852168,0.669505163536581,0.698510393187217,0.704875463889374,0.703843261595945,0.706063117205952,0.705593786409236,0.648606912874211,0.675373338966844,0.669072854819628,"aclew","cp_dur"
-0.624891235600395,0.560785946582761,0.524651163445485,0.63494566535634,0.517129020073855,0.523666664062182,0.647101288158205,0.586194620871482,0.643552310827299,0.65590147084155,0.604914090294954,0.649630440960945,0.5972047304685,0.654868060417701,0.535978490117409,0.577111710214785,0.621798586737808,0.638580413851963,0.582505489738037,0.533987881682835,"aclew","avg_can_voc_dur_chi"
-0.815568063272495,0.805459505293446,0.853550032509681,0.813069836761214,0.767985633544625,0.761304170639183,0.762571137914819,0.802329182297835,0.808060976544563,0.802342492863332,0.771130745356674,0.815447705566579,0.779142018686698,0.806977696867667,0.808095122730841,0.807796002621576,0.832297872016938,0.767529886442811,0.819154903719279,0.789411685260068,"aclew","can_voc_chi_ph"
-0.509705084696262,0.64644608411566,0.652356954781486,0.567004744678091,0.601767721482991,0.513381336683878,0.552965283098975,0.614592413044375,0.570598971152563,0.599267822862678,0.586362793497837,0.646863705071988,0.632287139786668,0.571074576537507,0.633372671345156,0.568269722022662,0.620818842514788,0.589585122364277,0.625776279461507,0.671739466947045,"aclew","peak_voc_chi"
-0.706175264700129,0.67642278122811,0.650235335542526,0.63289114125847,0.698423643342167,0.665391588639897,0.690560831062713,0.706674186835948,0.66739813139353,0.679868269324616,0.673890400883986,0.718101177283261,0.672604754785653,0.706579846690095,0.655273202256679,0.713129054331586,0.698329332805901,0.640938109077421,0.692695962972803,0.661563313833428,"aclew","voc_fem_ph"
-0.368286967172532,0.385924560544755,0.397877945541796,0.271993481829834,0.463467862276035,0.326331683661567,0.30856617894889,0.532146804341895,0.385636339427868,0.392915186158719,0.374988726818699,0.363838272820678,0.397204557847419,0.432641018643323,0.289689393306845,0.347644288797615,0.37512872089502,0.258062440879496,0.344182443561966,0.368282234799181,"aclew","peak_voc_fem_ph"
-0.616031312165352,0.703420710919501,0.679859144110372,0.600042644398157,0.655110255935954,0.56185914088316,0.613779732860626,0.66893619329032,0.588925643884016,0.654720667228016,0.637983330743261,0.667715734319248,0.618656423381066,0.6574256828032,0.670309190108829,0.633315045754006,0.680241044790779,0.58936288865026,0.662435540920276,0.669323298739891,"aclew","peak_simple_CTC"
-0.254626944903326,0.37738503293213,0.358232330837139,0.253076181277259,0.401727817180259,0.409008314756607,0.401004553363269,0.37328885351539,0.357317005036179,0.498959536317855,0.312637024197299,0.429834320619208,0.40218153414165,0.315850267819196,0.355500899775946,0.404750215996279,0.279884157529219,0.329667447491777,0.28801348419087,0.320820123083396,"aclew","peak_voc_mal_ph"
-0.79307731314616,0.780474988230087,0.736967831313103,0.774948582308733,0.809721789260532,0.777066035706324,0.744249497365171,0.792131138180702,0.755047823361635,0.753653409524792,0.743237844222134,0.812676974313951,0.777521845728702,0.774474730389284,0.756744397684686,0.732055074471672,0.789229100582446,0.764910997238315,0.774292978328385,0.742019748640869,"aclew","voc_och_ph"
-0.670776183183699,0.719846859111819,0.612354210034068,0.619794303082141,0.704366579107451,0.649355023198546,0.618233278192651,0.698673928408857,0.681952519170603,0.573115627313923,0.625629369728263,0.688174794232266,0.602803435332205,0.687852742372292,0.656172419406978,0.675345882733445,0.694113396927643,0.683967390501495,0.675921596043818,0.656707514378964,"aclew","peak_voc_och_ph"
-0.663558793043939,0.688335572292661,0.718383890018228,0.683190083369334,0.734751951893677,0.616098888781895,0.689462694148258,0.704826076987046,0.679089068877865,0.708190937085788,0.635990468089049,0.749411595857203,0.689072307223663,0.711060206495477,0.688898210244804,0.699559532547737,0.701617481390255,0.657893100145003,0.676814057691932,0.715651154692895,"aclew","voc_chi_ph"
-0.509705084696262,0.64644608411566,0.652356954781486,0.567004744678091,0.601767721482991,0.513381336683878,0.552965283098975,0.614592413044375,0.570598971152563,0.599267822862678,0.586362793497837,0.646863705071988,0.632287139786668,0.571074576537507,0.633372671345156,0.568269722022662,0.620818842514788,0.589585122364277,0.625776279461507,0.671739466947045,"aclew","peak_voc_chi_ph"
-0.456798399927522,0.457878410815907,0.519246778287842,0.469861959180112,0.653792607028568,0.566152540372533,0.579095649315059,0.634125614796008,0.600340066186205,0.661616739432527,0.524825889839146,0.543047435328301,0.550992248338118,0.538796686989278,0.541562021079575,0.566303911402961,0.531959626399694,0.516953773264406,0.537714245759343,0.565130417801082,"aclew","voc_mal_ph"
-0.412099697932018,0.41164257065729,0.479641712036116,0.444799987968187,0.6184600175909,0.510890602078329,0.56607008434508,0.537543828260123,0.551754768593841,0.634655641744801,0.5678309823274,0.513898391867727,0.503910463081003,0.540764534321028,0.506271773521366,0.578459503990369,0.509669430850683,0.524484432585359,0.548300147372986,0.513141423650995,"aclew","voc_dur_mal_ph"
-0.739078902186085,0.775211074029269,0.724944716035553,0.768978165635619,0.777658099034006,0.738828663574653,0.702553986526181,0.772451204023906,0.742122896540218,0.731488474395282,0.723195396373732,0.78248304448843,0.752659560166616,0.733263195260178,0.726865600244635,0.664518249620336,0.7554697905541,0.751973871055236,0.748100787037682,0.730991306204573,"aclew","voc_dur_och_ph"
-0.706707332769253,0.708745500243963,0.736918148151124,0.752688965068398,0.728484246403939,0.626360848497273,0.718275291539139,0.694203610335758,0.703810792057042,0.686733842512463,0.669158590456941,0.736769923958224,0.676539110540014,0.735097108855217,0.710781227728438,0.666640252187855,0.711954448755433,0.687867829733402,0.693002646194955,0.692676331243829,"aclew","voc_dur_chi_ph"
-0.440122840513334,0.456952390841685,0.432335663743403,0.541863564526901,0.609346472668207,0.480414588748178,0.521706656599047,0.574240246186688,0.503906001261885,0.419597684789231,0.489809401289438,0.543077736496381,0.502097310529312,0.528905851547599,0.429127533711739,0.465459083030913,0.471876129428944,0.349329475757884,0.437058860055576,0.498492624743001,"aclew","avg_voc_dur_fem"
-0.470822435854684,0.444124569754123,0.470513614123499,0.47306858630739,0.502944762299035,0.474514981027506,0.5188859088533,0.494309389044907,0.645400795022864,0.46971937268549,0.537206918208407,0.512653656173001,0.397020419405271,0.552273578878179,0.516001088399303,0.457804384336194,0.479581204411402,0.532271886095274,0.503480830640904,0.49574517692668,"aclew","avg_voc_dur_mal"
-0.658947967388154,0.70415466881598,0.636798527108917,0.663209801428839,0.707034188429744,0.656159814503536,0.647626748786253,0.705251281714332,0.685586408417439,0.616459840717674,0.637852788090831,0.657794211184732,0.65763405074612,0.618164891469975,0.623889650322506,0.623512817740204,0.660229950592527,0.697790534781385,0.699195082812112,0.693024196237678,"aclew","avg_voc_dur_och"
-0.653575962364304,0.626072665604683,0.530378149335105,0.664839988949207,0.568123427990754,0.585026185260148,0.664271769352599,0.614962622271652,0.653345004475812,0.608766936685168,0.636316207247498,0.6745105192045,0.62257920677784,0.594878126141789,0.609257782186337,0.668734329815782,0.644147542712362,0.686650662214933,0.569969275773014,0.577388249501231,"aclew","avg_voc_dur_chi"
-0.609284005093348,0.60056000968558,0.508583658434065,0.555940663656364,0.631000968329319,0.598798332311116,0.612243391633638,0.59501386546207,0.586663705282806,0.56212342247169,0.591400060958242,0.588684249654415,0.585060855444436,0.633005080892077,0.55259354759516,0.568805235732638,0.595342829461703,0.52352221890042,0.579636408132324,0.547782212595295,"aclew","voc_dur_fem_ph"
-0.767556122318934,0.749274426090441,0.749711862363772,0.752563930884069,0.78908216504436,0.725157628475316,0.770939026894618,0.794043352616229,0.750670235321324,0.751042993679118,0.750891295253276,0.79963776485252,0.764053382264747,0.784412038440407,0.745911217966578,0.745639180835196,0.76226990172277,0.725090971030278,0.761725724291896,0.767890406987292,"aclew","simple_CTC_ph"
-0.577023856622849,0.544631119207252,0.498760160652994,0.579404038504559,0.585592718633337,0.577860011022351,0.573453835148534,0.619495370553328,0.574648213969999,0.570482938368478,0.546598841749175,0.577152805526624,0.619823478758052,0.601106972797835,0.517498227378343,0.567176278230629,0.609237975860836,0.491011246700207,0.543106110839461,0.50572333080369,"lena","voc_fem_ph"
-0.575023664616254,0.696758086752186,0.645189786079153,0.641425054321643,0.629453963277946,0.592555542265142,0.644511920607655,0.658923176694353,0.580677349116494,0.623689877019895,0.640882475134395,0.661099093221465,0.593221941963173,0.594665178059069,0.614106889293579,0.593167342291599,0.725763384050695,0.631959061798077,0.639070822456476,0.674279299217425,"lena","peak_lena_CVC"
-0.777161222937707,0.763658500781102,0.773891586458685,0.800911835303582,0.800250345170872,0.783075481663763,0.754179278523275,0.768031417382833,0.770998670324637,0.807818200876252,0.786758062920237,0.7636373819806,0.753697556930721,0.781068039805793,0.770126140655244,0.766969080995379,0.755641750312263,0.75010284381333,0.754536701655649,0.741592130919926,"lena","lp_dur"
-0.79077637531595,0.775892305953215,0.778540101181717,0.818951135274011,0.77968598559923,0.781561820944014,0.777397390085828,0.760677633238953,0.788727690483725,0.824719327683834,0.7905301880737,0.782711852829207,0.768965848172053,0.790343241539025,0.783933777661662,0.786803693321835,0.769893435356823,0.752394046882338,0.776009882632672,0.784722534577451,"lena","lp_n"
-0.278724222826177,0.292211189103061,0.333238310131761,0.396664032410664,0.312576461586514,0.339482824564949,0.327374112483269,0.414285266003601,0.446278916520041,0.367018984231649,0.304567360564912,0.333915974311184,0.456092976586313,0.358837710187657,0.232645575498345,0.229781447430251,0.377433677179336,0.230422614882585,0.296964861401757,0.338840436867077,"lena","peak_wc_adu_ph"
-0.529948346609509,0.446342782355496,0.504698931066006,0.579748728260576,0.543917310822166,0.536977550040328,0.568500549168598,0.604358829971736,0.484426728586767,0.596126505311184,0.524345438243237,0.598645377869968,0.581628605283755,0.557335285172798,0.38994557880904,0.512388644824795,0.568364009261304,0.384345606485758,0.507037180560286,0.472424235433623,"lena","wc_adu_ph"
-0.409669829717083,0.495416764257919,0.39564242506268,0.475642645551151,0.387836057980293,0.45409170760701,0.475241962089335,0.481416879719821,0.559984781669361,0.622679378841084,0.551463296134509,0.535690435623764,0.390953940966402,0.520015855928099,0.488760305530557,0.438295571175104,0.422338107860466,0.426711854955899,0.41075875682501,0.548551514209281,"lena","wc_mal_ph"
-0.541803444099567,0.548912292756428,0.455231512738111,0.561493794376427,0.517597047174637,0.557521087827731,0.568002403399166,0.582219177092727,0.556043275340298,0.588996791320472,0.561771752580744,0.538754181002462,0.617474902929307,0.579678230741059,0.435322749871408,0.536512399950102,0.56409391986045,0.438012760139649,0.525041286713149,0.485945062408933,"lena","wc_fem_ph"
-0.528029270335922,0.490318137368078,0.56732840701042,0.646904954705906,0.618900487983524,0.594355026935827,0.561551332914422,0.666663187142741,0.595218819296988,0.531926101751922,0.584184002071092,0.596995166798318,0.373124786449771,0.548078767159135,0.550058838059385,0.492412585478013,0.538558770881597,0.634829128732732,0.557235591092447,0.567757921903953,"lena","avg_voc_dur_chi"
-0.568028671051045,0.445540488789363,0.506150551927157,0.51325877375364,0.417301682091102,0.583420255935482,0.495026979607544,0.566071397799542,0.410859116081604,0.480390679299775,0.536658243255659,0.518688600189684,0.511434812695369,0.475065198696925,0.527604948629044,0.528235304228402,0.300941278687904,0.505685847489519,0.533084164066375,0.546880286295768,"lena","avg_voc_dur_och"
-0.269226121531571,0.416703987350695,0.406587706041473,0.430968872644221,0.432670912800272,0.374737837274107,0.400301374120868,0.381436989215389,0.418683194795644,0.366068851283697,0.346816319817315,0.461852924778205,0.350777755879061,0.41913303372982,0.410665039051536,0.411070855494646,0.370332653980733,0.442289169632383,0.361236317366322,0.506011947193841,"lena","avg_voc_dur_mal"
-0.364900069260369,0.479264498456893,0.398319461934832,0.416228797503012,0.571532062107263,0.401837408734622,0.441807201825882,0.400458521778958,0.447276962986031,0.498825040089607,0.458625150944248,0.432328467824555,0.476695084204696,0.503388313690748,0.354405910615426,0.474238605318202,0.459705328778063,0.355763731449345,0.361516846865296,0.393206280701846,"lena","avg_voc_dur_fem"
-0.622199541279469,0.616934907628417,0.601918166973835,0.668288822566744,0.618052795570861,0.533003299791367,0.609294042075418,0.612406516857663,0.602522842653481,0.583914917947506,0.624999686236765,0.652101227976342,0.527175048535465,0.670863944066618,0.585884944211583,0.613304727759076,0.643922141339969,0.578853715849266,0.588505687758261,0.613489683402696,"lena","voc_dur_chi_ph"
-0.70816980177094,0.665030122170378,0.73953518776717,0.737379028893827,0.722312118952761,0.664679195864159,0.695303728847736,0.699074038686938,0.640825349381162,0.691493325766367,0.608412025982768,0.733923919811333,0.689486277017726,0.678049190355402,0.670224146291901,0.642662826383981,0.712466729172385,0.689500557429511,0.701436018774193,0.660699624490525,"lena","voc_dur_och_ph"
-0.410247586816077,0.481438182087989,0.499339697603498,0.521765499959078,0.449726601647751,0.415491664354224,0.443743534234547,0.469448748818048,0.537673880251299,0.610337066586464,0.478811233748408,0.526506838358629,0.392284119532809,0.573059365253609,0.470675357616884,0.484413397651443,0.39403917688958,0.417718690737818,0.385245328585946,0.505948425739961,"lena","voc_dur_mal_ph"
-0.524702931585103,0.526804530556653,0.44776505063486,0.542107711185311,0.526967957568277,0.56143906129784,0.551012499575954,0.578910522472196,0.551261193891636,0.587169761657119,0.529973693270416,0.515136489450672,0.61366977467668,0.532829935726937,0.452673323274802,0.520855502606575,0.555989763864913,0.435403475897326,0.522096847563674,0.487574331901232,"lena","voc_dur_fem_ph"
-0.455612270898647,0.566611625504985,0.525770211275486,0.457873720479021,0.560021934427905,0.417797272219518,0.547179260569881,0.591096135864837,0.430339244539447,0.483560626524835,0.512844874573083,0.619521882220236,0.531273191646718,0.510365567806462,0.479989882994034,0.444448054105518,0.557318576502302,0.456022297100602,0.515027796846623,0.580505323476756,"lena","peak_voc_chi_ph"
-0.574927663350819,0.585985512441094,0.610773630529681,0.668344551647968,0.602125495152683,0.530440073033008,0.631801891586782,0.622291783428742,0.598128488302872,0.600504177805796,0.594325656154649,0.678383598635582,0.556337765564854,0.638573434729219,0.593594951719832,0.597744632232196,0.620694646079525,0.543883135348932,0.607000557981912,0.615504085360421,"lena","voc_chi_ph"
-0.579181414717686,0.532289951406167,0.534137508625062,0.560175320081121,0.570846749881924,0.541673411821115,0.560333525590746,0.552250663271452,0.525641230163828,0.522055077430114,0.489678839023297,0.550489239283265,0.548638668377526,0.566268473110418,0.584255247716751,0.522039127670111,0.506627847158235,0.519321317039891,0.578791571063874,0.510191165612951,"lena","peak_voc_och_ph"
-0.693923028863091,0.647380288932446,0.74520424212002,0.726716585103133,0.745906184957369,0.642159171679734,0.706006780001375,0.699623325979615,0.666369795644454,0.686804217289173,0.587301633730351,0.750446729445452,0.708956892013684,0.664542954160193,0.654711483606738,0.630378484387337,0.714881219608721,0.704547057507377,0.715080017577124,0.633218264146044,"lena","voc_och_ph"
-0.286484562164517,0.332074549164244,0.389989344642855,0.365276501608557,0.409887886333878,0.298290365236591,0.353706242169203,0.404723544833092,0.5155604556104,0.501068005820689,0.325310197418498,0.472635885764813,0.425138046567129,0.366001251141388,0.384037229722257,0.414133661984493,0.388517296927434,0.372985817271637,0.337488128410496,0.395800058117127,"lena","peak_voc_mal_ph"
-0.335229515634742,0.487034309928276,0.38757652290954,0.424489940988794,0.417957387666436,0.436160598384061,0.404142274859563,0.487991415187703,0.52571301497637,0.592933022039014,0.496478303919758,0.539576882267025,0.350186804051403,0.519252297390048,0.442797901768391,0.466293418302344,0.343304052337942,0.326915201596124,0.38712436195036,0.533075131858983,"lena","voc_mal_ph"
-0.342992005830307,0.291684165433152,0.273424725276735,0.26770372239029,0.357344802199788,0.305670113844583,0.337084544463392,0.416165673082298,0.37586799053497,0.319303957240314,0.348238599072395,0.3214757017161,0.408797540026915,0.352482443973355,0.231927735737371,0.255166839355655,0.401433771954828,0.228845848404545,0.315723437627807,0.311058487615618,"lena","peak_voc_fem_ph"
-0.605702513602109,0.594960093725274,0.599230236546151,0.595049762046316,0.629742492369314,0.595853104408573,0.610603751606132,0.662293288971053,0.556855282975889,0.588735662785858,0.647560057000835,0.565504952204795,0.615952043915052,0.576532536018628,0.574290308509147,0.596380510375799,0.632187474854145,0.500564341416473,0.652903522616657,0.609605032571637,"lena","peak_lena_CTC"
-0.514674874112739,0.463872063365489,0.382343729503505,0.505179002037924,0.647481248001895,0.514252742479428,0.351661746285737,0.403323626273577,0.502829551834331,0.502668849325504,0.462302102757342,0.306867628625978,0.415661956926733,0.541541974013581,0.449488633955382,0.299640143665633,0.502540276769894,0.604939869917928,0.450664771123084,0.437438198817996,"lena","standardScore"
-0.724467792452633,0.635598483391995,0.693338144883635,0.737890602864552,0.667514767141115,0.687357786792968,0.687703695902893,0.742686061759789,0.704225016614418,0.681940831486715,0.668915328546687,0.749318583234338,0.701987009492323,0.668156090147111,0.684059709119377,0.661727902964816,0.724959702737149,0.613448433738284,0.733768200879471,0.699212927412113,"lena","lena_CTC_ph"
-0.723493205249348,0.697532746867757,0.668015827634027,0.750685429486053,0.709808193328942,0.64039580687794,0.711237726043676,0.732061943169949,0.691319540642723,0.702636737831559,0.704118625740177,0.738517275519931,0.665268328690606,0.727288662801766,0.701404390200901,0.697273711305511,0.718534463224642,0.647296647590542,0.695492737599131,0.722593704574213,"lena","lena_CVC_ph"
+0.615815689069075,0.606409469424197,0.578540676833541,0.516415300891802,0.539142029694059,0.561499804765368,0.542438198377964,0.592097722732655,0.61232120603876,0.662666019677275,0.604468337095167,0.505893986115417,0.584915326513976,0.565105111906532,0.576786285285593,0.551876619207843,0.581205233083754,0.542407760811931,0.639330280735335,0.614928026946251,"aclew","wc_adu_ph"
+0.53319968350029,0.583225419753439,0.564104791416154,0.592613290096956,0.588817871671895,0.509125660614859,0.528985493269161,0.607927809306249,0.578120805494075,0.599373475865095,0.583326691332963,0.531749827316477,0.578408121905518,0.618315095459728,0.56433214461117,0.595438451772828,0.592687420171999,0.554392417590621,0.612403794348956,0.561505062118816,"aclew","sc_fem_ph"
+0.438937794359039,0.576277524417694,0.459788223771807,0.471218871212682,0.562312861701896,0.483087273566099,0.542378424950884,0.571901801042422,0.545247382176533,0.531704991446934,0.547355850594593,0.484253322179831,0.574844879930464,0.497952854411953,0.56321032108611,0.484475380306099,0.519632837516213,0.551996872647071,0.57696659169828,0.552882701417634,"aclew","sc_mal_ph"
+0.550707126792548,0.595126843343438,0.565618820983779,0.594270377613166,0.588518519645128,0.509032891457853,0.529081270596225,0.608965997588909,0.592864405898851,0.60192519453327,0.595483205728863,0.552360165924382,0.59486112351772,0.634485580230085,0.56934219825197,0.61298122448277,0.593465637471665,0.571238058276746,0.624861762956313,0.563727769711201,"aclew","pc_fem_ph"
+0.436838466425631,0.574999800711888,0.473218157332655,0.469644912078842,0.560915987222238,0.482860111501457,0.540072747446003,0.573034701935362,0.554667966271761,0.53278510725282,0.54401195030919,0.480881834289896,0.558608824493553,0.498562528832092,0.562967007115616,0.502308253573553,0.483977675418045,0.549948390215593,0.593877098443965,0.533344444033671,"aclew","pc_mal_ph"
+0.6200257055013,0.613658166760884,0.581651298505105,0.524428746470081,0.546946170901564,0.570402569302796,0.550888485594783,0.598559633059478,0.616715450074431,0.664859774925355,0.610583115549108,0.510303090257703,0.592308759191525,0.567772187669747,0.581969244314822,0.558931623981621,0.58763543636007,0.549625595796151,0.64358601181421,0.619651742582985,"aclew","sc_adu_ph"
+0.620641256982863,0.610355478817767,0.581973951781104,0.523628300600762,0.545219506786,0.566443784983056,0.548030723913416,0.597973722963846,0.618648039633001,0.667797596542053,0.607784319666586,0.508699210036036,0.590333772502053,0.570758411538203,0.583210521890039,0.556065484157273,0.587175688643918,0.54781260824271,0.643790100742579,0.618071868331047,"aclew","pc_adu_ph"
+0.54610957381643,0.588318488744909,0.559718875529738,0.585910512238622,0.581487568442794,0.502975578934042,0.523033614558616,0.603746429387582,0.587492693873348,0.596272773525202,0.590171978095515,0.546858782355081,0.588589340772482,0.628753038491228,0.562490960704166,0.606143821848873,0.585990580550179,0.564400445759029,0.619953556989864,0.557609049275869,"aclew","wc_fem_ph"
+0.437482407389292,0.574737976965214,0.451882769643242,0.444306124832663,0.561243021889205,0.456994013830284,0.538968572343975,0.558699331815817,0.553476079827115,0.528624675316299,0.5449529092843,0.480898683851319,0.584067244647043,0.498120444438223,0.560670642108987,0.501822218682181,0.515251058001519,0.550493346273208,0.59180142606269,0.565429469115168,"aclew","wc_mal_ph"
+0.77854650964418,0.763409407665935,0.720599985602379,0.786881859334014,0.771420694719971,0.716877195934723,0.712557879637865,0.752640343936043,0.788836118273307,0.78528126548806,0.716622917348282,0.756883069061548,0.770488105708891,0.707467529604782,0.731780843874662,0.733854245158931,0.740486904326528,0.76466809792016,0.733435780595416,0.764169218233454,"aclew","can_voc_dur_chi_ph"
+0.604834202101125,0.662576968300915,0.632391358666901,0.648071040421995,0.644967111554672,0.628027672159868,0.69397160619994,0.662684800208649,0.621830774101098,0.703651128466878,0.632531909009424,0.649597327882631,0.699600285727627,0.686254193262659,0.648105759436798,0.655882647330313,0.625452939884306,0.651889252961667,0.634211790249317,0.643000346332418,"aclew","non_can_voc_chi_ph"
+0.590492100714589,0.625082752408806,0.62510352928577,0.572000403177047,0.58683622433569,0.628929630424632,0.555807549899263,0.530562269145706,0.538063581818888,0.51000441630141,0.571823748924381,0.619984567033643,0.594565500332135,0.639715002759239,0.565248884623654,0.561010752413669,0.621225698102492,0.562720224604492,0.546380114912478,0.594508905522214,"aclew","avg_cry_voc_dur_chi"
+0.476450697638268,0.502357470234511,0.490049327828229,0.525164866939969,0.456736923452721,0.563217404589771,0.495377322993186,0.591272590435466,0.505097446092586,0.491891695052734,0.559104499583706,0.485081599911958,0.541295730884747,0.528096963043328,0.483311395904943,0.578598809045197,0.541827491743294,0.499953119460561,0.525288573773959,0.463742059218161,"aclew","cry_voc_dur_chi_ph"
+0.443515954751327,0.464804787610054,0.417470170377218,0.474420172652265,0.496340311382115,0.47432062512926,0.454356471474944,0.567608326943775,0.483534683227961,0.472965891223518,0.530236797568989,0.449814573691742,0.491366710710995,0.518143263114263,0.464863356196316,0.58272419139707,0.511544908149584,0.483043388912697,0.528912022542211,0.44893515160458,"aclew","cry_voc_chi_ph"
+0.558251736313969,0.632244188187884,0.636633850752739,0.615162587194161,0.627130157564421,0.608789471967012,0.668799421474616,0.638678106949247,0.632700248386647,0.673976741951434,0.638923196584952,0.673721651764781,0.687301349809269,0.64301189685435,0.627359714520381,0.643779754983952,0.60779292550745,0.631961915888283,0.622913655492698,0.654105788710946,"aclew","non_can_voc_dur_chi_ph"
+0.544149887517968,0.529054332736416,0.514369474928053,0.545557865035149,0.507703887738789,0.536732039068141,0.599010708180503,0.551199898654509,0.604617471742491,0.561209684226411,0.53574700546614,0.568660102811125,0.543772696657393,0.618718140362685,0.501388716820969,0.531818270235632,0.543846176419809,0.595799873288683,0.557089349853428,0.488705428470409,"aclew","avg_non_can_voc_dur_chi"
+0.472612894601686,0.458458198879853,0.486968102582684,0.476018548067983,0.421827915143857,0.407630172057141,0.514443563807811,0.507634529209327,0.499101864595676,0.455821043659991,0.526768469033323,0.356423272917203,0.403220106658041,0.492617554519893,0.414652818693016,0.481511088242794,0.440564765557438,0.508170379441565,0.453631343532592,0.460961266103159,"aclew","lp_n"
+0.458794728108586,0.506615630828011,0.572281918554233,0.491981456481949,0.430409948110969,0.551652119918392,0.497158424045957,0.532631630701936,0.478939071333553,0.474861524519579,0.525037523653808,0.420910967521722,0.442476942970722,0.537065495022591,0.479104766129725,0.510956893896456,0.518980142349067,0.528150319218123,0.478127378081789,0.470472917525249,"aclew","lp_dur"
+0.736917002952218,0.754416937067745,0.727690031574923,0.73336417317861,0.758020309224619,0.666227798011346,0.677219746882008,0.729290923882027,0.760359332660084,0.768439525602121,0.712405166089286,0.690056560701385,0.732578957307187,0.66106198810472,0.745239849749133,0.755757173164777,0.776275172185428,0.724316028260673,0.696279247586818,0.75991147224043,"aclew","cp_n"
+0.679113255201986,0.701556518156233,0.662636170363596,0.671329621801126,0.718187253840428,0.648389580957041,0.641480801077122,0.696875975968563,0.678957610404837,0.72231713130661,0.643351925930245,0.678335687540448,0.701253324805826,0.618940427707825,0.685557425654952,0.695028679473075,0.71806224087432,0.689580266952692,0.641831757661293,0.691306659036514,"aclew","cp_dur"
+0.585048919610406,0.649251458303102,0.588161939114306,0.54020956482111,0.498716681993128,0.576499699574634,0.618269551692691,0.595862070805921,0.558420070134264,0.546430812540857,0.485677130662985,0.617638670601889,0.630218983959893,0.65963756123733,0.496053921631302,0.574521525943761,0.689671202873187,0.651940827871099,0.643269004745264,0.597294264445743,"aclew","avg_can_voc_dur_chi"
+0.794292269219068,0.824552978531735,0.777609292184498,0.788965045740145,0.805208156046342,0.795064206936758,0.794210630334471,0.765016325935702,0.810240643678892,0.81980325617697,0.762797453404788,0.807638368152849,0.804927482444718,0.791390585715449,0.790092609894181,0.77953088457882,0.773809818981532,0.797803919086559,0.775430820611637,0.805398207601871,"aclew","can_voc_chi_ph"
+0.606938261400338,0.617358874207627,0.631119797962399,0.637987143124378,0.596423705143873,0.577344642978724,0.640574216495295,0.571118514586591,0.629909303094249,0.666632614289372,0.633341596191111,0.620041075932417,0.64363429019422,0.651647197465575,0.584473990687572,0.608492013327747,0.635434385439247,0.59394389372392,0.640323730904744,0.603059201918023,"aclew","peak_voc_chi"
+0.724545767914625,0.670907718976535,0.67052914051666,0.698843356169125,0.665554822838925,0.590312025632185,0.65752068009343,0.659212565030755,0.723968014837585,0.712851561558279,0.676572431113678,0.622188252931812,0.708560034758486,0.694951175667854,0.677639899998463,0.721068048201546,0.672456746883205,0.645145265534484,0.716778368509483,0.669483454802976,"aclew","voc_fem_ph"
+0.438628200935474,0.38653500370748,0.414175775797981,0.397940255601445,0.436975758253949,0.344092936854658,0.376281682669187,0.382680195123601,0.407166387640483,0.375890003957689,0.365441996784853,0.35092471335448,0.44733500747895,0.461299232556757,0.386668832644849,0.343557252537394,0.370179875623427,0.280515833781797,0.492020530957703,0.360472905936734,"aclew","peak_voc_fem_ph"
+0.587546366555497,0.686876314912932,0.667690158877355,0.639131085947725,0.665811249391573,0.588271977591831,0.649449160886195,0.648580862172568,0.67149937670012,0.667748036775643,0.665824881726793,0.621751698177069,0.696210748983024,0.628611193827963,0.652998864655596,0.656389911159009,0.647422100929442,0.633617439558002,0.66371475198558,0.578718001557214,"aclew","peak_simple_CTC"
+0.324200837083317,0.406542596413035,0.331447308528346,0.408894573936163,0.374549719197737,0.400011431194763,0.483705366333564,0.357818853439104,0.362184049870497,0.350958663430843,0.503658098355846,0.341173090167176,0.339216775161772,0.19234336088135,0.374345882866387,0.325591523025629,0.336149534751562,0.335905326197558,0.334738350988247,0.380524708552438,"aclew","peak_voc_mal_ph"
+0.739776396779933,0.763333582911834,0.753045146826294,0.777014540688672,0.772969074563826,0.71883123288446,0.767424472808037,0.767573408563043,0.801756600547751,0.793858553662209,0.761936446138508,0.77947043215885,0.810909408789575,0.801034932441926,0.796718461154383,0.786704772492403,0.745912025155425,0.772118697164922,0.780282956298027,0.76684300506785,"aclew","voc_och_ph"
+0.685618553825777,0.684785428915456,0.731546002676186,0.720159746316667,0.69108522758102,0.606512329987557,0.704831166027312,0.599761307338886,0.689451336488169,0.70048948199234,0.648210085601082,0.691096047867511,0.691441388638887,0.661479710590324,0.688522140521072,0.628893778894206,0.645426206594459,0.685559423824618,0.67097153697651,0.617758274636803,"aclew","peak_voc_och_ph"
+0.660750592204174,0.703450157126099,0.672246309806953,0.674419414346011,0.701214847308661,0.693028985691372,0.717692351158876,0.687881720584094,0.685401782949654,0.708534693409122,0.653520275609233,0.658544153739118,0.724804437868481,0.718390805634102,0.657582364689862,0.706327672034947,0.688808580586786,0.66268410075058,0.703358469494993,0.684492708306865,"aclew","voc_chi_ph"
+0.606938261400338,0.617358874207627,0.631119797962399,0.637987143124378,0.596423705143873,0.577344642978724,0.640574216495295,0.571118514586591,0.629909303094249,0.666632614289372,0.633341596191111,0.620041075932417,0.64363429019422,0.651647197465575,0.584473990687572,0.608492013327747,0.635434385439247,0.59394389372392,0.640323730904744,0.603059201918023,"aclew","peak_voc_chi_ph"
+0.507234880920016,0.578955760145394,0.533853955984509,0.49432111469803,0.547614500414591,0.519960833153724,0.598118698305963,0.572764194171511,0.59679630734036,0.635273422285081,0.552728482219725,0.519198097683891,0.570602194868612,0.532177873680358,0.617038881188183,0.496265291479549,0.540706758289484,0.52714721891134,0.645548633762969,0.538046230340542,"aclew","voc_mal_ph"
+0.520386820470956,0.581086526249078,0.482316112984772,0.442497134889465,0.538068853431501,0.46422240181308,0.573197913371969,0.548852426939068,0.543550135022598,0.532649618724029,0.577877086140094,0.57822647668594,0.581691982070321,0.486970335721816,0.566185170313659,0.522469182597053,0.556646286157297,0.553376362338093,0.564279142751682,0.536370114605948,"aclew","voc_dur_mal_ph"
+0.720766184210222,0.746301638223607,0.73544799209941,0.750281823489134,0.764176090525052,0.710712818578721,0.741694121416628,0.715749078598654,0.78857989925922,0.781880811837765,0.749559804155414,0.735956857129832,0.792389462564558,0.759244227831363,0.780024811602268,0.730485600819149,0.697656142871606,0.729786827780969,0.751053780390325,0.745582920940245,"aclew","voc_dur_och_ph"
+0.675357366969963,0.70087228258572,0.669157207564165,0.688197822341953,0.672386278078885,0.669226738682402,0.684188981096197,0.706586955045956,0.687259376048997,0.712107535990673,0.6862688579078,0.679556613822269,0.741261804680415,0.700388374633305,0.665253262932639,0.695750425447844,0.691681453267338,0.689513794708553,0.721076316593135,0.679893066734197,"aclew","voc_dur_chi_ph"
+0.443423187313492,0.487486780112681,0.479977999833176,0.343135342090923,0.509022355320758,0.40918934178876,0.493106761618884,0.512778324547911,0.536832223460634,0.480653947981851,0.557821741368711,0.516285984112234,0.490473011352396,0.501691365778531,0.543238832604859,0.445549787165503,0.525228091103395,0.436272063678843,0.563886397357271,0.481409007233665,"aclew","avg_voc_dur_fem"
+0.436188726178574,0.420328614595329,0.448757389773375,0.464175675405549,0.507484548594227,0.356010880794165,0.542201563295097,0.469871378254756,0.491761080531536,0.516554567635933,0.530111145495387,0.569562283174459,0.489521192556792,0.42274951717924,0.52433467730593,0.433305568930132,0.473467017876204,0.544290182356609,0.476891539704139,0.497139351424566,"aclew","avg_voc_dur_mal"
+0.661361344568601,0.670078699591278,0.700635618195121,0.63769382916341,0.681839919912013,0.632399409963343,0.659194475732281,0.657454695490005,0.719199651048986,0.66000282414421,0.675228861957773,0.673559754005833,0.659594427224716,0.65606850302542,0.66338566428513,0.618555822216024,0.647368343202136,0.66731553388381,0.630055029921347,0.692030195099948,"aclew","avg_voc_dur_och"
+0.610248828338702,0.592054770969317,0.648430065934669,0.634297179019347,0.535408512057546,0.608022749673818,0.594466894366176,0.670618480798607,0.576813021206176,0.590444834109318,0.603977245679001,0.628699917689738,0.625725749182673,0.649584989931124,0.572494616391684,0.636709016349252,0.614630479099209,0.649145059092279,0.642912079666913,0.581240285607507,"aclew","avg_voc_dur_chi"
+0.614318555314706,0.548390590462465,0.570660399117673,0.5474977088785,0.584830431361912,0.497060711185918,0.53416107279905,0.568523121873491,0.623215828922347,0.624043610233155,0.608342569934151,0.549919225004313,0.616364870052025,0.61741487501895,0.549788195974352,0.595376279846546,0.57970473068396,0.540639436911971,0.644406771857706,0.576049844054486,"aclew","voc_dur_fem_ph"
+0.753061602058553,0.765954291391314,0.726442420486914,0.766865573574518,0.756277677430449,0.708089709675563,0.753970603857321,0.755348062018416,0.75392260457118,0.778961833133933,0.776706438649595,0.726311603182644,0.799200640940026,0.759761221943545,0.748630792746946,0.761971027990507,0.747645199224339,0.743088897114286,0.784476809247719,0.740111023957571,"aclew","simple_CTC_ph"
+0.583631500756842,0.577613589670159,0.544767211360813,0.560514139222953,0.612844585505041,0.504461180564295,0.547565162394995,0.542238189026312,0.607795220361719,0.620370554503414,0.576934327150475,0.488144870689932,0.564552320524271,0.560313833762906,0.574175789939098,0.56763969849015,0.575340290263014,0.514472436620197,0.565655252682211,0.548854815572931,"lena","voc_fem_ph"
+0.616204813882026,0.632991647337283,0.627774032918925,0.633984542739263,0.582243914011833,0.611045204776973,0.622583547316644,0.611164497461477,0.65864283132427,0.65870522868679,0.615962379414394,0.645467993914296,0.657643085898282,0.605340191337514,0.605689675656351,0.614471145001277,0.661741351150196,0.62473157279223,0.617128223269669,0.574646318149639,"lena","peak_lena_CVC"
+0.799119821663184,0.779753086622156,0.800569014343329,0.739069311585144,0.780543138222654,0.771847897025035,0.780675422665273,0.775412155597494,0.770132144460993,0.78824630004337,0.818177299925623,0.761024590026943,0.802664615792919,0.798886970417382,0.809413561336756,0.782506261112463,0.808422606946345,0.78332904139875,0.789990388019647,0.806562119255629,"lena","lp_dur"
+0.81440895140836,0.803844825140156,0.807578117808566,0.754505892358521,0.791078712261925,0.767591082888747,0.773578573878231,0.80315859945082,0.78429050878226,0.802191896565866,0.811533687755146,0.758203143543402,0.8094358945106,0.794375690339062,0.833162803620087,0.773837651254842,0.830400364963644,0.793549063207659,0.810633338220024,0.807095695699596,"lena","lp_n"
+0.357309342943166,0.420561754135542,0.343163997534849,0.420314548252631,0.41708367733936,0.41556583818698,0.358322975583857,0.303375209285103,0.351698798567348,0.267886192423199,0.422798042380836,0.297665654162045,0.362587694191114,0.24939227402862,0.334365523283015,0.257222072156993,0.470115703875639,0.260049327154014,0.314137962020678,0.309543045845693,"lena","peak_wc_adu_ph"
+0.453475574462192,0.532703214702535,0.509589169609625,0.493563840876734,0.533041035791692,0.570024893852945,0.507293907263163,0.546852987040688,0.612557069072928,0.610632552795001,0.588607289863723,0.46009170685194,0.581541382607818,0.499920908679995,0.587350328899537,0.521066263687173,0.607694172963522,0.503196187783409,0.506412765666438,0.508931633698123,"lena","wc_adu_ph"
+0.494210341913981,0.483611644518158,0.392637277046316,0.50381519235309,0.436412209084082,0.508806160170091,0.566411950042613,0.464425696849482,0.46601140174233,0.521473790788491,0.50423665099545,0.454708806559904,0.417329005806925,0.388098815811681,0.52706645651526,0.46640135023277,0.489917120621463,0.532210038644812,0.471778250979506,0.488334149804423,"lena","wc_mal_ph"
+0.583340661348674,0.550891213926708,0.534459180786683,0.498788566630849,0.597420067090249,0.50347979688053,0.499552001358566,0.517238929288262,0.610660268167182,0.578944551138227,0.56988818061888,0.484562417912351,0.596852950904165,0.579841479911876,0.540769193645925,0.548345502512268,0.576019595085657,0.534788120639204,0.535663330935586,0.52498179063667,"lena","wc_fem_ph"
+0.579584554813192,0.621711653031348,0.553526769852578,0.498971468265901,0.60242441137218,0.613466129766838,0.570197950069264,0.621783862308018,0.450360947831233,0.496403107802453,0.615992046601787,0.5935095376017,0.552291438124657,0.540223788571626,0.521728939167493,0.583847097945841,0.578299997631572,0.543153794651972,0.567129011295937,0.575486402480652,"lena","avg_voc_dur_chi"
+0.456952996031978,0.521071191018618,0.471042416677156,0.530369984735482,0.555150274162978,0.411088755228338,0.541652956026456,0.541570500996206,0.508969780892167,0.471038034707635,0.511750603986558,0.531444179254807,0.443683961044258,0.502356209432272,0.576797818398991,0.491341423289295,0.474806634743575,0.543843589487886,0.542892031732891,0.496181703342574,"lena","avg_voc_dur_och"
+0.404692659593519,0.461172298248425,0.434167111874863,0.351123079513858,0.465847374305398,0.431943751557557,0.460229373645422,0.359414201025642,0.38886849694347,0.446305847718658,0.461012029315214,0.425986757116788,0.387434124697247,0.400710472569544,0.330456836744878,0.441714681747348,0.422923892367404,0.450464645015973,0.473598600061926,0.482947721004486,"lena","avg_voc_dur_mal"
+0.370233041571761,0.548034720226158,0.409927276755246,0.418240722908509,0.383447463338916,0.36260527053863,0.416023127955136,0.463542951945736,0.498531602176827,0.405594375365522,0.528597327456608,0.39904129588251,0.443471190541465,0.493341112130755,0.469959342228329,0.374011197510853,0.438398650478047,0.360976603401124,0.463910123988547,0.414286364374576,"lena","avg_voc_dur_fem"
+0.551982635012588,0.552073788263963,0.626005709496631,0.608621965003393,0.571729259437276,0.561431627524816,0.551838095341356,0.645778090337758,0.564214431979856,0.586819671785692,0.528447735495737,0.610134929530189,0.65604885985042,0.586099236583833,0.611929983415197,0.650425267386637,0.634347720037354,0.590334782848282,0.531086924481057,0.536086574633892,"lena","voc_dur_chi_ph"
+0.664591085043537,0.669612027798081,0.694596845584391,0.660387459083542,0.724564175533639,0.589401261826103,0.640832145429864,0.663654855127909,0.707870565835572,0.73234005741647,0.674297556415631,0.728541697447368,0.717640079100518,0.712734347766753,0.661907094738501,0.683207300330037,0.66926970226875,0.7261691771679,0.632589923862718,0.68270080153225,"lena","voc_dur_och_ph"
+0.495609283982835,0.580821411976764,0.481806375455968,0.4762475334748,0.431290636873855,0.46693700288769,0.54281887837105,0.522874611241472,0.427502241176808,0.535267428685714,0.553195913355899,0.43783002805238,0.489502881573418,0.373162033764935,0.502564349381344,0.495040201944601,0.42298081812338,0.506463946974529,0.469381855832518,0.552420651018529,"lena","voc_dur_mal_ph"
+0.573579936877069,0.57734812337856,0.516757166377321,0.496425025547372,0.588969584557945,0.459323403263332,0.490939693415983,0.502125852001848,0.595247565711132,0.578453786341829,0.567834147780334,0.491734659893895,0.563464849880596,0.580178335443614,0.538055302648933,0.551612941832612,0.557265071350061,0.532910291065977,0.550832300005676,0.478864577745829,"lena","voc_dur_fem_ph"
+0.457371281865416,0.546923521912663,0.540320654236509,0.510479137880754,0.514934738954555,0.399221460929624,0.511119884767111,0.539385171705243,0.514390683521429,0.582153999576609,0.508607607776248,0.504277660744133,0.550495026138167,0.548945761686864,0.461869209238439,0.519017109282865,0.555669654680525,0.478198845917327,0.490929258023779,0.508289348356676,"lena","peak_voc_chi_ph"
+0.585857041598584,0.602073444031118,0.577594264283987,0.618171146723224,0.612994158161753,0.580698089444813,0.571499565957697,0.648357842591023,0.638906791791924,0.616029355688834,0.59871414783077,0.566368192052847,0.607908754890539,0.55997553272959,0.550848660266382,0.62533750872552,0.605404016643053,0.564528968246758,0.592454992605243,0.568077698979816,"lena","voc_chi_ph"
+0.542956159232828,0.577626795297271,0.565144375108028,0.501938987146191,0.614543237447969,0.472931343721613,0.511232757526028,0.485843213155071,0.58161714842437,0.586996424652223,0.526167349816917,0.57739006852357,0.562750238122523,0.539803046063522,0.482197670303942,0.484870327630368,0.552044182040649,0.523600959163432,0.54496342000753,0.530368642654035,"lena","peak_voc_och_ph"
+0.638374284552527,0.647607856414811,0.695093213506255,0.641583031193965,0.709927570279708,0.565614538564478,0.64335550747034,0.675517245427129,0.713081490785482,0.728400821065943,0.664110551847942,0.74197125160797,0.733183550594698,0.705403380130507,0.68125765485633,0.663556857156186,0.670871233645936,0.722194964464071,0.618205063112901,0.68838678670838,"lena","voc_och_ph"
+0.294179947571029,0.443626486590352,0.327849395510966,0.467310201922721,0.374082066022039,0.370367938058093,0.4657758066167,0.344618054649372,0.293208270559385,0.419084445283096,0.40669086339427,0.28493166300815,0.306878298239203,0.306435273567585,0.508978401593411,0.463931984629475,0.349556130212335,0.361174026956033,0.321006065143805,0.462206599808294,"lena","peak_voc_mal_ph"
+0.470024827548082,0.479649666986316,0.416860855372498,0.463698776650408,0.392743658680232,0.41653664141119,0.540589765792176,0.486091236029257,0.438134670139277,0.504559363992981,0.554132863214655,0.414265752747911,0.446054590813044,0.366568435159839,0.507904460797221,0.515023802126292,0.435540022498248,0.525176874581859,0.446884464389223,0.485017893705699,"lena","voc_mal_ph"
+0.40683833124851,0.365094193381549,0.279851182623579,0.306273241741376,0.400416033710821,0.339265356999145,0.281706701332373,0.352701683909411,0.336865696450724,0.353590390287283,0.380862084974225,0.296008795549807,0.396508741672925,0.318906430241057,0.339714740901923,0.225381037856005,0.385457437519074,0.296671727456486,0.332876472142945,0.355477537959584,"lena","peak_voc_fem_ph"
+0.599586808133589,0.641003732189628,0.640899340763663,0.609253795267149,0.567886599435274,0.615990967771364,0.559847479641243,0.577297983418035,0.609311060080757,0.629210220680083,0.628662162379549,0.576444024779291,0.592674209428316,0.534575570911623,0.547956567574335,0.578890981715673,0.594204551568306,0.548369118300434,0.57049342825057,0.562041361325012,"lena","peak_lena_CTC"
+0.441774728631989,0.47636359549486,0.556396938801133,0.467213726937071,0.498554292508334,0.444643600741037,0.515995030382424,0.454887419503311,0.468126763755599,0.484853695612407,0.505879784564715,0.36836775030929,0.517669578645016,0.529752754353748,0.349839087003461,0.509575528169132,0.58628773330746,0.56355873803641,0.421227785558157,0.469712198619349,"lena","standardScore"
+0.657678315896377,0.730089069496264,0.699272975523549,0.703794934979781,0.693899010206095,0.668400755301564,0.647368260601289,0.699579954590125,0.748230614456359,0.728306907735168,0.680842935561893,0.606629388642091,0.664031511362276,0.633258713543296,0.642892899065276,0.670141908300641,0.696641019802159,0.673122814322768,0.682268458958732,0.67588615858135,"lena","lena_CTC_ph"
+0.649157058916615,0.722224511572857,0.674416268527537,0.700805753435401,0.682746463734818,0.696114507572339,0.680662980122167,0.710631809633913,0.734662044262821,0.737695996521559,0.683153826079014,0.686731201202064,0.732250256424466,0.674672027766695,0.66149809708895,0.688257826696669,0.714952296932766,0.681894928505159,0.684832735112637,0.683492485134741,"lena","lena_CVC_ph"

File diff suppressed because it is too large
+ 353 - 353
data_output/dat_sib_ana.csv


File diff suppressed because it is too large
+ 679 - 679
data_output/dist_contig_lena.csv


+ 15 - 15
data_output/lena_base_data_set.csv

@@ -110,7 +110,7 @@
 "bergelson 11 123525-2016","bergelson","bergelson 11",42692800,218.060188134767,205,0.407370373405167,0.593295103661226,5206.62,2628.51909455459,1497.53635273395,1130.98274182064,1450.81066945607,973.786764705882,1709.40605590062,1358.67749419954,233908.762133193,22334.726230184,371311.977663681,296273.469999625,340,161.226248922535,51,22.9359517295656,407,217.216954615298,433,88,"1000-05-01","0999-07-01",9,0,"123525-2016.its",102.138,44.4384064760334,116.619195742608
 "bergelson 41 123526-2024","bergelson","bergelson 41",57599990,168.187529199224,261,0.394865532515644,0.508417508417508,2495.25,1029.07142865823,90.7318907520644,938.33953790617,1254.34769417476,1178.93553223388,1177.02127659574,1386.28019323671,258395.669860359,147440.650597335,24202.5042018236,233155.040478306,479,206.000035763895,282,125.062521712243,64,20.5625035698791,388,75,"1000-11-01","0999-07-01",16,0,"123526-2024.its",87.677,35.4375061523448,116.062520149743
 "bergelson 36 123527-2048","bergelson","bergelson 36",43525110,111.328839835212,215,0.567364583783205,0.66015037593985,3356.62,930.743839590526,254.468282791244,676.275556799282,1044.57498646454,1248.58302333446,1613.37301587302,1532.75631500743,159576.575452652,305373.51887221,67255.5221572099,170639.982299872,290,152.766988986358,474,244.576061955961,216,41.6862817807927,327,67,"1000-06-01","0999-07-01",11,0,"123527-2048.its",89.337,23.8207324461673,112.238659477253
-"bergelson 36 123528-2074","bergelson","bergelson 36",43724300,138.979926493963,317,0.437488566487959,0.555741827326069,2898.46,1574.95955338336,833.35509087624,741.604462507118,1141.1519497983,1196.04550804237,1400.06578947368,1396.77132701422,209615.156789245,251013.555391396,192736.670455559,194123.176357312,408,183.687331758313,505,209.869569095446,339,137.662581219139,357,91,"1000-11-01","0999-07-01",16,0,"123528-2074.its",76.296,37.9560107308751,113.04469139586
+"bergelson 36 123528-2074","bergelson","bergelson 36",43724300,138.979926493963,317,0.437488566487959,0.555741827326069,2898.46,1574.95955338336,833.35509087624,741.604462507118,1141.1519497983,1196.04550804237,1400.06578947368,1396.77132701422,209615.156789245,251013.555391396,192736.670455559,194123.176357312,408,183.687331758313,505,209.869569095446,339,137.662581219139,357,91,"1000-11-01","0999-07-01",16,0,"123528-2074.its",76.296,37.956010730875,113.04469139586
 "bergelson 13 123529-2075","bergelson","bergelson 13",47354300,50.5550710283966,95,0.290738309675015,0.411526794742164,1510.11,665.909875132776,412.232130978602,253.677744154174,1173.98671096346,1475.83820662768,1371.02392344498,1317.98496240602,80592.3854855842,115114.276844975,108919.190020758,66630.8233887947,195,68.6484648701385,251,77.9992524438119,251,79.4436830446232,127,23,"1000-04-01","0999-07-01",9,0,"123529-2075.its",82.202,8.13442496246381,33.4499718082624
 "bergelson 39 123530-2088","bergelson","bergelson 39",37315610,141.142004646313,82,0.439666048237477,0.561643835616438,3052.8,1147.28190159561,245.185754701585,902.096146894021,937.701149425287,1208.56102003643,1369.35960591133,1433.8961038961,31481.5167164626,192032.235303135,53635.8912530172,202382.970558434,133,33.5730810778653,286,158.89328889438,111,39.1685945908428,351,22,"1000-10-01","0999-07-01",15,0,"123530-2088.its",NA,6.27083410937139,21.4173103427761
 "bergelson 42 123531-2090","bergelson","bergelson 42",57599990,197.312534255648,274,0.480290143602851,0.554857776135944,3744.31,1201.25958355201,121.031271012373,1080.22831253964,1153.67472347399,1123.63390441839,1278.53785900783,1462.41685144124,176007.530556863,77881.8885211612,30605.005313369,288553.175096037,491,152.56252648655,162,69.3125120334222,97,23.9375041558167,598,80,"1000-05-01","0999-07-01",9,0,"123531-2090.its",79.85,29.9375051974835,96.2500167100723
@@ -371,8 +371,8 @@
 "bergelson 22 123820-6935","bergelson","bergelson 22",48045740,87.8912469659121,231,0.489719167630682,0.603972436157276,2864.31,665.740604682122,187.789801967875,477.950802714247,1384.04696132597,987.668308702791,1595.86633663366,1378.49957374254,225246.60875241,45068.8031862971,48308.7158195503,121158.04647821,316,162.744917655551,89,45.6315169669569,203,30.2711541127267,236,37,"1000-06-01","0999-07-01",11,0,"123820-6935.its",85.869,16.1845774464084,113.292042124859
 "bergelson 7 123821-6937","bergelson","bergelson 7",44988930,127.391338269214,201,0.541506767835394,0.618787547788094,4087.73,1959.19156112404,1221.10279128666,738.08876983738,1094.91676575505,968.067796610169,1774.83606557377,1422.0540201005,147368.252590137,22852.0215973129,294553.260101985,181157.364711719,250,134.593109905037,54,23.605807028529,341,165.960826363285,241,86,"1000-12-01","0999-07-01",17,0,"123821-6937.its",89.88,37.0491140820642,93.4629918960064
 "bergelson 27 123822-6938","bergelson","bergelson 27",57599990,165.562528743495,326,0.487921567694874,0.609431345353675,2947.34,984.237670874596,68.5400118993076,915.697658975288,1261.81533646322,1114.23868312757,1271.94915254237,1480.16987542469,251968.793744582,67690.0117517381,18761.253257162,245060.667545255,580,199.687534667975,403,60.7500105468768,65,14.7500025607643,441,107,"1000-06-01","0999-07-01",11,0,"123822-6938.its",93.066,38.5625066948796,139.312524186202
-"bergelson 43 123823-6939","bergelson","bergelson 43",45837800,175.139295515928,206,0.431326104635861,0.51725768321513,3369.32,1284.04120616609,325.463002151063,958.578204015027,1284.00801603206,1027.01778385773,1376.92592592593,1414.466367713,201282.958606216,58962.2538603511,87593.9944761747,247728.643172229,304,156.761450156857,170,57.4111322969252,167,63.6156185506285,495,64,"1000-03-01","0999-07-01",7,3285580,"123823-6939.its",87.384,25.3677096195716,88.2764879640821
-"bergelson 11 123824-6954","bergelson","bergelson 11",48271550,115.670617579092,223,0.485544719337037,0.63013698630137,4037.02,1158.16492323118,586.227788417816,571.937134813363,1351.65545087483,1050.875,1597.5864978903,1296.58284977434,149794.568436274,43888.4601799611,141186.765289285,149976.538975856,284,110.823041729549,120,41.7637303960614,268,88.3750366416657,334,83,"1000-07-01","0999-07-01",11,0,"123824-6954.its",90.226,24.5361916076861,80.9172276423691
+"bergelson 43 123823-6939","bergelson","bergelson 43",45837800,175.139295515928,206,0.431326104635861,0.51725768321513,3369.32,1284.04120616609,325.463002151063,958.578204015027,1284.00801603206,1027.01778385773,1376.92592592593,1414.466367713,201282.958606216,58962.2538603511,87593.9944761747,247728.643172229,304,156.761450156857,170,57.4111322969252,167,63.6156185506285,495,64,"1000-03-01","0999-07-01",7,3285580,"123823-6939.its",87.384,25.3677096195716,88.276487964082
+"bergelson 11 123824-6954","bergelson","bergelson 11",48271550,115.670617579092,223,0.485544719337037,0.63013698630137,4037.02,1158.16492323118,586.227788417816,571.937134813363,1351.65545087483,1050.875,1597.5864978903,1296.58284977434,149794.568436274,43888.4601799611,141186.765289285,149976.538975856,284,110.823041729549,120,41.7637303960614,268,88.3750366416657,334,83,"1000-07-01","0999-07-01",11,0,"123824-6954.its",90.226,24.5361916076861,80.917227642369
 "bergelson 11 123825-6957","bergelson","bergelson 11",44905610,176.690618388215,330,0.732399017722898,0.758312020460358,4933.54,2067.2722183264,1204.96508120032,862.307137126074,1165.61151079137,1078.04705882353,1821.87779433681,1254.73230490018,194832.672354301,36730.6445675718,294011.906307475,221699.426864483,390,167.150607685766,94,34.0714667944606,388,161.378500369998,320,84,"1000-02-01","0999-07-01",7,0,"123825-6957.its",107.324,43.4511411825828,144.703523680003
 "bergelson 22 123826-6968","bergelson","bergelson 22",51739680,199.761575641751,230,0.387979522702564,0.515187849720224,5958.66,1730.41186184375,419.587674295628,1310.82418754813,1642.04166666667,984.150943396226,1596.98461538462,1670.42842215256,246783.822397046,43550.9458118025,108338.82235066,333687.41360596,388,150.290840608214,128,44.2523030679741,432,67.8396155523188,721,106,"1000-02-01","0999-07-01",7,0,"123826-6968.its",105.729,24.909315248954,91.5660862224119
 "bergelson 25 123827-6971","bergelson","bergelson 25",37959800,57.9455107771906,350,0.786532045297238,0.836189516129032,523.37,286.505935226213,71.5527479069963,214.953187319217,1257.75137111517,1149.23232323232,1198.63157894737,1101.0147299509,195741.073451388,53950.02081149,21598.2170612069,63798.8609002155,308,155.627795720736,113,46.9443990748107,50,18.0190622711395,125,60,"1000-12-01","0999-07-01",17,0,"123827-6971.its",96.353,23.6144552921775,160.654165722686
@@ -382,7 +382,7 @@
 "bergelson 46 123831-7041","bergelson","bergelson 46",40291490,110.792626433026,378,0.53206273918093,0.670284237726098,2014.41,809.657324660865,352.231203164738,457.426121496127,1280.75785582255,1030.39182282794,1491.26498002663,1217.33064516129,185726.861925434,54041.7840094769,100065.398425325,134871.259414829,396,145.013252178065,308,52.4477997711179,118,67.1010181058084,304,107,"1000-01-01","0999-07-01",6,0,"123831-7041.its",113.66,25.9111787625625,118.297933384941
 "bergelson 35 123832-7066","bergelson","bergelson 35",42428610,189.890736462967,411,0.768168945498371,0.759955131800336,3125.97,1722.03237390996,783.885590407039,938.146783502924,1105.36903984324,983.091603053435,1723.12460063898,1382.94459338695,143590.657341827,21854.4043747839,228809.852597104,262608.367325727,394,129.902912209474,61,22.230282820955,378,132.787758071735,396,126,"1000-02-01","0999-07-01",7,0,"123832-7066.its",114.381,37.8423898402517,118.957467614423
 "bergelson 38 123833-7072","bergelson","bergelson 38",47070990,161.143838274912,494,0.548483007136296,0.635804467465199,2624.84,1162.25547837426,177.585557473935,984.669920900325,1057.83423423423,1178.05329719964,1317.81609195402,1474.18604651163,224506.941536603,199476.492846231,43842.2901239171,237555.997866202,721,212.232629906446,586,169.327222563197,68,33.2688987420915,334,101,"1000-07-01","0999-07-01",11,0,"123833-7072.its",101.931,40.6874807604429,151.966211035714
-"bergelson 21 123834-7099","bergelson","bergelson 21",37558430,101.12243775898,417,0.536835674683305,0.625744047619048,2390.3,813.024399582198,380.607602607457,432.41679697474,1084.39085239085,977.150537634409,1584.67647058824,1207.79146919431,249974.666140198,34841.7119671935,103286.745478978,122134.817669429,613,230.520817829712,125,35.6564425083796,213,65.1784432948875,324,84,"1000-06-01","0999-07-01",11,9148650,"123834-7099.its",90.749,30.7680592612631,164.671419971495
+"bergelson 21 123834-7099","bergelson","bergelson 21",37558430,101.12243775898,417,0.536835674683305,0.625744047619048,2390.3,813.024399582198,380.607602607457,432.41679697474,1084.39085239085,977.150537634409,1584.67647058824,1207.79146919431,249974.666140198,34841.7119671935,103286.745478978,122134.817669429,613,230.520817829712,125,35.6564425083796,213,65.1784432948875,324,84,"1000-06-01","0999-07-01",11,9148650,"123834-7099.its",90.749,30.768059261263,164.671419971495
 "bergelson 16 123835-7115","bergelson","bergelson 16",57599990,162.312528179258,223,0.657135551972289,0.688400823610158,3495.64,990.336421933406,11.9562520757382,978.380169857668,982.093373493976,1154.81203007519,1324.87804878049,1542.17173661918,81513.7641516952,95993.7666655845,3395.00058940982,250313.793457256,307,83.0000144097247,276,83.1250144314261,14,2.56250044487855,530,91,"1000-10-01","0999-07-01",15,0,"123835-7115.its",107.975,25.6875044596362,64.8750112630228
 "bergelson 35 123836-7117","bergelson","bergelson 35",37675360,71.4737695937079,237,0.779600813734154,0.794117647058823,2411.71,1031.248009309,746.266419219352,284.98159008965,957.245145631068,1037.59259259259,1397.98959011061,1090.16042780749,75369.4722492366,26769.2199888734,205316.047411359,77917.8752372904,229,78.735810354566,101,25.7993553346272,319,146.865219071563,181,98,"1000-10-01","0999-07-01",15,2430460,"123836-7117.its",101.964,29.6214820508683,73.4803861197345
 "bergelson 17 123837-7137","bergelson","bergelson 17",57599990,134.562523361549,228,0.537569588613017,0.647482014388489,3448.5,1088.79081402618,362.080062861122,726.710751165061,1204.55179817499,1165.49878345499,1365.3164556962,1440.99860659545,140255.024349831,29938.7551977006,94377.5163849855,193904.40866396,339,116.437520214847,187,25.6875044596362,221,69.1250120008701,401,99,"1000-01-01","0999-07-01",6,0,"123837-7137.its",88.931,33.1875057617197,86.1250149522595
@@ -461,7 +461,7 @@
 "bergelson 29 123910-8742","bergelson","bergelson 29",50684930,208.890492696744,297,0.656053188753387,0.676843130886651,2120.97,1325.83314211936,165.363708700002,1160.46943341936,1204.88156920799,1131.8407960199,1334.68609865471,1403.67222033322,231234.88579347,48475.9473871228,42280.2596353591,293213.781690139,386,191.915032732609,105,42.8292985706008,78,31.6780549958341,359,84,"1000-01-01","0999-07-01",6,0,"123910-8742.its",89.923,43.0423796580167,149.298815249424
 "bergelson 2 123911-8757","bergelson","bergelson 2",57599990,139.437524207903,233,0.699405935860198,0.728860936408106,3963.64,1186.61458100948,402.221944830199,784.392636179277,906.822204344328,1218.08038392322,1605.32945736434,1487.2344240251,70448.7622306879,126908.772032773,103543.767976349,207376.286002827,272,77.6875134874155,335,104.187518088111,333,64.5000111979186,466,101,"1000-09-01","0999-06-01",15,0,"123911-8757.its",101.399,26.0625045247404,68.0625118164083
 "bergelson 23 123912-8770","bergelson","bergelson 23",57599990,148.500025781254,337,0.457551041991385,0.517924528301887,4010.58,1556.26277018451,725.954501033768,830.308269150741,1289.47314838381,1138.65785609398,1443.37310195228,1411.16582491582,316646.304973317,242320.66706956,166348.778879996,209558.161381625,505,245.562542632386,479,212.812536946621,292,115.250020008684,366,86,"1000-10-01","0999-07-01",15,0,"123912-8770.its",84.681,34.3125059570323,140.625024414067
-"bergelson 19 123913-8786","bergelson","bergelson 19",46277610,268.847073131045,249,0.668135308783769,0.736288848263254,5383.64,2438.89569923771,720.047297170273,1718.84840206744,967.763855421687,1021.65413533835,1441.51183970856,1566.44386574074,156213.685192472,63421.771349039,184690.004518384,421133.848528478,299,161.417151836493,109,62.0775359833838,398,128.122433289014,561,143,"1000-07-01","0999-07-01",11,0,"123913-8786.its",107.303,70.7901726126306,127.500102101211
+"bergelson 19 123913-8786","bergelson","bergelson 19",46277610,268.847073131045,249,0.668135308783769,0.736288848263254,5383.64,2438.89569923771,720.047297170273,1718.84840206744,967.763855421687,1021.65413533835,1441.51183970856,1566.44386574074,156213.685192472,63421.771349039,184690.004518384,421133.848528478,299,161.417151836493,109,62.0775359833838,398,128.122433289014,561,143,"1000-07-01","0999-07-01",11,0,"123913-8786.its",107.303,70.7901726126306,127.50010210121
 "bergelson 37 123914-8790","bergelson","bergelson 37",57599990,87.6250152126762,171,0.474640827518359,0.561754887935145,1437.81,536.920718215402,72.1143875198589,464.806330695544,1135.06962351728,1199.36052366566,1441.50214592275,1331.37660485021,137556.273881298,148870.650845599,20991.8786444234,116661.895253801,272,121.1875210395,385,124.125021549483,80,14.5625025282122,260,53,"1000-08-01","0999-07-01",13,0,"123914-8790.its",100.195,19.8125034396707,75.3750130859398
 "bergelson 8 123915-8797","bergelson","bergelson 8",57599990,172.875030013026,400,0.885773845777111,0.902044293015332,4504.88,2191.73663050983,1121.93206977987,1069.80456072996,911.736045411542,974.550264550265,1571.05282600665,1466.36659436009,120463.145913741,11511.8769985898,265802.546146275,253498.169010099,380,132.125022938372,51,11.8125020507816,393,169.187529372835,365,150,"1000-10-01","0999-07-01",15,0,"123915-8797.its",124.421,63.187510970054,134.125023285594
 "bergelson 29 123916-8885","bergelson","bergelson 29",43514930,162.647624619872,261,0.757276125939798,0.756869275603664,1814.87,996.343278042732,113.026862274626,883.316415768105,1083.13543599258,1017.17267552182,1285.26315789474,1371.73448626653,193194.933325183,44347.5377301538,32324.3539631111,223109.355800411,259,178.366367589239,97,43.598829183455,79,25.1499887509873,281,54,"1000-04-01","0999-07-01",9,0,"123916-8885.its",110.626,39.2968574234177,152.389076576706
@@ -475,7 +475,7 @@
 "bergelson 9 123924-9039","bergelson","bergelson 9",31083800,122.996544823992,420,0.613944617469299,0.689176245210728,1448.48,934.355645062702,280.309357285789,654.046287776913,1216.15969581749,1061.82926829268,1370.59734513274,1266.40301318267,259306.133741692,50420.4762609462,71749.1426402177,155763.194976161,421,213.217174219368,91,47.4845417870402,100,52.3488119213224,203,92,"1000-04-01","0999-07-01",9,0,"123924-9039.its",98.007,41.1146642302421,167.585687721578
 "bergelson 2 123925-9061","bergelson","bergelson 2",57599990,178.750031032992,227,0.539779593276492,0.626373626373626,4293.48,1320.83835431221,319.225055421017,1001.6132988912,1308.24611032532,1137.26271186441,1692.04684317719,1441.20979020979,115616.270072269,83873.139561309,103849.393029409,257616.294725051,254,88.3750153428846,259,73.7500128038217,270,61.3750106553838,568,67,"1000-01-01","0999-06-01",7,0,"123925-9061.its",102.988,23.3125040473097,66.5000115451409
 "bergelson 23 123926-9077","bergelson","bergelson 23",57599860,98.3127389545738,283,0.541926496512003,0.607384441939121,2310.18,929.499759200804,428.809792246023,500.689966954781,1320.75109993715,1193.87414965986,1434.2721791559,1303.16592498411,262665.013421908,219374.908202902,104074.627959165,128117.811397458,400,198.875483377911,512,183.750446615669,163,72.5626763676162,195,68,"1000-03-01","0999-07-01",7,0,"123926-9077.its",113.217,28.3125688152714,135.875330252539
-"bergelson 6 123927-9123","bergelson","bergelson 6",57599990,83.562514507381,176,0.678474776543233,0.712468193384224,1733.19,517.304464809803,77.4525134466169,439.851951363186,1021.62256267409,1271.02432778489,1295.99190283401,1309.82797307405,91690.6409185141,62041.8857711607,20006.8784734164,109452.519002173,215,89.7500155815999,209,48.8125084743938,97,15.437502680122,255,53,"1000-09-01","0999-07-01",14,63580,"123927-9123.its",99.409,18.1875031575526,70.8125122938389
+"bergelson 6 123927-9123","bergelson","bergelson 6",57599990,83.562514507381,176,0.678474776543233,0.712468193384224,1733.19,517.304464809803,77.4525134466169,439.851951363186,1021.62256267409,1271.02432778489,1295.99190283401,1309.82797307405,91690.6409185141,62041.8857711607,20006.8784734164,109452.519002173,215,89.7500155815999,209,48.8125084743938,97,15.437502680122,255,53,"1000-09-01","0999-07-01",14,63580,"123927-9123.its",99.409,18.1875031575526,70.812512293839
 "bergelson 40 123928-9228","bergelson","bergelson 40",57599990,130.937522732209,314,0.716502440255593,0.739891135303266,3177.78,1067.88331039641,341.545059296017,726.338251100391,1053.32019272887,1142.8093492209,1480.65856129686,1448.58711217184,150295.651092995,155850.652057405,91338.1408573161,189674.407929585,458,142.68752477214,302,136.375023676219,207,61.6875107096373,302,57,"1000-03-01","0999-07-01",7,0,"123928-9228.its",100.456,25.1250043619799,121.500021093754
 "bergelson 18 123929-9230","bergelson","bergelson 18",46896300,348.360105168212,244,0.478423625419904,0.587968217934166,4867.95,2771.26528105629,576.126048323642,2195.13923273265,1039.42186845413,1102.39823982398,1419.04948939513,1524.47994711327,190461.934097146,153849.578751415,138672.347285394,531067.994703207,344,183.238336499894,261,139.55898439749,204,97.721995125415,602,92,"1000-05-01","0999-07-01",9,0,"123929-9230.its",104.493,46.9802521734124,122.056537509356
 "bergelson 31 123930-9241","bergelson","bergelson 31",57599990,89.0625154622423,263,0.664779800333802,0.70756062767475,3675.06,878.267652477023,361.053187682845,517.214464794178,1067.57782839787,1034.1054313099,1425.33333333333,1340.84912280702,87875.015256079,40459.3820241983,84183.7646152369,119419.395732534,341,82.3125142903671,272,39.1250067925359,280,59.062510253908,365,104,"1000-11-01","0999-07-01",16,0,"123930-9241.its",83.093,26.0000045138897,63.1250109592033
@@ -629,7 +629,7 @@
 "cougar BH35 e20110419_170007_003577","cougar","cougar BH35",36727490,281.217148245088,339,0.507280958168725,0.616818722729076,3584.73,1951.53330652326,278.838221724381,1672.69508479888,1216.21512151215,1058.15136476427,1526.31460674157,1466.3053328686,264890.086417558,83597.6539643738,66575.6358520552,412350.204165871,467,217.798711537325,188,79.0034930238903,185,43.6185538407335,483,155,"2011-04-15","2010-01-26",14,0,"e20110419_170007_003577.its",90.904,61.7521099318249,156.830755382412
 "cougar KC10 e20110421_111820_003541","cougar","cougar KC10",44378240,165.486508703365,462,0.780102482511461,0.799469111969112,3052.35,1432.5128711729,539.158290189066,893.354580983833,1072.75953389831,1081.49437600428,1541.69230769231,1388.85784313725,328599.421698562,163795.139239411,138195.025309701,229837.235546069,484,306.312282776424,328,151.452603798618,273,89.6385255476558,360,152,"2011-04-19","2008-09-08",31,0,"e20110421_111820_003541.its",105.082,88.8273171716589,272.566014334953
 "cougar WG24 e20110424_180615_003559","cougar","cougar WG24",43525990,111.078461397432,673,0.848817557642297,0.863982371794872,4314.54,2233.49589521111,1676.86873980351,556.627155407608,1275.45325779037,1062.58675078864,1588.96484375,1249.06924795235,446862.94326677,139298.841910316,403728.439031484,138744.690241394,604,350.356189485868,197,131.094088842092,422,254.082675661139,194,222,"2011-04-17","2007-08-13",44,0,"e20110424_180615_003559.its",99.035,108.100930042028,363.176116154969
-"cougar PA99 e20110425_134043_003684","cougar","cougar PA99",57599990,204.375035481777,251,0.421288635007303,0.555,4463.38,1490.84588382741,160.712527901481,1330.13335592593,1276.74664107486,1268.08657465496,1340.50420168067,1579.50458715596,166296.278870882,126333.146932838,39880.0069236123,322811.30604363,386,130.250022612851,300,99.6250172960099,135,29.7500051649315,536,104,"2011-04-22","2010-04-27",11,0,"e20110425_134043_003684.its",72.07,36.6250063585081,77.18751340061
+"cougar PA99 e20110425_134043_003684","cougar","cougar PA99",57599990,204.375035481777,251,0.421288635007303,0.555,4463.38,1490.84588382741,160.712527901481,1330.13335592593,1276.74664107486,1268.08657465496,1340.50420168067,1579.50458715596,166296.278870882,126333.146932838,39880.0069236123,322811.30604363,386,130.250022612851,300,99.6250172960099,135,29.7500051649315,536,104,"2011-04-22","2010-04-27",11,0,"e20110425_134043_003684.its",72.07,36.625006358508,77.18751340061
 "cougar BN32 e20110428_131730_003264","cougar","cougar BN32",41769860,160.13460423377,395,0.520216394260366,0.604484047139983,2266.34,1321.5121142374,499.476033675957,822.036080561438,997.151033386328,1032.12560386473,1433.67804878049,1283.44994617869,270284.45869821,92068.778779723,126652.854474494,205524.749185178,500,271.056690158885,199,89.2030760936235,187,88.3412106241199,268,119,"2011-04-23","2009-07-17",21,0,"e20110428_131730_003264.its",104.846,57.0554940811389,183.83590464512
 "cougar PA99 e20110429_145001_003581","cougar","cougar PA99",57599990,97.6250169487877,233,0.575411155586495,0.64982206405694,1946.53,669.969491314148,153.807526702696,516.161964611452,1016.17598684211,1172.72727272727,1486.86440677966,1302.49679897567,77229.3884078799,63693.7610579446,43862.5076150187,127156.272075742,215,76.0000131944467,240,54.3125094292551,204,29.5000051215287,328,57,"2011-04-25","2010-04-27",11,0,"e20110429_145001_003581.its",107.729,18.0625031358512,59.4375103190122
 "cougar BE05 e20110502_135242_003606","cougar","cougar BE05",44014550,178.468256519719,504,0.767781282067842,0.779278173336607,3501.3,1258.36151908857,169.060640174669,1089.3008789139,1130.85082246171,1131.44612144612,1265.46599496222,1492.45187901008,326132.335784417,263652.905686869,41091.0483010732,266355.284786508,547,288.395541928749,505,233.022943549349,132,32.4710805858517,388,80,"2011-04-28","2007-08-27",44,0,"e20110502_135242_003606.its",97.404,42.2042256481095,263.203872355846
@@ -675,7 +675,7 @@
 "cougar S1RA e20131016_085223_009235","cougar","cougar S1RA",40208239,77.0886782681529,497,0.849138927447283,0.846943765281174,2707.49,643.970704611062,283.518907654722,360.45179695634,989.254115226337,1044.29760665973,1465.74935400517,1307.6887340302,172183.516915526,89853.5247962489,101575.301519671,100807.996092542,500,174.053879852833,440,86.0420671494715,232,69.2992299414058,346,63,"2013-10-12","2009-06-13",51,5843710,"e20131016_085223_009235.its",NA,21.8462688704173,157.66917820002
 "cougar S1RJ e20131016_085401_009232","cougar","cougar S1RJ",40137609,72.6500674218038,232,0.333996393619701,0.499718626899268,2797.36,635.11765237436,211.608120453812,423.509531920549,1376.07458912769,1154.67048710602,1405.62945368171,1423.56790123457,195253.783054192,144575.427998215,53076.7041953097,103422.304004207,349,141.891860075671,449,125.209252001035,173,37.7600967710857,324,55,"2013-10-12","2012-02-08",20,5914270,"e20131016_085401_009232.its",97.375,18.6558197823891,82.3367430780443
 "cougar S1HR e20140401_094707_009236","cougar","cougar S1HR",44487989,304.019136490975,446,0.695730628962134,0.790979097909791,4560.42,2287.23298776216,399.727306172459,1887.5056815897,1242.9534591195,1081.97406340058,1410.29445073613,1584.70322065478,399808.226890184,182287.673196467,100769.760575152,481780.104737933,507,321.659852954918,400,168.476934302425,204,71.4529937507402,613,148,"2014-03-31","2010-04-26",47,710,"e20140401_094707_009236.its",97.306,94.2726361490514,297.46455835529
-"cougar S1HR e20141112_161807_009233","cougar","cougar S1HR",36434180,209.967673212352,761,0.883747028973512,0.878616224964596,2455.11,1229.59045599489,243.507168268917,986.083287725976,1125.24652943992,1130.32141567353,1393.97286821705,1320.23058823529,464525.563632831,309256.198437841,71071.8341952529,277205.744715539,668,412.821147614685,601,273.600229235295,140,50.9850914717993,388,157,"2014-11-07","2010-04-26",54,0,"e20141112_161807_009233.its",NA,82.2085195824361,442.364834339623
+"cougar S1HR e20141112_161807_009233","cougar","cougar S1HR",36434180,209.967673212352,761,0.883747028973512,0.878616224964596,2455.11,1229.59045599489,243.507168268917,986.083287725976,1125.24652943992,1130.32141567353,1393.97286821705,1320.23058823529,464525.563632831,309256.198437841,71071.8341952529,277205.744715539,668,412.821147614685,601,273.600229235295,140,50.9850914717993,388,157,"2014-11-07","2010-04-26",54,0,"e20141112_161807_009233.its",NA,82.208519582436,442.364834339623
 "cougar S1GC e20141113_144912_009236","cougar","cougar S1GC",54122990,152.652320206256,652,0.879595401432119,0.879887745556595,2865.48,950.024231846762,110.347340381601,839.676891465161,1234.38986784141,1198.07302231237,1367.04545454545,1403.63834422658,372759.671998905,157148.74584719,28006.2132561412,214268.649976655,626,301.978881802354,245,131.167919584635,71,20.4866730385738,440,179,"2014-11-08","2011-05-10",41,0,"e20141113_144912_009236.its",114.157,68.3775970248502,320.004493469411
 "cougar S1SA e20141204_092246_009235","cougar","cougar S1SA",43381930,370.356966598766,853,0.970083752988641,0.952158475051392,4547.65,2737.09150330564,460.505652929688,2276.58585037595,1258.25216107949,1091.57038242474,1510.86729362591,1569.25386511315,495238.547478178,222652.334739372,119986.362985695,581184.101306696,734,393.5924473623,570,203.974327559885,243,79.4155538953661,648,310,"2014-12-01","2011-06-23",41,0,"e20141204_092246_009235.its",120.332,153.022237599849,428.445668507602
 "cougar S1HR e20141215_130044_009233","cougar","cougar S1HR",40760300,196.956352136761,563,0.928624290375774,0.911076032622994,2219.98,1211.4228796157,261.574816672105,949.8480629436,1148.11589895988,1094.4,1387.22513089005,1343.91479820628,341221.139196718,108741.103475686,70204.7825948288,264692.556237319,541,297.200952887982,170,99.3613884098007,105,50.6080671633918,415,143,"2014-12-12","2010-04-26",55,0,"e20141215_130044_009233.its",NA,83.2869237959485,312.392205160413
@@ -692,7 +692,7 @@
 "cougar S1SA e20150224_091901_009235","cougar","cougar S1SA",44393860,170.13163532074,859,0.927140789972875,0.92400234741784,3478.99,1731.4883634809,810.720221219781,920.768142261114,1602.84126690128,1183.72093023256,1672.56288239293,1405.58627264061,701751.638627504,86679.5543347661,199514.617561978,239134.691148731,725,437.817301762,256,73.2263425617867,217,119.286766232988,500,221,"2015-02-22","2011-06-23",44,0,"e20150224_091901_009235.its",126.206,130.153133789222,522.720934831979
 "cougar S1SA e20150224_092010_009228","cougar","cougar S1SA",45058430,248.397469685473,689,0.958183816289989,0.947709994437233,3681.49,1942.0183970014,421.596580262561,1520.42181673884,1414.62072051913,1241.115935736,1563.61650485437,1550.25410099711,505099.3565466,228366.678554934,102939.938209121,385079.196057208,599,357.056382124277,491,184.001084813652,207,65.8345175364521,472,197,"2015-02-23","2011-06-23",44,0,"e20150224_092010_009228.its",121.849,98.8316725638244,419.695049294882
 "cougar S1SA e20150224_092118_009230","cougar","cougar S1SA",25832990,45.0122111300318,618,0.956748135354977,0.914935319482556,1263.34,870.729869055034,707.473505776916,163.256363278118,1666.20087336245,963.125,1749.62532299742,1102.22910216718,478556.450492181,17179.8928424468,188718.224255109,49613.7690604146,513,287.214139749212,40,17.8376564230467,166,107.86207868311,90,115,"2015-02-16","2011-06-23",43,0,"e20150224_092118_009230.its",134.39,70.6538422381614,332.365707570049
-"cougar S1GC e20150317_165019_009236","cougar","cougar S1GC",35953110,252.428788497017,585,0.81832336619423,0.824150306100908,2649.73,1355.97916285962,59.4494328863344,1296.52972997329,1206.94220921726,1070.10545621275,1264.91525423729,1262.49504165014,495612.535327264,233694.386938988,14945.4664700773,318690.093847236,669,410.634851894593,489,218.384445740577,23,11.8153895448822,432,169,"2015-03-13","2011-05-10",46,0,"e20150317_165019_009236.its",97.11,90.0172474648229,394.914375974707
+"cougar S1GC e20150317_165019_009236","cougar","cougar S1GC",35953110,252.428788497017,585,0.81832336619423,0.824150306100908,2649.73,1355.97916285962,59.4494328863344,1296.52972997329,1206.94220921726,1070.10545621275,1264.91525423729,1262.49504165014,495612.535327264,233694.386938988,14945.4664700773,318690.093847236,669,410.634851894593,489,218.384445740577,23,11.8153895448822,432,169,"2015-03-13","2011-05-10",46,0,"e20150317_165019_009236.its",97.11,90.017247464823,394.914375974707
 "cougar S1VL e20150413_105742_008790","cougar","cougar S1VL",48414990,158.82684267827,246,0.62074965150009,0.707680250783699,5245.91,1221.93386800245,182.510334092809,1039.42353390964,1172.85977859779,1175.86797066015,1413.60986547085,1646.28277153558,94536.1756761697,71521.1549150377,46879.9435877194,261473.894758627,209,80.6031355165002,321,60.8241373178018,141,33.1632826940582,623,52,"2015-04-11","2014-11-13",4,0,"e20150413_105742_008790.its",135.1,16.8790698913704,69.9700650562977
 "cougar S1VL e20150415_132800_009231","cougar","cougar S1VL",46843860,65.0159914234224,189,0.597785797009729,0.653769841269841,1498.36,457.689524304786,103.30856594653,354.380958358257,1159.08787541713,1110.29220779221,1733.07692307692,1465.37825059102,80080.334968126,26280.7548310494,38091.9932729711,95273.0197724953,239,69.0890972690978,95,23.6701245371325,89,21.9794013559088,213,39,"2015-04-14","2014-11-13",4,0,"e20150415_132800_009231.its",116.758,6.762892724895,56.5623755173037
 "cougar S1HR e20150420_151540_009237","cougar","cougar S1HR",38617489,268.292948824301,508,0.914421502696052,0.908765652951699,4535.36,2088.04068022134,687.285804625982,1400.75487559536,1114.09507923269,1097.52627324171,1571.32292522597,1411.10111188325,249051.925670258,126561.93156422,178268.452410254,378588.478396407,463,223.546383349782,179,115.315628108291,332,113.451187880186,429,124,"2015-04-17","2010-04-26",59,1020,"e20150420_151540_009237.its",NA,76.5352713637078,243.962003847531
@@ -718,7 +718,7 @@
 "cougar S1SE e20150628_075357_009232","cougar","cougar S1SE",30752300,196.668216686232,124,0.421026782790911,0.559757942511346,5564.14,1842.09519287988,420.700240307229,1421.39495257265,1278.77622377622,965.016077170418,1540.24590163934,1841.4880952381,85627.9367722089,35133.3721380189,109987.870825922,362162.179739402,193,66.9608452050741,104,36.4070329698917,206,71.4092929634531,558,52,"2015-06-27","2015-05-04",1,0,"e20150628_075357_009232.its",NA,14.8671806661616,47.6452167805335
 "cougar S1SE e20150628_220900_009232","cougar","cougar S1SE",18282990,248.099462943424,153,0.489423683285308,0.62453531598513,8074.68,2305.94273693745,589.118081889231,1716.82465504822,1335.93147751606,1017.5,1786.43031784841,1746.24603174603,122844.676937416,48084.0387704637,143868.152856836,433242.702643277,200,91.9543247576026,115,47.2570405606523,359,80.5338732887783,746,86,"2015-06-28","2015-05-04",1,5426650,"e20150628_220900_009232.its",NA,30.1263633574158,70.2948478339703
 "cougar S1SE e20150629_202507_009232","cougar","cougar S1SE",31126240,152.321642447016,110,0.494620662225316,0.671957671957672,3680.07,1173.52201872118,211.19042968248,962.331589038702,1290.61349693252,1078.67469879518,1508.40390879479,1614.30523917995,72992.9474295642,62129.1874636962,53558.926487748,245893.625442713,121,56.5567829586869,88,57.5977053444296,87,35.5070191581123,481,41,"2015-06-29","2015-05-04",1,0,"e20150629_202507_009232.its",NA,12.7223847146331,49.8486164727895
-"cougar S1SE e20150630_221509_009232","cougar","cougar S1SE",51404180,20.3096324073256,126,0.601399573639818,0.631436314363144,524.11,137.15444930743,42.3918054913044,94.7626438161254,965.466237942122,1686.14678899083,1486.79611650485,1280.34482758621,21028.1731952538,51485.6184847224,10724.8865753719,26003.3328028966,113,21.7803299264768,181,30.5344818261861,28,7.21342116536048,95,19,"2015-06-30","2015-05-04",1,0,"e20150630_221509_009232.its",NA,3.50166075988373,21.0799977745001
+"cougar S1SE e20150630_221509_009232","cougar","cougar S1SE",51404180,20.3096324073256,126,0.601399573639818,0.631436314363144,524.11,137.15444930743,42.3918054913044,94.7626438161254,965.466237942122,1686.14678899083,1486.79611650485,1280.34482758621,21028.1731952538,51485.6184847224,10724.8865753719,26003.3328028966,113,21.7803299264768,181,30.5344818261861,28,7.21342116536048,95,19,"2015-06-30","2015-05-04",1,0,"e20150630_221509_009232.its",NA,3.50166075988373,21.0799977745
 "cougar S1SE e20150703_102022_009232","cougar","cougar S1SE",25105490,193.439761582028,132,0.363473498696418,0.582840236686391,4774.05,1918.84786952973,610.217127807503,1308.63074172223,1358.41483979764,1299.05940594059,1488.15295815296,1658.65826538176,115510.352516521,75256.5275563233,147881.75813338,320850.459401509,172,85.0331939348724,162,57.9315520230834,212,99.3726870098931,454,55,"2015-07-01","2015-05-04",1,0,"e20150703_102022_009232.its",NA,26.5280621887882,63.237164460841
 "cougar S1SE e20150706_201910_009232","cougar","cougar S1SE",34310430,144.690696094453,131,0.473148936590849,0.658008658008658,2849.66,1096.41447221734,146.58353159666,949.83094062068,1470.60344827586,1079.64803312629,1317.19512195122,1732.55982596084,89495.2351223812,54714.9073911344,45331.5216393382,250685.287243558,143,60.8561303370433,130,50.678467159986,112,34.4151909492245,350,26,"2015-07-06","2015-05-04",2,0,"e20150706_201910_009232.its",76.433,9.33826827585664,52.5671056876874
 "cougar S1SE e20150707_221200_009232","cougar","cougar S1SE",31313990,200.958102113464,121,0.46400021378452,0.679796696315121,4070.4,1480.86117419083,213.811143198296,1267.05003099254,1429.73013493253,1098.13596491228,1563.20512820513,1604.40503432494,109633.681303469,57568.5180968634,56070.5294981572,322418.190719228,140,76.6813810696114,72,52.4238527252516,98,35.8689518646458,559,69,"2015-07-07","2015-05-04",2,0,"e20150707_221200_009232.its",87.324,21.8432719688548,67.3692493355206
@@ -773,7 +773,7 @@
 "lucid C012 0454","lucid","lucid C012",57599990,78.8125136827281,619,0.851007488979471,0.875938803894298,1902.76,707.791372880447,315.307554740895,392.483818139552,1197.58177927239,1084.80682839173,1406.34444444444,1225.38461538462,244830.667505324,75461.8881010222,79106.8887338348,96575.6417666045,645,204.437535492628,170,69.562512076825,275,56.2500097656267,235,160,"1001-09-01","0999-02-01",30,0,NA,NA,47.750008289932,199.062534559468
 "lucid C055 0482","lucid","lucid C055",57599990,145.312525227869,523,0.699899641577061,0.731534478059417,3488.35,1191.62645687959,418.423197642916,773.203259236677,1010.42792109256,1141.4089347079,1485.18397383483,1368.72258064516,208085.036125874,207593.786040588,113523.769708988,198892.534529954,514,205.937535753044,508,181.875031575526,195,76.4375132704016,506,110,"1000-12-01","0999-02-01",21,0,NA,NA,37.5625065212685,169.125029361984
 "lucid C025 0490","lucid","lucid C025",57599990,175.00003038195,524,0.782920105644923,0.815327564894932,2552.61,1252.56146745859,303.196927638355,949.364539820233,1089.19864559819,1009.4750211685,1478.88228299643,1373.4,241257.54188499,74511.8879360917,77733.763495445,240345.04172657,578,221.500038454868,193,73.8125128146724,162,52.5625091254356,396,120,"1001-02-01","0999-01-01",25,0,NA,NA,52.3125090820328,210.812536599399
-"lucid C026 0558","lucid","lucid C026",57599990,90.0000156250027,856,0.833619627421266,0.847397563676633,1666.28,658.984489407029,204.70878553972,454.27570386731,1111.53243574051,1195.8052114481,1294.85163204748,1323.84722222222,283788.17426878,174961.280375222,54545.6344697282,119146.270685116,836,255.312544325095,594,146.31252540148,184,42.1250073133693,218,164,"1001-09-01","0999-02-01",30,0,NA,NA,43.4375075412339,242.000042013896
+"lucid C026 0558","lucid","lucid C026",57599990,90.0000156250027,856,0.833619627421266,0.847397563676633,1666.28,658.984489407029,204.70878553972,454.27570386731,1111.53243574051,1195.8052114481,1294.85163204748,1323.84722222222,283788.17426878,174961.280375222,54545.6344697282,119146.270685116,836,255.312544325095,594,146.31252540148,184,42.1250073133693,218,164,"1001-09-01","0999-02-01",30,0,NA,NA,43.437507541234,242.000042013896
 "lucid C006 0572","lucid","lucid C006",57599990,91.4375158745687,704,0.70892065975169,0.742564758554525,2672.61,713.469498866232,192.790033470492,520.67946539574,1089.09155937053,1148.38266838267,1429.71887550201,1402.96650717703,190318.783041455,167305.029046012,44500.0077256958,128283.772271488,698,174.750030338547,395,145.687525292973,176,31.1250054036468,465,241,"1001-09-01","0999-02-01",30,0,NA,NA,38.4375066731782,147.250025564241
 "lucid C056 0603","lucid","lucid C056",57599990,106.750018532989,379,0.61871049829125,0.674306086070792,1492.29,720.497000086285,177.68753084853,542.809469237755,1177.35645252985,1161.22493734336,1348.73646209386,1314.35597189696,258871.294942933,231664.415219517,46700.0081076403,140307.524358945,466,219.87503817275,478,199.500034635423,84,34.6250060112858,244,92,"1001-02-01","0999-01-01",25,0,NA,NA,34.1875059353309,169.500029427088
 "lucid C042 0668","lucid","lucid C042",57599990,202.375035134555,665,0.799257835567665,0.829356747470891,4512.8,1525.84651490391,380.564441070215,1145.28207383369,1048.61479264643,1087.9274611399,1308.79090909091,1386.07782581841,306588.803227223,65615.6363916035,89979.390621422,280507.548699227,650,292.375050759557,341,60.312510470922,284,68.750011935766,541,342,"1000-08-01","0999-01-01",18,0,NA,NA,103.375017947052,275.875047894974
@@ -871,7 +871,7 @@
 "lucid C010 4224","lucid","lucid C010",57599990,147.437525596793,1474,0.825605006524147,0.852851711026616,3149.3,1171.4152033707,271.102547066414,900.312656304281,1190.22403258656,1206.84886581033,1308.24667472793,1538.97838066978,474825.08243491,275991.297915156,67620.0117395854,226903.16439291,1021,398.937569259995,600,228.687539702698,181,51.6875089735259,423,208,"1001-06-01","0999-02-01",27,0,"4224.its",104.658,79.3750137803843,434.875075499145
 "lucid C066 4302","lucid","lucid C066",57599990,165.875028797748,419,0.767675458842521,0.819672131147541,2875.63,1140.29144796726,144.936275162548,995.355172804718,1116.21335504886,1163.38825644098,1371.51741293532,1443.3421250942,171338.779746316,242711.917137486,34459.3809825314,239414.416565003,406,153.50002664931,508,208.625036219624,171,25.1250043619799,460,119,"1001-04-01","0999-01-01",26,0,"4302.its",98.265,47.8750083116334,155.437526985682
 "lucid C040 4392","lucid","lucid C040",44358860,221.150859151926,770,0.637908633468052,0.724984365228268,2299.13,1417.70198783287,190.503002106005,1227.19898572686,1064.23118473172,1025.49278846154,1344.89082969432,1375.83486238532,479693.662100424,138486.696907901,49989.0213589799,304267.061867686,775,450.74197127699,364,135.044047570204,79,37.1695755932411,330,174,"1000-05-01","0999-02-01",14,0,"4392.its",100.275,90.8950320184062,379.405602398258
-"lucid C023 4425","lucid","lucid C023",41883240,245.22458147937,396,0.698848631902482,0.736954967834167,2980.08,1886.87379486401,632.916651147332,1253.95714371668,1012.3022984028,1044.48905109489,1386.14010007148,1373.49106203996,223356.359250144,122994.782638592,166681.374220333,336813.770854404,410,220.641956066436,209,117.755932922095,270,120.248576757672,444,146,"1000-01-01","0999-02-01",10,0,"4425.its",97.901,75.1231280101539,183.166345297069
+"lucid C023 4425","lucid","lucid C023",41883240,245.22458147937,396,0.698848631902482,0.736954967834167,2980.08,1886.87379486401,632.916651147332,1253.95714371668,1012.3022984028,1044.48905109489,1386.14010007148,1373.49106203996,223356.359250144,122994.782638592,166681.374220333,336813.770854404,410,220.641956066436,209,117.755932922095,270,120.248576757672,444,146,"1000-01-01","0999-02-01",10,0,"4425.its",97.901,75.123128010154,183.166345297069
 "lucid C018 4431","lucid","lucid C018",57599990,241.562541937941,460,0.614134941542862,0.67024081560907,4977.01,1770.9321824535,202.770035203131,1568.16214725037,1062.21963974433,1027.97772567409,1487.48815165877,1614.20698576973,342765.059507823,109608.144029192,78465.0136223982,389931.942696518,582,322.687556022145,287,106.625018511288,259,52.7500091579877,615,209,"1000-12-01","0999-02-01",21,0,"4431.its",102.561,85.5000148437526,242.250042057299
 "lucid C049 4602","lucid","lucid C049",57599990,101.000017534725,736,0.83401772329108,0.866718027734977,2452.03,1012.59142579712,483.200708889012,529.390716908111,1224.71698113208,1079.0752688172,1510.27436823105,1379.87623762376,320493.180641177,94081.8913336617,130733.147696727,139367.524195751,655,261.687545431866,258,87.1875151367214,255,86.5625150282144,291,171,"1001-05-01","0999-02-01",26,0,"4602.its",106.009,69.5000120659743,286.437549728741
 "lucid C068 4603","lucid","lucid C068",57599990,115.625020073788,444,0.829182676778998,0.846153846153846,2604.48,822.170142737872,199.972534717454,622.197608020418,993.423394787031,1010.70118662352,1333.17948717949,1382.62162162162,195331.90891179,58557.5101662344,48744.3834625666,159865.652754454,473,196.625034136291,127,57.9375100585955,272,36.5625063476574,331,115,"1001-08-01","0999-02-01",29,0,"4603.its",88.709,46.6250080946195,180.43753132596
@@ -910,7 +910,7 @@
 "lucid C040 5903","lucid","lucid C040",57599990,103.25001792535,1056,0.734678623325285,0.777711347602535,2032.16,780.672010533335,242.196292047967,538.475718485368,1175.7934655776,1035.69649805447,1324.83063328424,1330.19975786925,503827.587470067,83179.3894408662,56222.5097608524,137343.148844297,967,428.500074392374,219,80.3125139431448,140,42.4375073676228,277,219,"1001-03-01","0999-02-01",24,0,"5903.its",106.065,75.0000130208356,411.187571386731
 "lucid C047 5931","lucid","lucid C047",57599990,216.875037651916,243,0.886054228758722,0.905544147843943,2316.3,1215.84146108359,30.1187552289506,1185.72270585464,992.6328125,1113.87261146497,1117.88990825688,1318,79410.6387865692,163948.153463221,7615.62632215735,285841.299625226,235,80.0000138888913,289,147.18752555339,22,6.8125011827259,411,139,"1001-05-01","0999-02-01",26,0,"5931.its",87.475,38.5000066840289,85.4375148329019
 "lucid C046 6027","lucid","lucid C046",57599990,82.5000143229192,349,0.60311917180048,0.677910052910053,1647.51,640.200111145853,239.992541665372,400.207569480481,1012.83730865077,1169.62251655629,1306.59544159544,1311.42424242424,177816.280870882,110383.14416374,57326.8849525842,108192.518783423,427,175.562530479606,303,94.3750163845515,152,43.8750076171888,246,95,"1000-04-01","0999-01-01",14,0,"6027.its",97.548,31.3750054470496,130.562522667105
-"lucid C046 6133","lucid","lucid C046",46206430,101.518338465014,436,0.742244261445687,0.809917355371901,4076.02,1148.69129686063,631.038147720999,517.653149139633,980.942751352891,1170.37051953282,1498.07429871114,1311.65771297007,268333.30339522,226412.384596689,153949.482788434,133157.311655542,459,273.546344091071,362,193.453595094882,514,102.764918215928,254,150,"1000-10-01","0999-01-01",20,0,"6133.its",107.414,62.0952538423765,263.417883614899
+"lucid C046 6133","lucid","lucid C046",46206430,101.518338465014,436,0.742244261445687,0.809917355371901,4076.02,1148.69129686063,631.038147720999,517.653149139633,980.942751352891,1170.37051953282,1498.07429871114,1311.65771297007,268333.30339522,226412.384596689,153949.482788434,133157.311655542,459,273.546344091071,362,193.453595094882,514,102.764918215928,254,150,"1000-10-01","0999-01-01",20,0,"6133.its",107.414,62.0952538423765,263.4178836149
 "lucid C008 6164","lucid","lucid C008",57599990,127.187522081167,343,0.566690099715913,0.644913080649758,2421.85,1112.24456809802,421.043198097777,691.201370000238,1030.51634586007,1022.41854636591,1408.10148731409,1366.59459459459,210805.036598097,101986.267705949,100591.267463762,173813.780176003,397,204.562535514329,276,99.7500173177113,253,71.4375124023459,344,113,"1000-05-01","0999-02-01",14,0,"6164.its",92.523,44.8125077799493,143.187524858945
 "lucid C010 6276","lucid","lucid C010",57599990,94.5000164062529,608,0.619121000010687,0.645654250238777,1809.86,633.19385992949,115.667520081167,517.526339848323,1150.2110704286,1086.71484157865,1303.5824742268,1427.81084656085,333776.932947384,122187.521213111,31611.8804881737,134928.148425026,686,290.187550379783,284,112.437519520403,117,24.2500042100702,254,149,"1000-12-01","0999-02-01",21,0,"6276.its",94.165,45.3125078667548,223.375038780389
 "lucid C025 6339","lucid","lucid C025",57599990,175.187530414502,589,0.802314660653783,0.788566028821167,2702.67,1068.74768554647,68.3981368746765,1000.3495486718,1159.68782249742,1083.24619771863,1337.17277486911,1387.96289689618,280934.423773337,142446.899730365,15962.5027712678,243153.7922142,664,242.250042057299,401,131.500022829865,73,11.937502072483,427,144,"1001-04-01","0999-01-01",26,0,"6339.its",101.391,57.0000098958351,214.312537207038
@@ -936,7 +936,7 @@
 "lucid C023 7345","lucid","lucid C023",57599990,117.687520431861,295,0.636924308886925,0.627680965147453,2848.8,1056.52518342451,461.805080174493,594.720103250018,1021.99144994656,1196.64506480558,1297.15323645971,1335.27881040892,179295.656127718,150029.401046771,122743.146309574,157145.652282231,443,175.437530457905,356,125.375021766497,248,94.6250164279542,353,138,"1000-05-01","0999-02-01",14,0,"7345.its",96.056,46.3750080512167,120.31252088759
 "lucid C066 7411","lucid","lucid C066",57599990,209.687536404086,338,0.722195230110112,0.741878059635069,3377.8,1407.6121193771,204.453785495449,1203.15833388166,965.542635658915,1088.57064920895,1304.12780656304,1437.64530551416,124555.021624136,124709.396650937,47193.1331932523,301456.302336164,384,129.000022395837,237,114.562519889326,306,36.1875062825532,561,168,"1000-10-01","0999-01-01",20,0,"7411.its",92.618,48.3125083875883,108.750018880212
 "lucid C035 7413","lucid","lucid C035",57599990,252.750043880216,393,0.598214522385727,0.644188937228092,4072.33,1587.84840066813,116.971895307621,1470.8765053605,1063.43045438779,1070.39429530201,1360.35264483627,1461.6196834817,191616.908266824,79744.388844512,33753.7558600271,369424.439136187,420,180.187531282558,180,74.50001293403,97,24.8125043077264,581,120,"1000-01-01","0999-02-01",10,0,"7413.its",119.93,48.2500083767376,133.625023198789
-"lucid C061 7427","lucid","lucid C061",43120610,172.149698253341,176,0.494727639076021,0.55591054313099,3853.49,1405.53048762529,354.937279412327,1050.59320821296,1014.62435233161,1156.53760710885,1617.15170278638,1624.15615906887,196183.031733549,304246.623598321,87216.9479977208,279597.99270001,310,193.355335186585,383,263.066779435634,343,53.9324466884861,363,70,"1000-05-01","0999-01-01",15,0,"7427.its",86.336,25.0460278739099,120.471394073507
+"lucid C061 7427","lucid","lucid C061",43120610,172.149698253341,176,0.494727639076021,0.55591054313099,3853.49,1405.53048762529,354.937279412327,1050.59320821296,1014.62435233161,1156.53760710885,1617.15170278638,1624.15615906887,196183.031733549,304246.623598321,87216.9479977208,279597.99270001,310,193.355335186585,383,263.066779435634,343,53.9324466884861,363,70,"1000-05-01","0999-01-01",15,0,"7427.its",86.336,25.04602787391,120.471394073507
 "lucid C030 7437","lucid","lucid C030",57599990,115.75002009549,589,0.787021970345269,0.798862251117432,2947.64,1153.0702001858,504.088212515315,648.981987670484,1120.27533549283,1171.06517803259,1539.28678678679,1435.83693304536,302614.427537227,242556.917110576,128145.647247508,166198.153853846,604,270.12504689671,565,207.125035959208,356,83.2500144531275,446,147,"1000-11-01","0999-02-01",20,0,"7437.its",102.236,62.3125108181442,250.937543565546
 "lucid C047 7468","lucid","lucid C047",57599990,112.437519520403,115,0.488632969367097,0.512135922330097,3149.13,926.208910800158,229.48191484061,696.726995959548,877.631241997439,1238.41598459316,1369.46902654867,1454.59699833241,42839.3824373928,160761.902910053,58031.2600748715,163551.278394319,183,48.8125084743938,349,129.812522536896,253,42.3750073567721,274,35,"1001-09-01","0999-02-01",30,0,"7468.its",72.559,10.8750018880212,27.6875048068585
 "lucid C038 7585","lucid","lucid C038",44798680,226.533460360886,802,0.746913346458363,0.790319531102288,3221.61,2000.36358214126,741.222464590475,1259.14111755079,1274.6298031865,1086.80504077094,1420.92474489796,1438.52784675417,437165.380765683,117815.078479991,179041.793195692,325874.690950716,648,342.974391209741,188,108.404979789583,300,126.003712609389,390,233,"1001-03-01","0999-02-01",24,0,"7585.its",114.627,112.342595808626,344.742300442781
@@ -1082,7 +1082,7 @@
 "warlaumont 0857 0857_000908","warlaumont","warlaumont 0857",46994930,66.1858630282033,358,0.370644193896833,0.445966514459665,4271.78,810.763033374026,478.176007496979,332.587025877047,1130.2071668533,1166.66666666667,1471.87751004016,1294.24768518519,154629.020619884,57912.6301496779,112300.709885088,85660.9000162358,712,136.814758528207,325,49.6393972711524,431,76.2975921019565,420,49,"2016-09-26","2015-12-18",9,66040712,"0857_000908.its",76.968,7.12417275650799,68.4839832722381
 "warlaumont 0955 0955_000301","warlaumont","warlaumont 0955",43847180,163.549856570023,419,0.35106777731168,0.561194988756826,5640.36,1155.28104658042,92.4171634298945,1062.86388315052,1893.15539739027,1208.24646464646,1258.13043478261,1592.37449799197,393093.558126201,245522.653908416,23758.2439737288,260432.620752349,514,207.639351036942,452,203.205770587755,85,18.8837685798722,693,62,"2016-04-16","2016-01-15",3,0,"0955_000301.its",118.679,22.1679022459369,148.360738364474
 "warlaumont 0955 0955_000609","warlaumont","warlaumont 0955",37859110,122.57023474667,156,0.437739617790494,0.474639615589963,2273.4,949.05971112369,278.246794496754,670.812916626936,1100.32672112019,934.695863746959,1320.39355992844,1263.72381691234,179334.802112358,36529.543351653,70185.4850787565,154894.924893903,311,162.983229135603,78,39.0817428090623,143,53.1549737962673,283,44,"2016-07-24","2016-01-15",6,0,"0955_000609.its",87.575,19.6835055023745,84.629564720354
-"warlaumont 0955 0955_000902","warlaumont","warlaumont 0955",44879430,187.221629151707,268,0.636779492995231,0.668005354752343,5827.52,1464.52635427856,228.038992473835,1236.48736180473,1055.06949524506,1195.94303981401,1461.19658119658,1651.09682947729,231384.756891966,330103.657733621,54854.1726131548,309121.038301957,391,219.307598157998,510,276.019548376617,85,37.5405837373603,654,97,"2016-10-17","2016-01-15",9,0,"0955_000902.its",106.935,30.0003810208819,161.472639024159
+"warlaumont 0955 0955_000902","warlaumont","warlaumont 0955",44879430,187.221629151707,268,0.636779492995231,0.668005354752343,5827.52,1464.52635427856,228.038992473835,1236.48736180473,1055.06949524506,1195.94303981401,1461.19658119658,1651.09682947729,231384.756891966,330103.657733621,54854.1726131548,309121.038301957,391,219.307598157998,510,276.019548376617,85,37.5405837373603,654,97,"2016-10-17","2016-01-15",9,0,"0955_000902.its",106.935,30.000381020882,161.472639024159
 "warlaumont 0973 0973_000304","warlaumont","warlaumont 0973",57083300,186.106969989472,275,0.374018095104503,0.560478511298183,4623.11,1608.16729236046,470.976134876575,1137.19115748389,1478.92857142857,991.970443349754,1473.7380952381,1454.45272788885,185420.184186969,12699.5461019247,117107.385172196,270683.790180315,366,125.374671751633,32,12.8023432422442,309,79.4628201242745,491,131,"2015-12-20","2015-09-17",3,35052270,"0973_000304.its",80.707,30.5238134445626,81.2286605714806
 "warlaumont 0973 0973_000604","warlaumont","warlaumont 0973",38337300,193.440852642205,355,0.612586999350979,0.687834736036725,4614.46,1604.55994553607,387.009413808484,1217.55053172759,1350.66968325792,1075.92592592593,1439.89174560217,1607.60194174757,280299.551611616,46374.1578045402,99920.6516890861,310975.890320915,370,207.526351621006,84,43.101626875132,173,69.3945583022278,488,107,"2016-03-21","2015-09-17",6,5031520,"0973_000604.its",105.921,43.8528534873348,170.15282766392
 "warlaumont 0973 0973_000911","warlaumont","warlaumont 0973",57599990,132.250022960073,375,0.63741448012529,0.670807453416149,2766.16,1054.17768301696,224.523163979716,829.654519037243,1046.6796875,1044.65753424658,1428.71559633028,1486.81947069943,117228.145352109,33363.7557923187,58398.7601386736,196631.909137484,406,112.000019444448,204,31.9375055447058,183,40.8750070963554,379,79,"2016-06-28","2015-09-17",9,74024581,"0973_000911.its",76.098,25.312504394532,82.0000142361136

+ 88 - 88
data_output/lena_metrics.csv

@@ -21,7 +21,7 @@
 "bergelson 26 123436-0293","bergelson","bergelson 26",57599990,180.750031380214,224,0.506537273737586,0.547770700636943,3607.21,1177.36707940401,55.3156346034088,1122.0514448006,993.14072693383,1148.48484848485,1219.02857142857,1526.83955739972,133205.023125872,182393.781665587,13333.127314779,275976.297912552,360,134.125023285594,404,158.812527571619,32,10.9375018988719,508,84,"1000-11-01","0999-07-01",16,0,"123436-0293.its",104.592,28.0625048719627,81.8750142144122,-0.0820214258488275
 "bergelson 43 123437-0357","bergelson","bergelson 43",45180610,156.173190224745,218,0.36003991044418,0.466280134269149,2880.43,987.110178459299,169.933163806332,817.177014652967,1134.46967239702,1024.07494145199,1364.44444444444,1363.67857142857,278687.073946102,69685.1149198738,46966.6965541191,212970.032941122,425,245.654053807596,165,68.0468900264959,87,34.4218460087192,467,86,"1000-08-01","0999-07-01",13,0,"123437-0357.its",97.052,31.3939984431374,126.054074967115,-0.337887433953178
 "bergelson 16 123438-0395","bergelson","bergelson 16",57599990,91.3125158528673,309,0.544160064965311,0.645348837209302,3486.79,685.26886897029,192.660033447923,492.608835522367,1146.6961130742,1092.92661361627,1545.57729941292,1407.93976728268,121693.146127282,77256.2634125457,49361.8835697715,128562.522319882,347,106.125018424482,214,70.6875122721376,184,31.9375055447058,416,83,"1000-07-01","0999-07-01",11,0,"123438-0395.its",97.459,20.1250034939242,77.8125135091169,-0.508464772689412
-"bergelson 43 123439-0396","bergelson","bergelson 43",42474860,161.375458329939,178,0.447244043156557,0.51793893129771,2677.89,1205.44585667852,330.663738503199,874.782118175316,1181.63511880789,1015.44262295082,1534.74462365591,1428.03046218487,248674.156901282,52499.5726884091,96778.6591880468,230449.070344199,329,210.449192769558,88,51.7011709985624,190,63.0584774146401,322,73,"1000-10-01","0999-07-01",15,0,"123439-0396.its",78.093,39.0725243120283,121.116349765485,-0.167310095216945
+"bergelson 43 123439-0396","bergelson","bergelson 43",42474860,161.375458329939,178,0.447244043156557,0.51793893129771,2677.89,1205.44585667852,330.663738503199,874.782118175316,1181.63511880789,1015.44262295082,1534.74462365591,1428.03046218487,248674.156901282,52499.5726884091,96778.6591880468,230449.070344199,329,210.449192769558,88,51.7011709985624,190,63.0584774146401,322,73,"1000-10-01","0999-07-01",15,0,"123439-0396.its",78.093,39.0725243120283,121.116349765485,-0.167310095216944
 "bergelson 29 123440-0397","bergelson","bergelson 29",38613050,232.429191685195,382,0.744588426336434,0.748068525361102,2104.71,1532.78707587202,213.557955147288,1319.22912072473,972.001519179643,1146.08283002588,1371.39072847682,1416.75491375852,238608.656917804,123841.965345913,57919.9001373888,329295.199420921,403,245.481773649064,257,108.056732115179,86,42.2344259259499,336,120,"1000-12-01","0999-07-01",17,0,"123440-0397.its",109.044,75.0523462922509,214.80820603397,0.00326724351928943
 "bergelson 32 123441-0404","bergelson","bergelson 32",57599990,33.9375058919281,32,NA,NA,1591.42,266.53754627388,80.4112639602889,186.126282313591,1134.9104859335,NA,1430.58091286307,1391.47329650092,27734.3798149965,121138.146030928,21548.1287409946,47223.1331984606,116,24.4375042426223,229,89.3125155056451,79,15.0625026150178,173,9,"1000-08-01","0999-07-01",13,0,"123441-0404.its",NA,1.37500023871532,5.81250100911476,-0.337887433953178
 "bergelson 10 123442-0414","bergelson","bergelson 10",57599990,152.125026410595,311,0.623546004420147,0.644852354349561,3281.98,1207.18270958033,329.356307179914,877.826402400417,1302.41363840287,1195.08300395257,1741.44391408115,1493.75924404273,181442.53150044,188972.532807731,91208.1408347467,227238.16445107,399,139.312524186202,523,158.125027452262,242,52.3750090928835,399,78,"1000-05-01","0999-07-01",9,0,"123442-0414.its",100.488,23.1875040256083,103.500017968753,-0.679042111425646
@@ -49,7 +49,7 @@
 "bergelson 35 123464-0818","bergelson","bergelson 35",41611430,122.072228712159,366,0.759771998127988,0.836866359447005,2431.1,1216.85594558995,655.276975580988,561.578970008962,1198.25928623452,969.092465753425,1489.62988826816,1191.90644932672,284669.66888665,48962.9892555964,184548.81266998,145498.676685709,347,237.569340923876,100,50.5245794244514,274,123.88903721886,220,120,"1000-09-01","0999-07-01",14,0,"123464-0818.its",92.403,61.598459846249,239.732208193758,-0.252598764585061
 "bergelson 28 123465-0820","bergelson","bergelson 28",43913550,72.0597628750124,65,0.657615713994427,0.629746835443038,1615.6,479.460576519093,163.720765003057,315.739811516036,1071.872909699,1154.29667519182,1423.58288770053,1297.18998862344,26273.5306072955,73999.3919872112,43647.3935721435,93475.2029840448,85,24.5117964728427,156,64.1077753905116,135,30.6602404041577,192,30,"1000-02-01","0999-07-01",7,0,"123465-0820.its",NA,5.32865140713971,17.9534562794399,-0.84961945016188
 "bergelson 3 123466-0850","bergelson","bergelson 3",57599990,153.687526681862,260,0.843217806010984,0.824875621890547,2543.36,911.31828321498,156.918152242735,754.400130972245,1012.11146838156,1209.203710862,1354.05063291139,1289.87799918666,59018.7602463125,195513.158943257,53485.0092855919,198238.159416347,255,58.3125101236997,467,161.687528070751,215,39.5000068576401,329,51,"1000-04-01","0999-07-01",9,0,"123466-0850.its",117.498,16.4375028537331,55.1875095811649,-0.679042111425646
-"bergelson 33 123467-0955","bergelson","bergelson 33",37160800,266.79727024176,NA,0.735422779915938,0.81495296788842,6349.49,2204.20367699296,586.082108027814,1618.12156896515,1130.35907723169,1201.34721371709,1620.11802575107,1494.6804647785,NA,190051.882629007,146278.336311382,398776.66788659,NA,NA,NA,158.19896234742,353,90.2886913091214,743,NA,"1000-10-01","0999-07-01",15,5033520,"123467-0955.its",107.302,NA,NA,-0.167310095216945
+"bergelson 33 123467-0955","bergelson","bergelson 33",37160800,266.79727024176,NA,0.735422779915938,0.81495296788842,6349.49,2204.20367699296,586.082108027814,1618.12156896515,1130.35907723169,1201.34721371709,1620.11802575107,1494.6804647785,NA,190051.882629007,146278.336311382,398776.66788659,NA,NA,NA,158.19896234742,353,90.2886913091214,743,NA,"1000-10-01","0999-07-01",15,5033520,"123467-0955.its",107.302,NA,NA,-0.167310095216944
 "bergelson 30 123468-0833","bergelson","bergelson 30",57599990,217.750037803826,198,0.49037320267458,0.54973474801061,5425.4,1923.7922089917,496.15321113771,1427.63899785399,1117.27601156069,1057.1408045977,1461.12612612613,1596.78817451206,96644.3917785402,45985.6329836168,121638.771117842,347700.685364702,338,86.5000150173637,101,43.5000075520846,320,83.2500144531275,525,80,"1000-05-01","0999-07-01",9,0,"123468-0833.its",104.313,23.6875041124139,54.0000093750016,-0.679042111425646
 "bergelson 27 123469-0956","bergelson","bergelson 27",57599990,202.312535123704,217,0.559932921815278,0.602602230483271,3524.21,1330.03335590857,101.518142624678,1228.51521328389,959.473684210526,1101.25061789422,1223.35347432024,1499.54896509113,148118.775715065,139239.399173507,25308.1293937725,303377.552669714,328,154.37502680122,504,126.437521950959,72,20.6875035915805,538,116,"1000-12-01","0999-07-01",17,0,"123469-0956.its",94.875,38.2500066406262,103.25001792535,0.00326724351928943
 "bergelson 7 123470-0964","bergelson","bergelson 7",57599990,116.562520236549,196,0.655704668472847,0.701298701298701,5223.17,1875.03720052729,NA,740.899503628386,1173.97435897436,1094.78260869565,1688.86807181889,1516.80428954424,108739.393878367,28327.5049179696,270430.046949661,176802.530694884,227,92.625016080732,59,25.8750044921883,408,160.125027799484,314,57,"1000-04-01","0999-07-01",9,0,"123470-0964.its",88.807,24.500004253473,72.7500126302105,-0.679042111425646
@@ -65,7 +65,7 @@
 "bergelson 44 123480-1196","bergelson","bergelson 44",40095360,125.879902312886,213,0.482911163489839,0.508204406938584,4841.64,947.213941962362,57.7610975434564,889.452844418905,1030.80763582966,1228.25471698113,1365.74626865672,NA,189083.824163195,257172.999569027,16431.7267633961,219927.991667864,505,183.432696451659,616,209.380836086769,64,12.0313173394627,542,53,"1000-04-01","0999-07-01",9,63986583,"123480-1196.its",94.191,16.2512570033041,98.4951874730642,-0.679042111425646
 "bergelson 13 123481-1208","bergelson","bergelson 13",44742240,108.541727012327,220,0.512502102548732,0.55741127348643,3592.15,1075.40954587879,464.684915194233,610.724630684561,990.424107142857,1213.33651096282,1516.36269430052,1421.05263157895,71402.5940587686,102409.803353609,117737.600978404,154243.50680699,290,72.0929484084838,293,84.4034630362718,292,77.6447491229764,406,41,"1000-05-01","0999-07-01",9,0,"123481-1208.its",92.077,13.19558430691,44.0925621962602,-0.679042111425646
 "bergelson 1 123482-1227","bergelson","bergelson 1",57599990,100.625017469621,133,0.522844958079515,0.595272206303725,2008.26,874.324526792453,387.794442325424,486.530084467029,1003.39203675345,1060.67535545024,1506.67820069204,1289.52173913043,81901.889219078,55950.6347136519,108857.518898875,129758.147527456,187,81.6250141710094,181,52.7500091579877,169,72.2500125434049,212,52,"1000-02-01","0999-07-01",7,0,"123482-1227.its",93.608,18.3750031901047,54.0625093858523,-0.84961945016188
-"bergelson 4 123483-1234","bergelson","bergelson 4",46066300,130.97644047818,178,0.585171511957735,0.679824561403509,3461.44,1240.52741374931,501.106014592012,739.421399157301,986.132376395534,1135.24752475248,1891.5606242497,1388.31145584726,96638.8878637963,80644.2887750916,123135.82814335,181836.092761954,244,97.9978856561087,273,71.0367448655525,283,65.0974790682126,312,62,"1000-10-01","0999-07-01",15,0,"123483-1234.its",75.677,24.0696561260618,76.8197141945413,-0.167310095216945
+"bergelson 4 123483-1234","bergelson","bergelson 4",46066300,130.97644047818,178,0.585171511957735,0.679824561403509,3461.44,1240.52741374931,501.106014592012,739.421399157301,986.132376395534,1135.24752475248,1891.5606242497,1388.31145584726,96638.8878637963,80644.2887750916,123135.82814335,181836.092761954,244,97.9978856561087,273,71.0367448655525,283,65.0974790682126,312,62,"1000-10-01","0999-07-01",15,0,"123483-1234.its",75.677,24.0696561260618,76.8197141945413,-0.167310095216944
 "bergelson 32 123484-1238","bergelson","bergelson 32",57599990,144.312525054258,218,0.403014742500673,0.462928637627433,4929.17,1180.11770488155,389.875692686752,790.242012194794,1233.55363497712,1052.80446927374,1626.08082706767,1466.23213512343,151650.02632813,58891.2602241771,108134.393773332,211595.661735358,402,122.93752134332,173,55.9375097113732,274,66.5000115451409,397,49,"1000-04-01","0999-07-01",9,0,"123484-1238.its",92.083,15.8125027452262,63.812511078561,-0.679042111425646
 "bergelson 45 123485-1306","bergelson","bergelson 45",40858680,70.3106414597828,175,0.511426759981177,0.608860759493671,1252.49,534.050732916482,164.891670509179,369.159062407302,1129.44214876033,1039.26411290323,1369.31707317073,1296.47869674185,144493.654714249,90835.5336002044,49465.9151984352,91156.2488068631,303,127.933648370432,165,87.4037046718102,86,36.124515035728,166,28,"1000-10-01","0999-06-01",16,0,"123485-1306.its",76.781,14.5379145875491,86.3464017927158,-0.0820214258488275
 "bergelson 10 123486-1310","bergelson","bergelson 10",57599990,199.812534689676,311,0.611569317904954,0.67191844300278,3001.18,1333.11523144362,140.183774337461,1192.93145710616,1041.07715430862,1213.73978042513,1390.54373522459,1465.76477948076,129874.397547638,324751.306380435,36762.5063823796,292878.175846906,418,124.75002165799,513,267.562546451831,142,26.4375045898445,359,89,"1000-09-01","0999-07-01",14,0,"123486-1310.its",107.052,29.5625051323794,94.5625164171036,-0.252598764585061
@@ -74,12 +74,12 @@
 "bergelson 27 123489-1345","bergelson","bergelson 27",57599990,NA,420,0.504986115396483,0.608644168146832,5450.35,2107.75536592975,141.308774532773,NA,1067.37985516787,1035.75136612022,1328.47133757962,1512.2591613147,202668.785185553,47385.6332266724,39106.8817893892,NA,525,189.875032964415,152,45.7500079427097,115,29.437505110678,644,193,"1000-11-01","0999-07-01",16,0,"123489-1345.its",97.16,67.3750116970506,132.437522992626,-0.0820214258488275
 "bergelson 13 123490-1395","bergelson","bergelson 13",43796300,237.883108847094,267,0.725656730727737,0.763665594855305,3278.68,1851.09061724392,731.623721638586,1119.46689560534,1068.30321727633,1150.51572327044,1385.25916561315,1425.47339322737,199248.064334202,150367.770793423,180136.860876375,339096.042359743,329,186.508906003475,285,130.695972034167,270,130.038382237769,660,106,"1000-09-01","0999-07-01",14,0,"123490-1395.its",94.558,55.9773314184075,161.849288638538,-0.252598764585061
 "bergelson 9 123491-1401","bergelson","bergelson 9",57599990,109.000018923614,360,0.621281202351178,0.710181451612903,2418.53,794.514512936547,138.485649042647,656.0288638939,1142.5156161272,1137.46639089969,1261.96601941748,1377.09288990826,125748.146831275,68745.6369350064,32495.6306416025,150103.151059575,424,110.062519108076,301,60.4375104926233,124,25.7500044704869,349,103,"1000-08-01","0999-07-01",13,0,"123491-1401.its",96.257,28.812505002171,90.0000156250027,-0.337887433953178
-"bergelson 31 123492-1403","bergelson","bergelson 31",57599990,52.1250090494807,447,0.619437295646978,0.656804733727811,3387.65,879.15202763056,594.008228126428,285.143799504132,1013.79670144732,1157.13310580205,1517.25761772853,1286.22302158273,188249.407682189,169520.029430561,136932.523773008,67044.3866396505,541,185.687532237419,396,146.500025434032,421,90.2500156684055,244,96,"1000-10-01","0999-07-01",15,0,"123492-1403.its",102.636,31.1875054144975,135.250023480907,-0.167310095216945
+"bergelson 31 123492-1403","bergelson","bergelson 31",57599990,52.1250090494807,447,0.619437295646978,0.656804733727811,3387.65,879.15202763056,594.008228126428,285.143799504132,1013.79670144732,1157.13310580205,1517.25761772853,1286.22302158273,188249.407682189,169520.029430561,136932.523773008,67044.3866396505,541,185.687532237419,396,146.500025434032,421,90.2500156684055,244,96,"1000-10-01","0999-07-01",15,0,"123492-1403.its",102.636,31.1875054144975,135.250023480907,-0.167310095216944
 "bergelson 11 123493-1405","bergelson","bergelson 11",50710800,97.3993705482856,519,0.713595093113139,0.763850027979854,2616.99,1209.26216900542,730.084242409901,479.177926595518,1120.49586776859,1035.561861521,1642.28403141361,1299.73760932945,259873.163113183,64767.0318748669,178145.010530301,126593.625026622,586,231.92692680849,170,62.5428902718947,278,108.473934546487,203,106,"1000-11-01","0999-07-01",16,0,"123493-1405.its",94.489,49.3386024278852,196.928464942379,-0.0820214258488275
 "bergelson 11 123494-1414","bergelson","bergelson 11",50807360,107.559219766585,229,0.599915022018967,0.671497584541063,2876.18,1350.79146013491,780.203970448376,570.587489686534,1316.30761766133,956.112469437653,1652.98943443132,1319.96706192358,192225.614556631,27708.1903094355,188452.539159681,141974.627298092,310,146.033960434079,77,28.9800532836188,219,114.0071044825,239,65,"1000-08-01","0999-07-01",13,0,"123494-1414.its",103.819,31.5308648195852,110.393454806548,-0.337887433953178
 "bergelson 20 123495-1416","bergelson","bergelson 20",57599990,105.750018359378,105,0.36817182375413,0.44954128440367,2215.29,1146.47332404051,563.611972849301,582.861351191207,1104.36018957346,1007.45341614907,1604.90847457627,1364.94680851064,87382.5151705756,30412.5052799488,147952.525686202,144343.150059575,181,79.1250137369816,101,30.1875052408863,263,92.1875160047771,254,29,"1000-01-01","0999-07-01",6,0,"123495-1416.its",105.247,12.6875022026914,37.7500065538206,-0.934908119529997
 "bergelson 46 123496-1427","bergelson","bergelson 46",40520800,275.058735266826,428,0.678912834728073,0.753051261187958,5356.74,2579.33841385165,845.259224891907,1734.07918895974,1167.03668861712,1077.27891156463,1536.11368142763,1528.12015503876,220430.79109988,56276.8750863754,206484.176028114,420322.797180707,411,188.88077234408,148,52.2398373181181,353,134.419853507334,422,91,"1000-04-01","0999-07-01",9,0,"123496-1427.its",116.715,53.3059564470593,166.58111389706,-0.679042111425646
-"bergelson 1 123497-1445","bergelson","bergelson 1",57599990,169.312529394536,354,0.750617122854735,0.830036439354503,3391.7,1564.85339667594,695.049495668315,869.803901007622,1149.04691649454,1072.17285453439,1582.37025147138,1416.16463639719,243382.542253914,110098.76911437,184840.657090392,239774.416627503,349,211.81253677301,234,102.687517827694,235,116.812520279951,413,124,"1000-10-01","0999-07-01",15,0,"123497-1445.its",120.248,64.62501121962,206.000035763895,-0.167310095216945
+"bergelson 1 123497-1445","bergelson","bergelson 1",57599990,169.312529394536,354,0.750617122854735,0.830036439354503,3391.7,1564.85339667594,695.049495668315,869.803901007622,1149.04691649454,1072.17285453439,1582.37025147138,1416.16463639719,243382.542253914,110098.76911437,184840.657090392,239774.416627503,349,211.81253677301,234,102.687517827694,235,116.812520279951,413,124,"1000-10-01","0999-07-01",15,0,"123497-1445.its",120.248,64.62501121962,206.000035763895,-0.167310095216944
 "bergelson 17 123498-1458","bergelson","bergelson 17",57599990,128.687522341584,294,0.550217654331974,0.673113386423967,4584.44,1129.43082108174,426.628824067504,702.801997014236,1039.89613626921,1129.6343001261,1372.39181746656,1389.47547353084,156439.402159618,55987.5097200538,109019.393926978,178808.156043083,331,150.437526117626,230,49.5625086046022,338,79.437513791235,435,176,"1000-08-01","0999-07-01",13,0,"123498-1458.its",92.886,41.0000071180568,112.687519563805,-0.337887433953178
 "bergelson 17 123499-1500","bergelson","bergelson 17",57599990,27.4375047634557,163,0.543250419100325,0.62621359223301,1680.81,482.219458718656,330.381307357866,151.83815136079,1003.24050632911,1035.71681415929,1436.34674922601,1305.80865603645,74302.5128997418,36573.7563496105,86988.7651022162,35828.1312201617,257,74.0625128580752,209,35.3125061306434,256,60.5625105143247,135,48,"1000-07-01","0999-07-01",11,0,"123499-1500.its",69.428,11.6250020182295,49.1250085286473,-0.508464772689412
 "bergelson 25 123500-1537","bergelson","bergelson 25",23416180,145.591637918738,356,0.681692625153307,0.728571428571429,4391.67,1185.14206843302,285.527186757191,899.614881675833,1148.22274881517,936.699029126214,1400.3768115942,1556.3252375924,148989.288603009,29665.6414496301,74276.3337145512,226587.940475347,410,129.756433372138,96,31.6704090931997,189,53.0402482386111,549,66,"1000-03-01","0999-07-01",7,16063900,"123500-1537.its",103.847,17.0651233463357,112.076350625935,-0.84961945016188
@@ -104,15 +104,15 @@
 "bergelson 35 123519-1862","bergelson","bergelson 35",38869490,86.5048653841355,160,0.72750972514508,0.71301775147929,1820.32,800.244098906366,394.253796486653,405.990302419713,1219.92234685073,998.518518518518,1489.61313012896,1280.66381156317,130951.139312607,24969.7127489967,117683.663973981,110783.650621606,173,107.343831884596,79,25.0067598005531,228,79.0028374439696,194,49,"1000-06-01","0999-07-01",11,0,"123519-1862.its",87.27,19.8201725826606,91.0431291997914,-0.508464772689412
 "bergelson 39 123520-1899","bergelson","bergelson 39",35149800,88.5922537254835,207,0.567471894679375,0.579766536964981,1687.14,592.831708857518,36.4539200792039,556.377788778314,1008.35758835759,1128.71546961326,1331.06060606061,1568.58959537572,99350.3234726798,83695.6113548299,8997.49073963436,138964.88742468,329,98.5268763975897,188,74.1512042742775,36,6.75964016864961,225,55,"1000-12-01","0999-07-01",17,0,"123520-1899.its",87.27,13.1096051755629,62.5778809552259,0.00326724351928943
 "bergelson 17 123521-1889","bergelson","bergelson 17",57599990,70.5000122395855,255,0.45570313467354,0.57280385078219,2210.05,518.183214962364,169.778779475483,348.404435486881,995.152335815843,1111.08713029576,1407.03781512605,1356.58687943262,91865.0159487875,86873.1400821424,41859.3822672539,95639.391604061,362,92.3125160264785,301,78.1875135742211,131,29.7500051649315,354,92,"1000-06-01","0999-07-01",11,0,"123521-1889.its",82.195,15.437502680122,61.125010611981,-0.508464772689412
-"bergelson 13 123522-1904","bergelson","bergelson 13",46973680,164.236653376955,369,0.562741091730394,0.641905889316366,3477.1,1348.00892755262,427.416885370701,920.59204218192,1138.41233766234,1143.41929321872,1338.73949579832,1403.55109659356,268718.908120462,91748.740997086,97674.4423685775,230514.534948082,464,236.047079981811,227,80.2406794613494,208,72.9600065398325,502,150,"1000-10-01","0999-07-01",15,0,"123522-1904.its",86.399,52.4208450349217,171.593964960804,-0.167310095216945
+"bergelson 13 123522-1904","bergelson","bergelson 13",46973680,164.236653376955,369,0.562741091730394,0.641905889316366,3477.1,1348.00892755262,427.416885370701,920.59204218192,1138.41233766234,1143.41929321872,1338.73949579832,1403.55109659356,268718.908120462,91748.740997086,97674.4423685775,230514.534948082,464,236.047079981811,227,80.2406794613494,208,72.9600065398325,502,150,"1000-10-01","0999-07-01",15,0,"123522-1904.its",86.399,52.4208450349217,171.593964960804,-0.167310095216944
 "bergelson 16 123523-1931","bergelson","bergelson 16",57599990,147.18752555339,258,0.667502167947637,0.665089379600421,4491.68,930.721411583578,105.088143244469,825.633268339109,1060.37982195846,1119.09259259259,1652.09125475285,1462.53503184713,111671.269387373,75538.7631143686,27156.2547146276,215266.912372728,313,105.312518283423,150,67.500011718752,141,16.4375028537331,673,81,"1000-06-01","0999-07-01",11,0,"123523-1931.its",101.283,27.8125048285599,81.1250140842038,-0.508464772689412
 "bergelson 1 123524-1982","bergelson","bergelson 1",57599990,92.4375160481799,254,0.538878138817646,0.632794457274827,3060.23,886.103903837483,412.740071656262,473.363832181221,966.639798488665,1048.7982832618,1518.38687150838,1329.39148073022,119923.770820099,45819.382954754,135895.648592995,122885.646334314,331,124.062521538632,121,43.6875075846367,162,89.5000155381971,377,49,"1000-03-01","0999-07-01",7,0,"123524-1982.its",125.891,19.3125033528652,88.4375153537353,-0.84961945016188
 "bergelson 11 123525-2016","bergelson","bergelson 11",42692800,218.060188134767,205,0.407370373405167,0.593295103661226,5206.62,NA,NA,1130.98274182064,1450.81066945607,973.786764705882,1709.40605590062,1358.67749419954,233908.762133193,22334.726230184,NA,296273.469999625,340,161.226248922535,51,22.9359517295656,407,NA,433,88,"1000-05-01","0999-07-01",9,0,"123525-2016.its",102.138,44.4384064760334,116.619195742608,-0.679042111425646
 "bergelson 41 123526-2024","bergelson","bergelson 41",57599990,168.187529199224,261,0.394865532515644,0.508417508417508,2495.25,1029.07142865823,90.7318907520644,938.33953790617,1254.34769417476,1178.93553223388,1177.02127659574,1386.28019323671,258395.669860359,147440.650597335,24202.5042018236,233155.040478306,479,206.000035763895,282,125.062521712243,64,20.5625035698791,388,75,"1000-11-01","0999-07-01",16,0,"123526-2024.its",87.677,35.4375061523448,116.062520149743,-0.0820214258488275
 "bergelson 36 123527-2048","bergelson","bergelson 36",43525110,111.328839835212,215,0.567364583783205,0.66015037593985,3356.62,930.743839590526,254.468282791244,676.275556799282,1044.57498646454,1248.58302333446,1613.37301587302,1532.75631500743,159576.575452652,305373.51887221,67255.5221572099,170639.982299872,290,152.766988986358,474,244.576061955961,216,41.6862817807927,327,67,"1000-06-01","0999-07-01",11,0,"123527-2048.its",89.337,23.8207324461673,112.238659477253,-0.508464772689412
-"bergelson 36 123528-2074","bergelson","bergelson 36",43724300,138.979926493963,317,0.437488566487959,0.555741827326069,2898.46,1574.95955338336,833.35509087624,741.604462507118,1141.1519497983,1196.04550804237,1400.06578947368,1396.77132701422,209615.156789245,251013.555391396,192736.670455559,194123.176357312,408,183.687331758313,505,209.869569095446,339,137.662581219139,357,91,"1000-11-01","0999-07-01",16,0,"123528-2074.its",76.296,37.9560107308751,113.04469139586,-0.0820214258488275
+"bergelson 36 123528-2074","bergelson","bergelson 36",43724300,138.979926493963,317,0.437488566487959,0.555741827326069,2898.46,1574.95955338336,833.35509087624,741.604462507118,1141.1519497983,1196.04550804237,1400.06578947368,1396.77132701422,209615.156789245,251013.555391396,192736.670455559,194123.176357312,408,183.687331758313,505,209.869569095446,339,137.662581219139,357,91,"1000-11-01","0999-07-01",16,0,"123528-2074.its",76.296,37.956010730875,113.04469139586,-0.0820214258488275
 "bergelson 13 123529-2075","bergelson","bergelson 13",47354300,50.5550710283966,95,0.290738309675015,0.411526794742164,1510.11,665.909875132776,412.232130978602,253.677744154174,1173.98671096346,NA,1371.02392344498,1317.98496240602,80592.3854855842,115114.276844975,108919.190020758,66630.8233887947,195,68.6484648701385,251,77.9992524438119,251,79.4436830446232,127,23,"1000-04-01","0999-07-01",9,0,"123529-2075.its",82.202,8.13442496246381,33.4499718082624,-0.679042111425646
-"bergelson 39 123530-2088","bergelson","bergelson 39",37315610,141.142004646313,82,0.439666048237477,0.561643835616438,3052.8,1147.28190159561,245.185754701585,902.096146894021,937.701149425287,1208.56102003643,1369.35960591133,1433.8961038961,31481.5167164626,192032.235303135,53635.8912530172,202382.970558434,133,33.5730810778653,286,158.89328889438,111,39.1685945908428,351,22,"1000-10-01","0999-07-01",15,0,"123530-2088.its",NA,6.27083410937139,21.4173103427761,-0.167310095216945
+"bergelson 39 123530-2088","bergelson","bergelson 39",37315610,141.142004646313,82,0.439666048237477,0.561643835616438,3052.8,1147.28190159561,245.185754701585,902.096146894021,937.701149425287,1208.56102003643,1369.35960591133,1433.8961038961,31481.5167164626,192032.235303135,53635.8912530172,202382.970558434,133,33.5730810778653,286,158.89328889438,111,39.1685945908428,351,22,"1000-10-01","0999-07-01",15,0,"123530-2088.its",NA,6.27083410937139,21.4173103427761,-0.167310095216944
 "bergelson 42 123531-2090","bergelson","bergelson 42",57599990,197.312534255648,274,0.480290143602851,0.554857776135944,3744.31,1201.25958355201,121.031271012373,1080.22831253964,1153.67472347399,1123.63390441839,1278.53785900783,1462.41685144124,176007.530556863,77881.8885211612,30605.005313369,288553.175096037,491,152.56252648655,162,69.3125120334222,97,23.9375041558167,598,80,"1000-05-01","0999-07-01",9,0,"123531-2090.its",79.85,29.9375051974835,96.2500167100723,-0.679042111425646
 "bergelson 4 123532-2101","bergelson","bergelson 4",44969740,213.263407793774,261,0.534147938518154,0.604500381388253,3094.48,1360.36837215425,71.6890068744004,1288.67936527985,1104.13098236776,1145.76848249027,1354.85549132948,1469.60585585586,210544.779667394,188582.811463887,18763.8176249184,313413.152933506,341,190.688227239028,586,164.590678087087,42,13.8493128935146,444,89,"1000-09-01","0999-07-01",14,0,"123532-2101.its",91.973,41.7080463440527,130.807961086722,-0.252598764585061
 "bergelson 16 123533-2191","bergelson","bergelson 16",57599990,165.687528765196,195,0.559404915773908,0.611494252873563,3772.53,1475.39650614523,527.072591505658,948.323914639569,1007.82253952065,1057.55571030641,1638.13178294574,1461.41078838174,123521.271444665,94915.64147841,132074.397929583,242137.542037768,303,122.562521278215,209,89.7500155815999,266,80.6250139973983,409,72,"1000-08-01","0999-07-01",13,0,"123533-2191.its",89.525,31.5625054796016,84.6875147026935,-0.337887433953178
@@ -123,11 +123,11 @@
 "bergelson 28 123538-2253","bergelson","bergelson 28",39712050,121.293159129282,109,0.459603197589353,0.509592326139089,1987.26,893.978628653016,186.259334383392,707.719294269623,1017.40740740741,1044.15167095116,1487.24137931034,1476.21076233184,72216.5690262779,73641.627667169,46918.1520470487,179054.266903874,187,70.9809742886605,183,70.5277113621684,147,31.5470996838491,300,32,"1000-08-01","0999-07-01",13,0,"123538-2253.its",109.539,13.4165826241657,41.2469263107797,-0.337887433953178
 "bergelson 23 123539-2242","bergelson","bergelson 23",57599990,59.5625103407136,205,0.50927601376181,0.577837595334231,2214.48,688.838244589973,376.988815449447,311.849429140526,1268.11886051081,1178.12654473554,1411.39369277721,1280.51416579223,161368.153015304,148959.400861007,86712.5150542561,76270.6382414302,374,127.250022092018,385,126.437521950959,197,61.4375106662345,160,42,"1000-01-01","0999-07-01",6,0,"123539-2242.its",93.683,15.3125026584206,81.5625141601587,-0.934908119529997
 "bergelson 44 123540-2261","bergelson","bergelson 44",57599990,68.6875119249153,235,0.514547121271602,0.538994000922935,1786.56,510.778838676882,17.2862530010856,493.492585675796,1091.06467661692,1222.73083623693,1172.03703703704,NA,137065.023796011,175461.905462136,3955.62568674057,123343.146413741,405,125.6250218099,447,143.500024913199,18,3.3750005859376,202,36,"1000-05-01","0999-07-01",9,0,"123540-2261.its",93.132,9.75000169270863,74.50001293403,-0.679042111425646
-"bergelson 44 123541-2307","bergelson","bergelson 44",33907430,168.281701090292,371,0.644124977511244,0.677908298597954,3176.39,1212.39692893269,58.7605725352821,1153.6363563974,1040.47993380223,1180.73679727428,1178.64,1718.7570977918,267004.134492057,294346.460348071,15642.2353448787,289235.368177417,529,256.616322735165,431,249.290494738174,54,13.2714275307801,334,77,"1000-10-01","0999-07-01",15,0,"123541-2307.its",118.646,40.4513111138178,197.903527338993,-0.167310095216945
+"bergelson 44 123541-2307","bergelson","bergelson 44",33907430,168.281701090292,371,0.644124977511244,0.677908298597954,3176.39,1212.39692893269,58.7605725352821,1153.6363563974,1040.47993380223,1180.73679727428,1178.64,1718.7570977918,267004.134492057,294346.460348071,15642.2353448787,289235.368177417,529,256.616322735165,431,249.290494738174,54,13.2714275307801,334,77,"1000-10-01","0999-07-01",15,0,"123541-2307.its",118.646,40.4513111138178,197.903527338993,-0.167310095216944
 "bergelson 22 123542-2318","bergelson","bergelson 22",41746300,122.712671542149,288,0.563330181648222,0.653928571428571,2345.05,1023.27794319497,323.139631536208,700.138311658758,1320.0312622118,1082.90669856459,1435.36697247706,1365.50245959241,291299.013325732,78069.577423628,80951.5573835286,167564.45481396,381,220.675844326324,184,72.092616591171,161,56.3978125007486,218,87,"1000-08-01","0999-07-01",13,0,"123542-2318.its",99.136,32.2519600539449,160.224978022004,-0.337887433953178
 "bergelson 30 123543-2330","bergelson","bergelson 30",57599990,169.875029492193,304,0.755190069969374,0.77191732002851,NA,1688.81466819699,451.533203391181,1237.28146480581,950.275650842266,1051.44628099174,1387.54320060105,1712.70419426049,77566.2634663652,31806.2555219194,115426.270039283,290945.675511402,382,81.6250141710094,124,30.250005251737,276,83.1875144422768,NA,121,"1000-11-01","0999-07-01",16,0,"123543-2330.its",98.539,29.1250050564245,69.8750121310785,-0.0820214258488275
 "bergelson 15 123544-2345","bergelson","bergelson 15",57599990,163.500028385422,407,0.543171837252666,0.640102171136654,3166.05,1038.62768031731,49.9825086775189,988.645171639787,1174.01709401709,1112.55649091715,1192.36363636364,1498.76911314985,257550.044713549,156940.027246532,12296.252134766,245048.792543193,461,219.375038085944,357,141.062524490022,39,10.3125017903649,463,98,"1000-06-01","0999-07-01",11,0,"123544-2345.its",96.601,37.250006467015,158.812527571619,-0.508464772689412
-"bergelson 18 123545-2348","bergelson","bergelson 18",41530180,212.635726596899,264,0.380502900492464,0.495554238292828,3384.57,2112.84497201794,878.252297485828,1234.59267453211,1140.99402327776,1142.54514909702,1431.24650642817,1379.87770077456,314421.753048024,235815.014526785,221954.251101247,293411.297519057,714,275.56827348208,683,206.394482277707,385,155.077584542133,363,100,"1000-10-01","0999-07-01",15,0,"123545-2348.its",87.28,52.8772088153723,148.489604427431,-0.167310095216945
+"bergelson 18 123545-2348","bergelson","bergelson 18",41530180,212.635726596899,264,0.380502900492464,0.495554238292828,3384.57,2112.84497201794,878.252297485828,1234.59267453211,1140.99402327776,1142.54514909702,1431.24650642817,1379.87770077456,314421.753048024,235815.014526785,221954.251101247,293411.297519057,714,275.56827348208,683,206.394482277707,385,155.077584542133,363,100,"1000-10-01","0999-07-01",15,0,"123545-2348.its",87.28,52.8772088153723,148.489604427431,-0.167310095216944
 "bergelson 33 123546-2379","bergelson","bergelson 33",48073800,79.3779563920472,232,0.499662772453734,0.622649223221586,892.91,498.198519775845,125.911411205272,372.287108570573,1110.20347604917,899.619565217391,1228.62619808307,1135.55660377358,196121.213634038,12395.6916241279,28797.7235001186,90138.1625750409,366,176.653395404565,34,13.7788150718271,84,23.4389625950102,129,38,"1000-06-01","0999-07-01",11,0,"123546-2379.its",76.956,18.7961009947206,114.798497310385,-0.508464772689412
 "bergelson 21 123547-2405","bergelson","bergelson 21",50905800,91.5102011951487,171,0.411270240242791,0.509106310885218,2043.51,722.655493087232,264.15968317952,458.495809907712,1254.57422056771,1220.75630252101,1564.19881305638,1291.14374034003,190663.696474665,51366.6419150667,74556.7695626039,118152.823450373,266,151.974824086843,209,42.0777200240444,114,47.6645097415226,237,46,"1000-04-01","0999-07-01",9,407388080,"123547-2405.its",86.164,15.1338354372193,86.2770057635869,-0.679042111425646
 "bergelson 37 123548-2410","bergelson","bergelson 37",57599990,96.4375167426244,317,0.590676220239804,0.676512455516014,2035.78,730.840126881967,186.800032430561,544.040094451405,1160.65200617284,1164.89491525424,1497.1772428884,1401.51004536617,188025.657643343,107388.768643883,42763.1324241549,135158.148464956,389,162.000028125005,360,92.1875160047771,181,28.5625049587682,295,82,"1000-12-01","0999-07-01",17,0,"123548-2410.its",103.807,29.8750051866328,121.812521148007,0.00326724351928943
@@ -149,7 +149,7 @@
 "bergelson 34 123564-2744","bergelson","bergelson 34",57599990,40.9375071072061,216,0.606053890480704,0.655084312723556,2606.78,353.989436456499,117.209395348853,236.780041107646,1267.58640890451,1062.71144278607,1397.98076923077,1590.19847328244,135235.648478411,53401.259271052,27260.6297327482,65098.7613018683,281,106.687518522139,173,50.2500087239598,139,19.5000033854173,193,27,"1000-04-01","0999-07-01",9,0,"123564-2744.its",NA,7.25000125868077,81.5625141601587,-0.679042111425646
 "bergelson 11 123565-2755","bergelson","bergelson 11",44498430,203.95326307018,361,0.720031572964154,0.723887375113533,NA,2479.81279339518,NA,1095.30183424449,1148.37894736842,1007.62376237624,1872.73238218764,1361.56683855613,88260.5521138611,24700.1073970475,NA,277695.999611672,338,76.8566441557601,83,24.513224399153,451,NA,616,66,"1000-01-01","0999-07-01",6,520,"123565-2755.its",121.137,22.6524845932767,66.8248295501661,-0.934908119529997
 "bergelson 2 123566-2756","bergelson","bergelson 2",57599990,163.250028342019,267,0.611208226350723,0.705078125,2997.35,1170.78520326132,274.225047608515,896.560155652805,960.42395336513,1128.59145952836,1416.72456575682,1407.29709035222,113270.019664934,110672.519213979,71367.5123901931,229741.289885641,350,117.937520475264,299,98.0625170247425,168,50.3750087456612,419,70,"1000-10-01","0999-06-01",16,0,"123566-2756.its",87.915,30.5625053059905,91.3125158528673,-0.0820214258488275
-"bergelson 17 123567-2777","bergelson","bergelson 17",57599990,162.000028125005,305,0.575611955502965,0.649036991745644,2927.32,1263.04771927912,246.001292708558,1017.04642657056,941.254980079681,1102.05309734513,1300.76071922545,1517.15663580247,177191.280762375,116748.770268884,58778.1352045374,245779.417670038,440,188.250032682297,333,105.93751839193,255,45.1875078450534,422,127,"1000-10-01","0999-07-01",15,0,"123567-2777.its",98.529,52.2500090711821,135.375023502608,-0.167310095216945
+"bergelson 17 123567-2777","bergelson","bergelson 17",57599990,162.000028125005,305,0.575611955502965,0.649036991745644,2927.32,1263.04771927912,246.001292708558,1017.04642657056,941.254980079681,1102.05309734513,1300.76071922545,1517.15663580247,177191.280762375,116748.770268884,58778.1352045374,245779.417670038,440,188.250032682297,333,105.93751839193,255,45.1875078450534,422,127,"1000-10-01","0999-07-01",15,0,"123567-2777.its",98.529,52.2500090711821,135.375023502608,-0.167310095216944
 "bergelson 16 123568-2779","bergelson","bergelson 16",57599990,132.937523079431,114,0.393707195961749,0.531687242798354,3422.5,1119.21019430733,352.368186175032,766.842008132293,1230.65040650407,1172.99615877081,NA,1510.49835448989,85145.6397822291,57256.8849404314,91136.8908223769,200801.909861443,190,69.1875120117208,146,48.8125084743938,148,36.3750063151053,386,46,"1000-11-01","0999-07-01",16,0,"123568-2779.its",80.476,16.062502788629,42.7500074218763,-0.0820214258488275
 "bergelson 43 123569-2795","bergelson","bergelson 43",38401490,298.957149839759,153,0.303893692647063,0.428181321682141,3306.78,2410.69802239444,717.228107555202,1693.46991483924,NA,1014.5145631068,1569.25,1445.3276889307,234463.402331524,39184.1045751089,194187.152633921,432091.046467207,336,154.587751673177,71,38.6235013276829,283,123.745198428498,420,60,"1000-01-01","0999-07-01",6,68319900,"123569-2795.its",97.923,31.0300459695705,77.5282417427032,-0.934908119529997
 "bergelson 44 123570-2798","bergelson","bergelson 44",57599990,40.750007074654,182,0.635301322720048,0.66641957005189,1544.97,278.070673276159,36.6543813636079,241.416291912551,1121.40016570008,1176.31275720165,1317.98319327731,1550.75153374233,84595.639686743,89326.2655080322,9802.50170182321,63193.1359710305,224,75.4375130967905,238,75.937513183596,30,7.43750129123286,217,26,"1000-01-01","0999-07-01",6,0,"123570-2798.its",93.025,5.56250096571197,56.6250098307309,-0.934908119529997
@@ -162,14 +162,14 @@
 "bergelson 23 123577-2882","bergelson","bergelson 23",57599990,93.3125162000896,193,0.494669427948727,0.547131147540984,6997.88,1291.56147422942,822.945142872421,468.616331357002,1152.96132596685,1125.55230431602,1614.04870624049,1285.35833891494,130428.772643884,96164.3916952069,198830.659519212,119940.02082292,328,113.12501963976,217,85.4375148329019,NA,123.187521386722,296,38,"1000-02-01","0999-07-01",7,0,"123577-2882.its",114.602,17.500003038195,69.3750120442729,-0.84961945016188
 "bergelson 30 123578-2902","bergelson","bergelson 30",57599990,252.500043836813,130,0.498622154907653,0.556184316895715,NA,2405.84354268117,678.696992829339,1727.14654985183,993.776223776224,1072.29707792208,1487.95744680851,1650.20297029703,71055.0123359396,82566.8893345294,174835.030353304,416676.322339639,221,71.5000124131966,400,77.0000133680579,439,117.500020399309,748,92,"1000-03-01","0999-07-01",7,0,"123578-2902.its",111.864,23.5000040798618,45.1250078342027,-0.84961945016188
 "bergelson 14 123579-2927","bergelson","bergelson 14",57599990,174.437530284293,286,0.671268455916933,0.691959229898075,3441.78,1095.21019014066,107.451893654843,987.758296485815,985.010386373079,1062.11538461538,1315.06172839506,1451.52633464708,148182.525726133,96652.5167799508,26630.0046232647,253200.668958449,335,150.437526117626,253,91.0000157986139,78,20.2500035156256,452,83,"1000-08-01","0999-07-01",13,0,"123579-2927.its",109.45,32.7500056857649,118.062520496965,-0.337887433953178
-"bergelson 32 123580-2941","bergelson","bergelson 32",57599990,91.5000158854194,154,0.479272711896019,0.606182795698925,3050.09,773.399509270748,275.80129788217,497.598211388578,1213.38855421687,1040.45988258317,1621.72595520422,1421.70765027322,100711.267484595,66459.3865380879,76930.6383560136,130086.272584422,241,83.0000144097247,144,63.8750110894117,172,47.4375082356785,271,50,"1000-10-01","0999-07-01",15,0,"123580-2941.its",86.6,14.2500024739588,60.3750104817727,-0.167310095216945
+"bergelson 32 123580-2941","bergelson","bergelson 32",57599990,91.5000158854194,154,0.479272711896019,0.606182795698925,3050.09,773.399509270748,275.80129788217,497.598211388578,1213.38855421687,1040.45988258317,1621.72595520422,1421.70765027322,100711.267484595,66459.3865380879,76930.6383560136,130086.272584422,241,83.0000144097247,144,63.8750110894117,172,47.4375082356785,271,50,"1000-10-01","0999-07-01",15,0,"123580-2941.its",86.6,14.2500024739588,60.3750104817727,-0.167310095216944
 "bergelson 36 123581-2948","bergelson","bergelson 36",41776930,229.131245402666,206,0.534396426119045,0.577602230483271,5201.98,1731.01202027052,195.088150326029,1535.92386994449,1035.5134041477,1116.09403254973,1388.02850356295,1642.77924031591,176412.101128542,159556.00375614,50355.4473725092,376412.05325523,366,170.36196771759,268,142.959283987598,150,36.2783957557437,631,73,"1000-04-01","0999-07-01",9,0,"123581-2948.its",105.62,30.5910463023492,108.749015305816,-0.679042111425646
-"bergelson 46 123582-2957","bergelson","bergelson 46",39114490,174.503106137904,354,0.632360346804677,0.783890845070423,2580.26,1304.66750301487,353.979918950752,950.687584064115,1176.34251755808,1021.95335276968,1388.1954887218,1417.63185654008,200403.379923911,64523.8120195355,84964.4211135055,247381.162326289,341,170.361418492226,125,63.1377272207819,101,61.2049396527987,428,135,"1000-10-01","0999-07-01",15,0,"123582-2957.its",107.837,52.3693393420188,168.704743433955,-0.167310095216945
+"bergelson 46 123582-2957","bergelson","bergelson 46",39114490,174.503106137904,354,0.632360346804677,0.783890845070423,2580.26,1304.66750301487,353.979918950752,950.687584064115,1176.34251755808,1021.95335276968,1388.1954887218,1417.63185654008,200403.379923911,64523.8120195355,84964.4211135055,247381.162326289,341,170.361418492226,125,63.1377272207819,101,61.2049396527987,428,135,"1000-10-01","0999-07-01",15,0,"123582-2957.its",107.837,52.3693393420188,168.704743433955,-0.167310095216944
 "bergelson 25 123583-2970","bergelson","bergelson 25",37015430,52.7131523259354,367,0.798947006981802,0.819725141471301,612.52,247.88505766379,41.465410505835,206.419647157955,1167.18974358974,1279.13223140496,1298.4693877551,1172.34317343173,110679.141104129,120423.293745338,12375.9199879618,61797.9042793775,302,94.8253201435185,200,94.1445229732574,34,9.53116038365622,155,35,"1000-07-01","0999-07-01",11,0,"123583-2970.its",115.319,10.1147008153086,100.85523793726,-0.508464772689412
 "bergelson 35 123584-2973","bergelson","bergelson 35",43294610,140.192970903306,202,0.506656293160981,0.622679045092838,2792.27,1309.22357309605,580.962664867521,728.26090822853,1182.95487627365,909.81288981289,1843.44705882353,1364.60854092527,135152.343444138,36388.6405259223,260584.308300733,191308.525472339,308,114.249787675648,169,39.9957408093063,283,141.357088099419,352,78,"1000-03-01","0999-07-01",7,0,"123584-2973.its",86.931,24.7790660315453,92.7967707758541,-0.84961945016188
 "bergelson 36 123585-2984","bergelson","bergelson 36",42777610,182.534741889507,306,0.476355362290212,0.588524590163934,2305.54,1087.67394905887,110.795811173181,976.878137885684,1216.44324324324,1146.7505634861,1351.81818181818,1410.92208390964,284080.106392106,256899.345241588,30033.6554566746,257542.298412651,448,233.533383468595,448,224.023735781405,58,22.2172299948501,363,44,"1000-09-01","0999-07-01",14,0,"123585-2984.its",89.939,25.4993207895439,157.961139016415,-0.252598764585061
-"bergelson 14 123586-3024","bergelson","bergelson 14",57599990,203.75003537327,176,0.532329129311107,0.6264,3693.06,1533.19214117919,295.36692627898,1237.82521490021,1041.14478114478,1084.12271805274,1348.82701421801,1509.38036809816,77305.0134210093,133618.148197595,71150.6373525412,307536.303391719,247,74.2500128906272,314,123.250021397573,151,52.7500091579877,472,69,"1000-10-01","0999-07-01",15,0,"123586-3024.its",99.68,19.6250034071186,53.2500092447933,-0.167310095216945
-"bergelson 29 123587-3048","bergelson","bergelson 29",41636300,180.967088814328,318,0.569121285745161,0.625827814569536,2411.52,1194.79002697166,205.461196119732,989.328830851925,1176.15698729583,1077.6455906822,1273.26488706366,1340.98901098901,224133.748676035,111998.136241693,53613.9858729042,242674.877450686,401,190.564483395499,313,103.928543122227,131,42.1074879372086,376,112,"1000-10-01","0999-07-01",15,0,"123587-3048.its",94.257,41.7616358802295,134.449987150635,-0.167310095216945
+"bergelson 14 123586-3024","bergelson","bergelson 14",57599990,203.75003537327,176,0.532329129311107,0.6264,3693.06,1533.19214117919,295.36692627898,1237.82521490021,1041.14478114478,1084.12271805274,1348.82701421801,1509.38036809816,77305.0134210093,133618.148197595,71150.6373525412,307536.303391719,247,74.2500128906272,314,123.250021397573,151,52.7500091579877,472,69,"1000-10-01","0999-07-01",15,0,"123586-3024.its",99.68,19.6250034071186,53.2500092447933,-0.167310095216944
+"bergelson 29 123587-3048","bergelson","bergelson 29",41636300,180.967088814328,318,0.569121285745161,0.625827814569536,2411.52,1194.79002697166,205.461196119732,989.328830851925,1176.15698729583,1077.6455906822,1273.26488706366,1340.98901098901,224133.748676035,111998.136241693,53613.9858729042,242674.877450686,401,190.564483395499,313,103.928543122227,131,42.1074879372086,376,112,"1000-10-01","0999-07-01",15,0,"123587-3048.its",94.257,41.7616358802295,134.449987150635,-0.167310095216944
 "bergelson 9 123588-3063","bergelson","bergelson 9",57599990,81.6875141818601,374,0.761066446102888,0.807002561912895,3038.55,534.23009274828,98.2093920502417,436.020700698038,1145.75714285714,1075.47244094488,1269.64856230032,1452.31828615149,150380.651107752,51219.3838922541,24837.5043120667,118636.270596575,393,131.250022786462,177,47.6250082682306,79,19.5625033962679,491,107,"1000-09-01","0999-07-01",14,0,"123588-3063.its",97.04,25.0625043511292,119.750020789934,-0.252598764585061
 "bergelson 20 123589-3068","bergelson","bergelson 20",57599990,59.3750103081615,179,0.342698009927452,0.388634280476627,3299.48,825.065143240476,475.113207484932,349.951935755544,1080.54846938776,1021.56646909399,1491.23946037099,1353.64210526316,211787.53676867,75404.3880910396,110538.14419065,80372.5139535614,468,196.000034027784,175,73.8125128146724,377,74.1250128689259,139,74,"1000-09-01","0999-07-01",14,0,"123589-3068.its",76.569,24.3750042317716,80.1875139214434,-0.252598764585061
 "bergelson 44 123590-3108","bergelson","bergelson 44",39724680,100.954872386637,510,0.611454641168853,0.651248843663275,2415.04,876.89184658001,327.029443660717,549.862402919294,1129.51813471503,1272.56794013391,1422.20640569395,1371.7684021544,197557.085418939,292809.910614761,72433.7615809618,138486.703983519,603,174.903863291032,510,230.093735179239,224,50.9305550101348,200,74,"1000-02-01","0999-07-01",7,0,"123590-3108.its",101.786,19.6653566498207,130.679466769776,-0.84961945016188
@@ -182,7 +182,7 @@
 "bergelson 41 123597-3405","bergelson","bergelson 41",57599990,156.500027170144,167,0.402014793219599,0.492929292929293,3089.03,960.563916764569,89.0231404554063,871.540776309163,1265.86112629852,1113.92542372881,1142.15873015873,1385.5071884984,144703.775122183,102690.017828128,22486.2539038635,216831.912644429,308,114.312519845924,273,92.1875160047771,50,19.6875034179693,499,69,"1000-07-01","0999-07-01",11,0,"123597-3405.its",82.194,20.8750036241326,62.562510861547,-0.508464772689412
 "bergelson 1 123598-3439","bergelson","bergelson 1",57599990,148.250025737852,341,0.642589467790082,0.721696171263895,3150.67,1585.5615252711,840.537020926566,745.024504344532,1113.34548769371,1081.5130190007,1750.83410997204,1297.06998313659,152667.526504779,96051.8916756756,234830.665769213,192290.658383795,412,137.125023806428,212,88.8125154188395,357,134.125023285594,296,95,"1000-05-01","0999-07-01",9,0,"123598-3439.its",116.372,34.7500060329872,111.437519346792,-0.679042111425646
 "bergelson 40 123599-3447","bergelson","bergelson 40",57599990,99.1250172092044,411,0.487159003252093,0.592263334935127,1721.62,555.16072138207,66.6293865676018,488.531334814468,1228.77681805517,1162.82832127903,1814.50549450549,1354.41361916772,275630.047852439,190921.908146165,20640.003583334,134256.273308381,521,224.312538943149,478,164.187528504779,53,11.3750019748267,282,57,"1000-08-01","0999-07-01",13,0,"123599-3447.its",78.354,24.5625042643237,157.187527289501,-0.337887433953178
-"bergelson 7 123600-3455","bergelson","bergelson 7",39124550,267.208185142066,301,0.643868450565296,0.717218265605362,6515.42,NA,NA,1709.56373939125,1151.16835326587,964.366666666667,1534.14885193983,1500.05165289256,230277.511179042,26620.5234309404,NA,400826.079788777,304,200.038083505114,50,27.6041513576514,410,NA,602,146,"1000-10-01","0999-07-01",15,0,"123600-3455.its",86.258,68.734336880552,159.459981009366,-0.167310095216945
+"bergelson 7 123600-3455","bergelson","bergelson 7",39124550,267.208185142066,301,0.643868450565296,0.717218265605362,6515.42,NA,NA,1709.56373939125,1151.16835326587,964.366666666667,1534.14885193983,1500.05165289256,230277.511179042,26620.5234309404,NA,400826.079788777,304,200.038083505114,50,27.6041513576514,410,NA,602,146,"1000-10-01","0999-07-01",15,0,"123600-3455.its",86.258,68.734336880552,159.459981009366,-0.167310095216944
 "bergelson 2 123601-3483","bergelson","bergelson 2",57599990,195.125033875874,363,0.725599082075393,0.775725593667546,4022.8,1334.44273167409,240.81379180795,1093.62893986614,1138.32824427481,1130.06932409012,1486.25603864734,1445.22741832159,93200.6411806669,81506.2641503931,76913.7633530839,282000.048958342,340,81.8750142144122,250,72.1250125217036,190,51.7500089843766,506,151,"1000-01-01","0999-06-01",7,0,"123601-3483.its",102.115,30.5000052951398,75.6875131401933,-0.84961945016188
 "bergelson 43 123602-3489","bergelson","bergelson 43",47250360,229.179206253667,312,0.603316799170932,0.661661341853035,3656.9,1807.57251373323,535.868679095778,1271.70383463745,1058.65993734772,965.005586592179,1509.35,1378.28457446809,231733.853456355,65803.6891147496,137996.662882569,315874.164768268,380,218.893570334702,114,68.1899566479493,188,91.4278748352394,474,86,"1000-12-01","0999-07-01",17,0,"123602-3489.its",74.575,57.4471813548087,160.836869814325,0.00326724351928943
 "bergelson 25 123603-3511","bergelson","bergelson 25",42153490,105.130085314407,252,0.655688591576869,0.704869857262804,1106.21,558.791597089589,46.9942583638982,511.79733872569,1157.45146839224,1066.92063492063,1243.58778625954,1330.25182778229,198587.40047384,28701.9651279171,13912.8693733307,139849.488144398,290,171.572982450563,92,26.9016871438166,27,11.1876857645713,208,37,"1000-06-01","0999-07-01",11,0,"123603-3511.its",104.124,21.0089366265996,145.696121483654,-0.508464772689412
@@ -199,7 +199,7 @@
 "bergelson 11 123614-3749","bergelson","bergelson 11",44120430,147.441899364988,168,0.76261024986006,0.815179198875615,5454.78,1935.2724350148,NA,743.648146674908,1055.60693641618,1036.40909090909,1613.56332703214,1257.99667957941,119206.816434019,18604.4424317714,NA,185481.419832037,191,112.927276547395,54,17.9508676592681,483,NA,353,121,"1000-09-01","0999-07-01",14,0,"123614-3749.its",83.442,39.410313997393,95.7923574180941,-0.252598764585061
 "bergelson 30 123615-3758","bergelson","bergelson 30",57599990,107.375018641496,69,0.800362070041825,0.758474576271186,2709.1,902.304531650092,229.883164910272,672.421366739821,929.238095238095,1078.94285714286,1382.22222222222,1492.10710128056,12196.2521174049,23601.8790975485,59867.510393665,160215.027815109,81,13.1250022786462,113,21.8750037977437,126,43.3125075195326,324,29,"1000-07-01","0999-07-01",11,246610580,"123615-3758.its",NA,5.87500101996546,11.6875020290802,-0.508464772689412
 "bergelson 8 123616-3777","bergelson","bergelson 8",57599990,191.812533300787,138,0.722434066299077,0.690782953419227,4361.05,2218.38226013581,NA,1121.29206966876,993.17697228145,945.941176470588,1577.45833333333,1461.90289996742,58225.0101085087,10050.6267449005,NA,280411.298682517,170,58.6250101779532,28,10.6250018446184,452,NA,333,67,"1000-03-01","0999-07-01",7,0,"123616-3777.its",81.951,23.8125041341153,45.6250079210083,-0.84961945016188
-"bergelson 34 123617-3778","bergelson","bergelson 34",24832490,122.355833023591,222,0.583823104647804,0.685090909090909,2858.97,1285.90326624515,605.975961331304,679.927304913845,1225.16313213703,1099.6091954023,1594.16938110749,1377.60663507109,217754.240513134,69344.1535665574,141900.872606815,168558.20741295,263,177.734894889719,114,63.0625442716377,173,89.0124188110012,225,79,"1000-10-01","0999-07-01",15,0,"123617-3778.its",79.62,46.3908371653427,143.811595212562,-0.167310095216945
+"bergelson 34 123617-3778","bergelson","bergelson 34",24832490,122.355833023591,222,0.583823104647804,0.685090909090909,2858.97,1285.90326624515,605.975961331304,679.927304913845,1225.16313213703,1099.6091954023,1594.16938110749,1377.60663507109,217754.240513134,69344.1535665574,141900.872606815,168558.20741295,263,177.734894889719,114,63.0625442716377,173,89.0124188110012,225,79,"1000-10-01","0999-07-01",15,0,"123617-3778.its",79.62,46.3908371653427,143.811595212562,-0.167310095216944
 "bergelson 4 123618-3798","bergelson","bergelson 4",39835800,236.862319822873,442,0.641548315698633,0.73073476702509,3467.2,1548.45420450951,98.9381410690886,1449.51606344042,1160.27066929134,1088.04159445407,1252.95454545455,1509.96566196108,213064.931543988,113469.793502327,29892.9103971804,357653.969544982,486,183.633816818038,195,104.288102661425,126,23.85793683069,517,100,"1000-08-01","0999-07-01",13,0,"123618-3798.its",92.524,41.9321313993945,151.281008540057,-0.337887433953178
 "bergelson 2 123619-3832","bergelson","bergelson 2",57599990,144.50002508681,283,0.539880896912709,0.64547134935305,4799.48,1391.45274157166,611.368856140426,780.08388543123,1356.53349979193,1096.6341991342,1494.80563380282,1393.66349480969,203734.410370557,63330.6359949021,165830.028789936,201384.409962571,305,150.187526074223,155,57.7500100260434,409,110.937519259986,406,74,"1000-05-01","0999-06-01",10,0,"123619-3832.its",101.041,31.1250054036468,111.750019401045,-0.593753442057529
 "bergelson 4 123620-3895","bergelson","bergelson 4",48145860,263.050654822658,325,0.494100051187988,0.62097036795832,3341.27,1758.3358569148,167.164279545531,1591.17157736927,1230.08243727599,1102.73980154355,1501.92743764172,1476.33598635588,256614.961286391,149573.234334167,49525.7536161988,388351.147949169,402,208.616067923597,285,135.637830542439,118,32.9747978330847,537,72,"1000-03-01","0999-07-01",7,0,"123620-3895.its",96.883,48.82662808391,145.657383625508,-0.84961945016188
@@ -212,13 +212,13 @@
 "bergelson 43 123627-4051","bergelson","bergelson 43",47892800,197.841846791167,225,0.629034071464569,0.636901825357671,2436.41,1407.55453846925,290.810226171784,1116.74431229746,1145.86260330579,1033.17803660566,1409.9173553719,1422.57598784195,166751.662045234,46674.7402532322,76941.8367687836,281445.060635419,304,145.52500584639,111,45.1758928273143,129,54.5718771923964,341,70,"1000-06-01","0999-07-01",11,0,"123627-4051.its",88.228,34.4268867136605,98.7705876457422,-0.508464772689412
 "bergelson 38 123628-4071","bergelson","bergelson 38",47362050,260.791076399776,398,0.684311536519324,0.764725910793327,5060.29,2058.02848483121,468.630390787561,1589.39809404365,1350.84426229508,1138.34951456311,1458.78095238095,1611.79830953075,250534.256857547,115858.582979411,116426.379348022,420342.616081863,312,185.464945035107,337,101.777689099184,152,79.8107345437961,507,116,"1000-01-01","0999-07-01",6,830,"123628-4071.its",109.242,58.5278719987838,173.6073501886,-0.934908119529997
 "bergelson 34 123629-4073","bergelson","bergelson 34",57599990,49.812508648005,232,0.614330906950757,0.644821533060269,2283.14,467.766956209541,217.09941269087,250.667543518671,1194.25937698665,1223.32998996991,1510.14263074485,1345.14429109159,117410.645383793,76228.7632341603,59556.2603396285,67005.0116328145,357,98.3125170681453,168,62.3125108181442,200,39.4375068467894,213,61,"1000-05-01","0999-07-01",9,16255020,"123629-4073.its",68.699,13.4375023328997,69.7500121093771,-0.679042111425646
-"bergelson 40 123630-4078","bergelson","bergelson 40",57599990,105.812518370229,273,0.604937577303113,0.651186440677966,2722.48,835.082644979626,252.743793879131,582.338851100495,1172.19073152049,1179.00759734093,1460.56737588652,1438.65327820437,191286.908209533,155186.90194217,64356.261172962,152227.52642839,361,163.187528331168,539,131.625022851566,361,44.0625076497409,295,103,"1000-10-01","0999-07-01",15,0,"123630-4078.its",87.627,35.187506108942,125.562521799049,-0.167310095216945
+"bergelson 40 123630-4078","bergelson","bergelson 40",57599990,105.812518370229,273,0.604937577303113,0.651186440677966,2722.48,835.082644979626,252.743793879131,582.338851100495,1172.19073152049,1179.00759734093,1460.56737588652,1438.65327820437,191286.908209533,155186.90194217,64356.261172962,152227.52642839,361,163.187528331168,539,131.625022851566,361,44.0625076497409,295,103,"1000-10-01","0999-07-01",15,0,"123630-4078.its",87.627,35.187506108942,125.562521799049,-0.167310095216944
 "bergelson 39 123631-4091","bergelson","bergelson 39",32401430,101.328861102735,23,0.329231568016615,0.396078431372549,1768.51,767.980549006633,47.0390350055538,720.94151400108,936.772908366534,NA,1507.875,1600.09868421053,26124.4025340857,220138.061807766,13402.741792569,162136.177323038,76,27.8876580447221,336,150.771123373259,30,8.88849658795924,248,12,"1000-06-01","0999-07-01",11,0,"123631-4091.its",NA,3.66650484253318,11.8883641863955,-0.508464772689412
 "bergelson 21 123632-4096","bergelson","bergelson 21",41977430,63.4626750613365,189,0.452205187104754,0.483912483912484,1135.52,688.979101388532,378.742671954905,310.236429433627,958.825638727028,894.497354497355,1356.84452621895,1266.33783783784,183453.441527983,14498.6484403643,126487.114623263,80365.1867205782,345,191.331389272759,72,16.2087102521522,221,93.2215240428011,163,39,"1000-05-01","0999-07-01",9,0,"123632-4096.its",67.996,16.8947932257882,98.7959482035942,-0.679042111425646
 "bergelson 37 123633-4127","bergelson","bergelson 37",57599990,131.875022894969,357,0.534146493356303,0.629678701556807,5076.17,974.562044194799,137.36689884842,837.195145346379,1271.51792245794,1134.85395189003,1328.33333333333,1591.09478672986,217270.662720601,82560.6393334443,35366.8811400835,209825.661428066,496,170.875029665804,198,72.7500126302105,106,26.6250046223966,608,101,"1000-02-01","0999-07-01",7,0,"123633-4127.its",107.754,30.875005360244,120.437520909292,-0.84961945016188
 "bergelson 37 123634-4128","bergelson","bergelson 37",57599990,94.9375164822077,469,0.592214749815142,0.65026714158504,2289.59,718.631374762391,194.580658781364,524.050715981027,1136.40597758406,1148.69718309859,1419.20542635659,1398.47267939434,285166.924508147,101946.892699113,45769.3829460734,132767.523049917,629,250.937543565546,276,88.7500154079888,249,32.2500055989593,339,110,"1000-06-01","0999-07-01",11,0,"123634-4128.its",100.901,37.7500065538206,184.250031987853,-0.508464772689412
 "bergelson 35 123635-4141","bergelson","bergelson 35",43794610,104.889619978349,141,0.596407027947843,0.658813263525305,1610.46,996.679089047716,489.356932280023,507.322156767694,1201.82166826462,986.136363636364,1584.47565543071,1344.90595611285,103040.077306317,17833.7014532154,139103.693354045,141066.674643295,157,85.7365780857507,37,18.0844172376464,200,87.7916254991196,205,45,"1000-05-01","0999-07-01",9,0,"123635-4141.its",NA,20.1394646510153,63.5420660213666,-0.679042111425646
-"bergelson 30 123636-4144","bergelson","bergelson 30",57599990,148.000025694449,167,0.672848043954197,0.670386904761905,6463.1,1270.74022061462,298.120051756953,972.620168857668,990.113728675873,1085.66176470588,1424.91060786651,1598.61908783784,76176.8882251542,46140.6330105266,74718.7629720075,236595.666075636,223,76.9375133572072,173,42.5000073784735,375,52.4375091037342,579,95,"1000-10-01","0999-07-01",15,0,"123636-4144.its",95.815,24.0000041666674,59.1875102756094,-0.167310095216945
+"bergelson 30 123636-4144","bergelson","bergelson 30",57599990,148.000025694449,167,0.672848043954197,0.670386904761905,6463.1,1270.74022061462,298.120051756953,972.620168857668,990.113728675873,1085.66176470588,1424.91060786651,1598.61908783784,76176.8882251542,46140.6330105266,74718.7629720075,236595.666075636,223,76.9375133572072,173,42.5000073784735,375,52.4375091037342,579,95,"1000-10-01","0999-07-01",15,0,"123636-4144.its",95.815,24.0000041666674,59.1875102756094,-0.167310095216944
 "bergelson 41 123637-4152","bergelson","bergelson 41",57599990,192.562533430995,278,0.435169070373299,0.593057176196033,2372.91,1111.04019288892,117.746270442061,993.293922446862,1393.11393250919,1097.92894280763,1181.32701421801,1361.04186952288,260599.420242955,79188.1387479408,31157.5054092891,262085.670500984,423,187.062532476134,192,72.1250125217036,105,26.3750045789938,378,102,"1000-06-01","0999-07-01",11,0,"123637-4152.its",86.808,38.6250067057303,129.562522493494,-0.508464772689412
 "bergelson 3 123638-4164","bergelson","bergelson 3",57599990,94.3750163845515,206,0.731407023220404,0.763037511436414,3289.16,957.907666303414,531.296967239057,426.610699064358,976.077844311377,1138.63298662704,1601.94752186589,1198.30463576159,61126.8856123065,143681.274944666,171708.779810552,113090.019633684,243,62.6250108723977,490,126.187521907556,NA,107.187518608944,273,49,"1000-05-01","0999-07-01",9,0,"123638-4164.its",NA,13.5625023546011,54.0625093858523,-0.679042111425646
 "bergelson 38 123639-4168","bergelson","bergelson 38",48058360,284.429181520135,470,0.653729489523976,0.709870183391716,3668.63,2067.24207817329,488.830913081512,1578.41116509178,1069.63583556747,1097.79160186625,1315.77579203899,1413.85830919147,358640.702678993,211506.842930137,121331.481140846,402142.561668771,583,335.292340396135,443,192.66575055828,170,92.2128845012605,551,180,"1000-11-01","0999-07-01",16,0,"123639-4168.its",99.649,95.5837860467981,262.331049166056,-0.0820214258488275
@@ -293,7 +293,7 @@
 "bergelson 44 123708-5267","bergelson","bergelson 44",37327860,104.929669153281,306,0.623346358034747,0.615799803729146,2048.96,629.970536751906,20.9868982577624,608.983638494144,1043.82383966245,1208.44759206799,1145.625,1452.69301470588,190868.80415861,205703.621905997,5303.38465692917,152430.597414371,410,182.855379333292,353,170.221384242226,13,4.62925010970358,292,61,"1000-11-01","0999-07-01",16,0,"123708-5267.its",103.15,23.2426932591367,126.822164463754,-0.0820214258488275
 "bergelson 31 123709-5315","bergelson","bergelson 31",57599990,115.125019986983,433,0.625242439019808,0.69393826701376,2202.64,903.256406815348,239.661916607972,663.594490207377,1036.53117600631,1075.31010041347,1326.49310872894,1381.04777415852,164160.653500113,113781.269753693,54137.5093988732,158993.152602978,456,158.375027495664,270,105.812518370229,108,40.8125070855047,337,140,"1000-12-01","0999-07-01",17,0,"123709-5315.its",89.507,33.3125057834211,119.500020746531,0.00326724351928943
 "bergelson 2 123710-5388","bergelson","bergelson 2",57599990,224.937539051656,563,0.665435028766512,0.748679245283019,6136.38,1652.88216195871,272.59067232477,1380.29148963394,1207.35281097831,1155.19370460048,1486.62275449102,1623.06751875521,170463.154594298,119273.770707252,77583.1384692949,365088.813383475,477,141.187524511723,320,103.25001792535,245,52.1875090603314,NA,106,"1000-03-01","0999-06-01",8,0,"123710-5388.its",93.448,40.8750070963554,126.687521994361,-0.764330780793763
-"bergelson 45 123711-5402","bergelson","bergelson 45",41708610,55.4993321522822,197,0.632984369410658,0.673953778888195,825.22,336.158505402122,36.8910879552208,299.267417446901,1050.28436018957,1084.90415335463,1379.34782608696,1315.2566096423,133894.943993578,117239.10242993,10953.1341370523,72995.8634440227,315,127.484469034092,318,108.064018436481,37,7.94080646657848,136,34,"1000-09-01","0999-06-01",15,0,"123711-5402.its",77.397,12.601714610005,95.6349300540104,-0.167310095216945
+"bergelson 45 123711-5402","bergelson","bergelson 45",41708610,55.4993321522822,197,0.632984369410658,0.673953778888195,825.22,336.158505402122,36.8910879552208,299.267417446901,1050.28436018957,1084.90415335463,1379.34782608696,1315.2566096423,133894.943993578,117239.10242993,10953.1341370523,72995.8634440227,315,127.484469034092,318,108.064018436481,37,7.94080646657848,136,34,"1000-09-01","0999-06-01",15,0,"123711-5402.its",77.397,12.601714610005,95.6349300540104,-0.167310095216944
 "bergelson 37 123712-5407","bergelson","bergelson 37",57599990,123.187521386722,175,0.570315542222347,0.651606425702811,3705.78,1194.63145740129,427.929449293307,766.702008107987,1169.35659760087,1136.77685950413,1490.81938325991,1580.41095890411,67018.7616352017,68775.0119401062,105755.018360246,194686.908799811,233,57.3125099500885,186,60.500010503474,250,70.9375123155403,368,54,"1000-01-01","0999-07-01",6,0,"123712-5407.its",91.309,14.0625024414067,41.8750072699665,-0.934908119529997
 "bergelson 14 123713-5430","bergelson","bergelson 14",57599990,143.937524989154,265,0.65726328632462,0.689899366380917,3164.63,920.33078477965,93.9312663075115,826.399518472139,1277.60412194075,1089.67041800643,1352.15753424658,1526.6652192792,185971.282286681,84721.8897086614,24676.8792841804,219744.413150072,393,145.562525271272,299,77.7500134982662,56,18.2500031684033,486,45,"1000-03-01","0999-07-01",7,0,"123713-5430.its",112.68,19.3125033528652,118.687520605472,-0.84961945016188
 "bergelson 28 123714-5449","bergelson","bergelson 28",40686990,56.0080753085937,54,0.724045631253585,0.73,1733.63,518.414461231956,231.751328864583,286.663132367374,951,1107.94585987261,NA,1343.17535545024,15987.5183688938,61563.757849868,74927.8331968032,75228.666460704,48,16.8112706297517,174,55.5656734499161,206,28.1367582119002,117,10,"1000-03-01","0999-07-01",7,0,"123714-5449.its",NA,3.62769524115694,14.0683791059501,-0.84961945016188
@@ -305,12 +305,12 @@
 "bergelson 41 123720-5605","bergelson","bergelson 41",57599990,202.125035091152,254,0.565992417680007,0.629544584768465,3193.07,1282.75647270078,109.781269059248,1172.97520364153,1166.98755186722,1068.4976076555,1303.52941176471,1434.23005565863,175777.530516932,69786.2621156705,29085.00504948,289893.800328785,338,150.625026150178,231,65.3125113389777,97,22.3125038736986,498,120,"1000-12-01","0999-07-01",17,0,"123720-5605.its",95.963,35.6250061848969,104.500018142364,0.00326724351928943
 "bergelson 12 123721-5606","bergelson","bergelson 12",57599990,197.5000342882,154,0.474972460224748,0.581310679611651,3429.96,1537.06589185172,285.783799615243,1251.28209223647,1056.953125,1164.78806907378,1382.13245033113,1520.93670886076,50733.7588079442,139119.399152673,65219.3863228101,300385.052150183,204,48.0000083333348,280,119.437520735681,236,47.1875081922757,351,54,"1000-06-01","0999-07-01",11,85031960,"123721-5606.its",113.306,12.56250218099,31.0000053819454,-0.508464772689412
 "bergelson 10 123722-5622","bergelson","bergelson 10",57599990,186.000032291672,253,0.633823100976428,0.679324894514768,3592.75,1204.84958417528,70.8318872972027,1134.01769687807,1001.90410958904,1241.72834131476,1707.903930131,1490.19825268817,137135.648808272,NA,24444.3792438158,277176.923120994,306,136.875023763025,675,NA,130,14.3125024848095,487,71,"1000-11-01","0999-07-01",16,0,"123722-5622.its",95.871,29.0625050455738,103.625017990455,-0.0820214258488275
-"bergelson 41 123723-5633","bergelson","bergelson 41",57599990,141.437524555126,193,0.610604678276397,0.685814185814186,3593.74,930.676411575766,226.842539382385,703.833872193381,1051.08079748164,1097.45573159366,1394.7583081571,1266.58418029165,125210.021737851,73598.1377774545,57708.1350187734,179142.531101134,266,119.125020681427,203,67.0625116427972,335,41.375007183161,360,63,"1000-10-01","0999-07-01",15,0,"123723-5633.its",101.049,24.3125042209209,88.500015364586,-0.167310095216945
+"bergelson 41 123723-5633","bergelson","bergelson 41",57599990,141.437524555126,193,0.610604678276397,0.685814185814186,3593.74,930.676411575766,226.842539382385,703.833872193381,1051.08079748164,1097.45573159366,1394.7583081571,1266.58418029165,125210.021737851,73598.1377774545,57708.1350187734,179142.531101134,266,119.125020681427,203,67.0625116427972,335,41.375007183161,360,63,"1000-10-01","0999-07-01",15,0,"123723-5633.its",101.049,24.3125042209209,88.500015364586,-0.167310095216944
 "bergelson 44 123724-5678","bergelson","bergelson 44",45651550,80.9085343213976,277,0.458844503470343,0.492880110243454,1289.65,475.291901370271,25.9482974838751,449.343603886396,987.079136690647,1105.17885532591,1195.82278481013,1433.30409356725,162294.949459547,219275.533908487,7449.7360987743,115966.533447386,490,164.419389922138,404,198.407282994772,24,6.22979942630645,172,38,"1000-06-01","0999-07-01",11,0,"123724-5678.its",NA,8.83212070564965,85.0091617918778,-0.508464772689412
-"bergelson 28 123725-5694","bergelson","bergelson 28",34082430,68.6570763880392,157,0.60260565798703,0.628859483301827,4478.65,1368.78655659236,NA,295.342673629785,989.470549305096,1007.72256728778,1616.03954463751,1159.66153846154,157920.782056913,51411.4750620774,NA,79618.970830425,286,159.60129603435,115,51.0174890698815,NA,NA,203,81,"1000-10-01","0999-07-01",15,0,"123725-5694.its",110.063,38.2367102345695,109.428817135398,-0.167310095216945
+"bergelson 28 123725-5694","bergelson","bergelson 28",34082430,68.6570763880392,157,0.60260565798703,0.628859483301827,4478.65,1368.78655659236,NA,295.342673629785,989.470549305096,1007.72256728778,1616.03954463751,1159.66153846154,157920.782056913,51411.4750620774,NA,79618.970830425,286,159.60129603435,115,51.0174890698815,NA,NA,203,81,"1000-10-01","0999-07-01",15,0,"123725-5694.its",110.063,38.2367102345695,109.428817135398,-0.167310095216944
 "bergelson 12 123726-5706","bergelson","bergelson 12",34462430,247.887337021794,157,0.699662214875197,0.726798748696559,5493.59,NA,NA,1516.97857638013,933.918459796149,1020.39045553145,1705.73678290214,1387.50526759376,86144.2446165288,98277.4575095256,NA,343944.98588753,182,92.2395779984174,154,96.3135797446669,375,NA,467,96,"1000-11-01","0999-07-01",16,0,"123726-5706.its",97.304,38.0240162983284,74.7944935978107,-0.0820214258488275
 "bergelson 36 123727-5750","bergelson","bergelson 36",47045550,203.853499427682,226,0.477264986856688,0.607964601769912,4229.1,1493.61484773799,216.13368320702,1277.48116453097,1200.02482621648,1179.53366058906,1270.28520499109,1568.06681681682,184941.189974397,257420.903783673,54531.5763127437,319655.907944535,330,154.11446991267,581,218.239557195101,168,42.9286085506493,437,65,"1000-02-01","0999-07-01",7,0,"123727-5750.its",111.029,30.1495040444845,107.818911671773,-0.84961945016188
-"bergelson 11 123728-5777","bergelson","bergelson 11",42429360,102.410217830295,302,0.579406670804047,0.671510347864377,2952.02,1554.11790326321,1040.8102314058,513.307671857412,NA,1019.57295373665,1569.89112683723,1258.36785418393,263587.101007416,24308.639112162,244689.149211772,128869.726057617,403,174.275548818083,111,23.8419811187348,265,155.863769804682,205,103,"1000-10-01","0999-07-01",15,0,"123728-5777.its",96.706,50.5687571059285,133.718726843865,-0.167310095216945
+"bergelson 11 123728-5777","bergelson","bergelson 11",42429360,102.410217830295,302,0.579406670804047,0.671510347864377,2952.02,1554.11790326321,1040.8102314058,513.307671857412,NA,1019.57295373665,1569.89112683723,1258.36785418393,263587.101007416,24308.639112162,244689.149211772,128869.726057617,403,174.275548818083,111,23.8419811187348,265,155.863769804682,205,103,"1000-10-01","0999-07-01",15,0,"123728-5777.its",96.706,50.5687571059285,133.718726843865,-0.167310095216944
 "bergelson 15 123729-5778","bergelson","bergelson 15",57599990,142.500024739588,255,0.5816622337551,0.659910822861775,6149.31,1029.1126786654,170.108779532774,859.003899132621,1094.09814323607,1124.83609576427,1354.016563147,1468.20614035088,154678.151853846,190870.658137267,40874.3820962469,209219.411322814,335,141.375024544275,653,169.687529459641,226,30.1875052408863,NA,132,"1000-11-01","0999-07-01",16,0,"123729-5778.its",86.861,28.0625048719627,104.750018185767,-0.0820214258488275
 "bergelson 1 123730-5813","bergelson","bergelson 1",57599990,180.250031293408,241,0.646034635761749,0.732010890704006,5739.17,1931.01033524485,834.830769935898,1096.17956530895,1030.93534482759,1054.20833333333,1543.58416702914,1478.06171983356,149485.65095237,79065.6387266734,221793.788505866,266420.671253589,273,145.000025173615,279,75.0000130208356,389,143.687524945751,436,100,"1000-07-01","0999-07-01",11,0,"123730-5813.its",103.429,37.9375065863727,118.43752056207,-0.508464772689412
 "bergelson 26 123731-5849","bergelson","bergelson 26",57599990,113.312519672312,178,0.429585169560137,0.51936715766503,2092.17,644.078861819247,41.8600072673624,602.218854551884,1003.22954822955,1107.12471994025,1233.48684210526,1354.43463872035,102705.642830841,92652.5160855063,11718.1270343971,153474.401644861,304,102.375017773441,299,83.6875145290824,29,9.50000164930584,367,58,"1000-01-01","0999-07-01",6,240644830,"123731-5849.its",102.373,18.0625031358512,62.562510861547,-0.934908119529997
@@ -322,7 +322,7 @@
 "bergelson 19 123737-5988","bergelson","bergelson 19",43457050,230.213509660688,248,0.783410121071152,0.808764940239044,4598.05,2046.90378201005,629.210220205927,1417.69356180413,1093.21076233184,1058.1914893617,1451.94464675892,1484.65275278877,100976.665466248,49440.8157019402,165144.021510894,341787.120846905,270,92.367061270841,119,46.7219933244433,248,113.739888004363,466,75,"1000-03-01","0999-07-01",7,0,"123737-5988.its",123.838,35.7042183028991,86.6510727258293,-0.84961945016188
 "bergelson 39 123738-5991","bergelson","bergelson 39",39575930,160.915991108737,54,0.293386322471732,0.362252663622527,1894.55,1107.83337245644,139.936875772723,967.896496683717,1023.91304347826,1182.60529482551,1305.49152542373,1461.86546071227,57839.7020613287,178789.582455801,35032.2026544923,235237.529478145,151,56.488880994079,362,151.182802274008,95,26.8344925817283,267,12,"1000-09-01","0999-07-01",14,0,"123738-5991.its",NA,5.45786289797865,22.9230241715103,-0.252598764585061
 "bergelson 34 123739-6002","bergelson","bergelson 34",26857990,79.4847268913273,864,0.675240965413024,0.736517719568567,1191.29,374.726924836892,31.6799581800425,343.04696665685,1200.60859188544,1097.11838006231,1185.37313432836,1191.53456998314,269714.598895897,94409.8944113093,10645.3237937761,94708.7998766847,NA,224.648233170092,243,86.0526048300711,32,8.98056779379246,272,94,"1000-07-01","0999-07-01",11,8148651,"123739-6002.its",80.011,25.4672818032921,194.891724957824,-0.508464772689412
-"bergelson 6 123740-6016","bergelson","bergelson 6",57599990,67.1250116536479,250,0.904320027091837,0.889457523029683,2491.99,679.892618036913,301.626302365678,378.266315671235,1113.84009009009,1092.75303643725,1562.39743589744,1436.58286778399,61818.1357323152,33738.7558574229,76166.8882234181,96430.6417414309,243,55.5000096354183,133,30.875005360244,258,48.7500084635431,286,100,"1000-10-01","0999-07-01",15,0,"123740-6016.its",103.096,21.6875037651916,56.6250098307309,-0.167310095216945
+"bergelson 6 123740-6016","bergelson","bergelson 6",57599990,67.1250116536479,250,0.904320027091837,0.889457523029683,2491.99,679.892618036913,301.626302365678,378.266315671235,1113.84009009009,1092.75303643725,1562.39743589744,1436.58286778399,61818.1357323152,33738.7558574229,76166.8882234181,96430.6417414309,243,55.5000096354183,133,30.875005360244,258,48.7500084635431,286,100,"1000-10-01","0999-07-01",15,0,"123740-6016.its",103.096,21.6875037651916,56.6250098307309,-0.167310095216944
 "bergelson 9 123741-6018","bergelson","bergelson 9",57599990,83.7500145399331,488,0.574770233839203,0.626062322946176,2237.22,710.9251234245,244.844417507711,466.080705916789,1355.61875945537,1293.11349693252,1325.33802816901,1296.12686567164,280020.048614592,105388.768296661,58811.8852103967,108550.643845598,468,206.562535861551,286,81.500014149308,176,44.3750077039944,207,75,"1000-06-01","0999-07-01",11,0,"123741-6018.its",90.379,27.2500047309036,153.625026671012,-0.508464772689412
 "bergelson 14 123742-6023","bergelson","bergelson 14",57599990,134.562523361549,376,0.651640334878815,0.697176684881603,4118.37,962.663917129152,175.616905489046,787.047011640106,1173.80573248408,1058.003003003,1437.47747747748,1481.24941941477,138215.648995772,44039.3826457262,49862.5086566855,199320.659604281,397,117.750020442712,131,41.6250072265638,170,34.6875060221365,577,41,"1000-02-01","0999-07-01",7,0,"123742-6023.its",112.794,14.3125024848095,98.5625171115481,-0.84961945016188
 "bergelson 8 123743-6035","bergelson","bergelson 8",57599990,167.125029014762,241,0.788708096851905,0.821155184411969,5850.64,1968.39471673519,1001.74892391474,966.64579282045,862.440652818991,937.799227799228,1567.85338193601,1413.2311144353,72660.637614694,15180.6276355256,241939.417003371,236186.291004564,260,84.2500146267386,72,16.1875028103303,370,154.312526790369,513,90,"1000-07-01","0999-07-01",11,0,"123743-6035.its",120.192,36.1250062717025,75.125013042537,-0.508464772689412
@@ -332,7 +332,7 @@
 "bergelson 33 123747-6143","bergelson","bergelson 33",49173430,273.001090222911,214,0.519738447429064,0.655339805825243,4164.8,1806.55780977654,212.538193898616,1594.01961587792,1165.01538461538,948.926380368098,1369.27308447937,1472.90962724591,221756.830873909,45295.1929527796,51024.6285443175,402105.934037955,306,190.346697393287,81,47.7330948847782,130,37.2640265281474,538,97,"1000-04-01","0999-07-01",9,0,"123747-6143.its",87.821,53.0774444654359,144.077807873073,-0.679042111425646
 "bergelson 14 123748-6174","bergelson","bergelson 14",57599990,181.750031553825,300,0.630639082963644,0.653061224489796,4533.84,1342.76710811929,296.981301559254,1045.78580656004,1168.22503270824,1096.65898617512,1467.69922879177,1480.31636863824,167421.279066194,89240.6404931667,71366.8873900846,269047.546709644,301,143.312524880647,231,81.3750141276066,203,48.6250084418417,472,65,"1000-05-01","0999-07-01",9,0,"123748-6174.its",117.927,27.0625046983515,108.750018880212,-0.679042111425646
 "bergelson 10 123749-6200","bergelson","bergelson 10",57599990,166.375028884554,192,0.580680751400892,0.606466876971609,4259.03,1181.60395513958,135.52064852789,1046.08330661169,1010.07685738685,1314.63890028724,1300.6914893617,1521.17580766341,73925.0128342036,NA,30566.2553066415,253085.668938484,236,73.1875127061654,NA,NA,137,23.5000040798618,493,43,"1000-08-01","0999-07-01",13,0,"123749-6200.its",85.532,14.0625024414067,51.7500089843766,-0.337887433953178
-"bergelson 21 123750-6201","bergelson","bergelson 21",45123800,149.668246025379,350,0.68861903611964,0.768421052631579,4107.54,1869.64918734681,NA,741.68833298614,1087.08558558559,1055.22727272727,1633.92393320965,1270.3144989339,192536.710117499,44450.5117033583,NA,190125.742956045,384,177.112743164361,85,42.12411188774,438,NA,255,104,"1000-10-01","0999-07-01",15,0,"123750-6201.its",100.925,54.6496527331475,162.832030990298,-0.167310095216945
+"bergelson 21 123750-6201","bergelson","bergelson 21",45123800,149.668246025379,350,0.68861903611964,0.768421052631579,4107.54,1869.64918734681,NA,741.68833298614,1087.08558558559,1055.22727272727,1633.92393320965,1270.3144989339,192536.710117499,44450.5117033583,NA,190125.742956045,384,177.112743164361,85,42.12411188774,438,NA,255,104,"1000-10-01","0999-07-01",15,0,"123750-6201.its",100.925,54.6496527331475,162.832030990298,-0.167310095216944
 "bergelson 30 123751-6205","bergelson","bergelson 30",57599990,194.625033789068,214,0.604484014745552,0.661911554921541,3815.13,1489.49713359325,300.152552109818,1189.34458148343,1001.90599173554,1027.88293897883,1384.140625,1466.82080924855,121230.646046987,51586.8839560562,77511.8884569251,285480.049562509,337,121.000021006948,140,50.1875087131092,166,56.0000097222239,502,116,"1000-09-01","0999-07-01",14,0,"123751-6205.its",105.644,38.9375067599838,89.3750155164958,-0.252598764585061
 "bergelson 20 123752-6209","bergelson","bergelson 20",57599990,107.125018598094,165,0.436267896344289,0.516666666666667,5330.19,2033.81035309208,NA,637.69386071074,1079.27820602663,1262.17277486911,1758.2966051221,1404.64410735123,96258.1417114829,90403.1406949897,NA,150472.526123702,259,89.1875154839437,339,71.625012434898,NA,NA,372,64,"1000-02-01","0999-07-01",7,0,"123752-6209.its",106.076,22.6875039388028,49.5000085937515,-0.84961945016188
 "bergelson 45 123753-6222","bergelson","bergelson 45",57599990,56.5000098090295,144,0.562433789392498,0.618115942028985,909.32,364.933188356456,111.53439436361,253.398793992846,1132.09516500384,1006.23574144487,1522.80112044818,1298.77212389381,92195.0160060792,33080.0057430566,33977.5058988726,73380.6377396941,266,81.4375141384573,84,32.8750057074663,62,22.3125038736986,118,29,"1000-05-01","0999-06-01",10,0,"123753-6222.its",NA,10.8750018880212,54.8125095160607,-0.593753442057529
@@ -347,7 +347,7 @@
 "bergelson 28 123765-6402","bergelson","bergelson 28",43519680,89.173449804778,244,0.38766336786462,0.57459831675593,1467.44,574.296869829925,141.520250148898,432.776619681027,1255.78039927405,1116.98085419735,1494.65290806754,1378.31168831169,114475.382171928,62738.2370458606,65899.8411753028,122908.808153001,266,91.1587585202832,160,56.167692409503,221,44.0903977235127,240,67,"1000-01-01","0999-07-01",6,0,"123765-6402.its",108.298,17.5368936536298,64.6879756468797,-0.934908119529997
 "bergelson 45 123767-6411","bergelson","bergelson 45",33981490,132.425034923424,182,0.623582219946075,0.658227848101266,3489.43,885.446753511986,58.9693977515406,826.477355760445,1001.69110459433,1096.06651376147,1235,1649.752,108559.924829665,101254.300503009,14130.2809264691,218468.466214989,264,108.376648581331,185,92.3797043625809,40,11.4415230173839,467,68,"1000-11-01","0999-06-01",17,9797770,"123767-6411.its",81.207,22.6711659788903,80.4084812055033,0.00326724351928943
 "bergelson 15 123769-6433","bergelson","bergelson 15",57599990,101.43751761068,193,0.368502417865912,0.509818731117825,3193.47,1096.55706537449,513.075714075645,583.481351298846,1360.44706874736,1154.28425878757,1441.17388114453,1356.29081947012,201601.285000223,141616.274586159,122770.02131424,137578.773885204,386,148.187525727001,385,122.687521299917,272,85.1875147894991,238,82,"1000-03-01","0999-07-01",7,0,"123769-6433.its",88.095,23.250004036459,85.4375148329019,-0.84961945016188
-"bergelson 10 123772-6441","bergelson","bergelson 10",57599990,122.93752134332,203,0.654651685210934,0.684740511231603,2518.36,881.165152980061,130.29252262023,750.872630359832,955.08347245409,1257.04994192799,1402.38636363636,1536.47178444331,71511.8874152582,202935.035231777,30852.5053563377,188890.032793408,315,74.8750129991342,541,161.437528027349,132,22.0000038194451,354,74,"1000-10-01","0999-07-01",15,0,"123772-6441.its",104.34,17.5625030490457,58.6250101779532,-0.167310095216945
+"bergelson 10 123772-6441","bergelson","bergelson 10",57599990,122.93752134332,203,0.654651685210934,0.684740511231603,2518.36,881.165152980061,130.29252262023,750.872630359832,955.08347245409,1257.04994192799,1402.38636363636,1536.47178444331,71511.8874152582,202935.035231777,30852.5053563377,188890.032793408,315,74.8750129991342,541,161.437528027349,132,22.0000038194451,354,74,"1000-10-01","0999-07-01",15,0,"123772-6441.its",104.34,17.5625030490457,58.6250101779532,-0.167310095216944
 "bergelson 46 123775-6457","bergelson","bergelson 46",39422550,89.4919278433282,266,0.661428642541888,0.802875973636908,2299.47,640.179592644311,222.513459936001,417.66613270831,1258.01619433198,903.225806451613,1509.47990543735,1245.36734693878,170252.000441372,12784.5611204755,58307.6437216771,111450.324750682,263,135.333711289605,38,14.1543355262407,114,38.6276382425794,377,117,"1000-05-01","0999-07-01",9,0,"123775-6457.its",87.958,30.4089918079881,123.827606281177,-0.679042111425646
 "bergelson 18 123779-6471","bergelson","bergelson 18",55278990,225.134359365104,197,0.44335995743758,0.53413821815154,2636.38,1538.18866806358,213.715482138874,1324.47318592471,1135.70163789287,1064.02916346892,NA,1428.8805322534,167079.391284103,90290.144592005,136608.429350826,321690.103238138,263,147.115567777197,206,84.8568325868472,346,56.2021845912887,427,67,"1000-06-01","0999-07-01",11,0,"123779-6471.its",95.865,31.064243395185,87.0059311865141,-0.508464772689412
 "bergelson 43 123783-6479","bergelson","bergelson 43",43156180,173.008825155517,182,0.562303627553456,0.63249063670412,2778.77,1361.81719512709,366.72782438112,995.089370745974,1104.36011904762,965.606060606061,1531.16368286445,1460.47733847637,185720.886324971,53162.2585687612,99882.1489761142,252675.468496053,276,168.170584143453,106,55.0558459993447,196,65.2328357143751,375,84,"1000-09-01","0999-07-01",14,0,"123783-6479.its",89.592,44.8788562843143,118.620322744043,-0.252598764585061
@@ -371,8 +371,8 @@
 "bergelson 22 123820-6935","bergelson","bergelson 22",48045740,87.8912469659121,231,0.489719167630682,0.603972436157276,2864.31,665.740604682122,187.789801967875,477.950802714247,1384.04696132597,987.668308702791,1595.86633663366,1378.49957374254,225246.60875241,45068.8031862971,48308.7158195503,121158.04647821,316,162.744917655551,89,45.6315169669569,203,30.2711541127267,236,37,"1000-06-01","0999-07-01",11,0,"123820-6935.its",85.869,16.1845774464084,113.292042124859,-0.508464772689412
 "bergelson 7 123821-6937","bergelson","bergelson 7",44988930,127.391338269214,201,0.541506767835394,0.618787547788094,4087.73,1959.19156112404,NA,738.08876983738,1094.91676575505,968.067796610169,1774.83606557377,1422.0540201005,147368.252590137,22852.0215973129,NA,181157.364711719,250,134.593109905037,54,23.605807028529,341,165.960826363285,241,86,"1000-12-01","0999-07-01",17,0,"123821-6937.its",89.88,37.0491140820642,93.4629918960064,0.00326724351928943
 "bergelson 27 123822-6938","bergelson","bergelson 27",57599990,165.562528743495,326,0.487921567694874,0.609431345353675,2947.34,984.237670874596,68.5400118993076,915.697658975288,1261.81533646322,1114.23868312757,1271.94915254237,1480.16987542469,251968.793744582,67690.0117517381,18761.253257162,245060.667545255,580,199.687534667975,403,60.7500105468768,65,14.7500025607643,441,107,"1000-06-01","0999-07-01",11,0,"123822-6938.its",93.066,38.5625066948796,139.312524186202,-0.508464772689412
-"bergelson 43 123823-6939","bergelson","bergelson 43",45837800,175.139295515928,206,0.431326104635861,0.51725768321513,3369.32,1284.04120616609,325.463002151063,958.578204015027,1284.00801603206,1027.01778385773,1376.92592592593,1414.466367713,201282.958606216,58962.2538603511,87593.9944761747,247728.643172229,304,156.761450156857,170,57.4111322969252,167,63.6156185506285,495,64,"1000-03-01","0999-07-01",7,3285580,"123823-6939.its",87.384,25.3677096195716,88.2764879640821,-0.84961945016188
-"bergelson 11 123824-6954","bergelson","bergelson 11",48271550,115.670617579092,223,0.485544719337037,0.63013698630137,4037.02,1158.16492323118,586.227788417816,571.937134813363,1351.65545087483,1050.875,1597.5864978903,1296.58284977434,149794.568436274,43888.4601799611,141186.765289285,149976.538975856,284,110.823041729549,120,41.7637303960614,268,88.3750366416657,334,83,"1000-07-01","0999-07-01",11,0,"123824-6954.its",90.226,24.5361916076861,80.9172276423691,-0.508464772689412
+"bergelson 43 123823-6939","bergelson","bergelson 43",45837800,175.139295515928,206,0.431326104635861,0.51725768321513,3369.32,1284.04120616609,325.463002151063,958.578204015027,1284.00801603206,1027.01778385773,1376.92592592593,1414.466367713,201282.958606216,58962.2538603511,87593.9944761747,247728.643172229,304,156.761450156857,170,57.4111322969252,167,63.6156185506285,495,64,"1000-03-01","0999-07-01",7,3285580,"123823-6939.its",87.384,25.3677096195716,88.276487964082,-0.84961945016188
+"bergelson 11 123824-6954","bergelson","bergelson 11",48271550,115.670617579092,223,0.485544719337037,0.63013698630137,4037.02,1158.16492323118,586.227788417816,571.937134813363,1351.65545087483,1050.875,1597.5864978903,1296.58284977434,149794.568436274,43888.4601799611,141186.765289285,149976.538975856,284,110.823041729549,120,41.7637303960614,268,88.3750366416657,334,83,"1000-07-01","0999-07-01",11,0,"123824-6954.its",90.226,24.5361916076861,80.917227642369,-0.508464772689412
 "bergelson 11 123825-6957","bergelson","bergelson 11",44905610,176.690618388215,330,0.732399017722898,0.758312020460358,4933.54,2067.2722183264,NA,862.307137126074,1165.61151079137,1078.04705882353,1821.87779433681,1254.73230490018,194832.672354301,36730.6445675718,NA,221699.426864483,390,167.150607685766,94,34.0714667944606,388,161.378500369998,320,84,"1000-02-01","0999-07-01",7,0,"123825-6957.its",107.324,43.4511411825828,144.703523680003,-0.84961945016188
 "bergelson 22 123826-6968","bergelson","bergelson 22",51739680,199.761575641751,230,0.387979522702564,0.515187849720224,5958.66,1730.41186184375,419.587674295628,1310.82418754813,NA,984.150943396226,1596.98461538462,1670.42842215256,246783.822397046,43550.9458118025,108338.82235066,333687.41360596,388,150.290840608214,128,44.2523030679741,432,67.8396155523188,721,106,"1000-02-01","0999-07-01",7,0,"123826-6968.its",105.729,24.909315248954,91.5660862224119,-0.84961945016188
 "bergelson 25 123827-6971","bergelson","bergelson 25",37959800,57.9455107771906,350,0.786532045297238,0.836189516129032,523.37,286.505935226213,71.5527479069963,214.953187319217,1257.75137111517,1149.23232323232,1198.63157894737,NA,195741.073451388,53950.02081149,21598.2170612069,63798.8609002155,308,155.627795720736,113,46.9443990748107,50,18.0190622711395,125,60,"1000-12-01","0999-07-01",17,0,"123827-6971.its",96.353,23.6144552921775,160.654165722686,0.00326724351928943
@@ -382,9 +382,9 @@
 "bergelson 46 123831-7041","bergelson","bergelson 46",40291490,110.792626433026,378,0.53206273918093,0.670284237726098,2014.41,809.657324660865,352.231203164738,457.426121496127,1280.75785582255,1030.39182282794,1491.26498002663,1217.33064516129,185726.861925434,54041.7840094769,100065.398425325,134871.259414829,396,145.013252178065,308,52.4477997711179,118,67.1010181058084,304,107,"1000-01-01","0999-07-01",6,0,"123831-7041.its",113.66,25.9111787625625,118.297933384941,-0.934908119529997
 "bergelson 35 123832-7066","bergelson","bergelson 35",42428610,189.890736462967,411,0.768168945498371,0.759955131800336,3125.97,1722.03237390996,783.885590407039,938.146783502924,1105.36903984324,983.091603053435,1723.12460063898,1382.94459338695,143590.657341827,21854.4043747839,228809.852597104,262608.367325727,394,129.902912209474,61,22.230282820955,378,132.787758071735,396,126,"1000-02-01","0999-07-01",7,0,"123832-7066.its",114.381,37.8423898402517,118.957467614423,-0.84961945016188
 "bergelson 38 123833-7072","bergelson","bergelson 38",47070990,161.143838274912,494,0.548483007136296,0.635804467465199,2624.84,1162.25547837426,177.585557473935,984.669920900325,1057.83423423423,1178.05329719964,1317.81609195402,1474.18604651163,224506.941536603,199476.492846231,43842.2901239171,237555.997866202,721,212.232629906446,586,169.327222563197,68,33.2688987420915,334,101,"1000-07-01","0999-07-01",11,0,"123833-7072.its",101.931,40.6874807604429,151.966211035714,-0.508464772689412
-"bergelson 21 123834-7099","bergelson","bergelson 21",37558430,101.12243775898,417,0.536835674683305,0.625744047619048,2390.3,813.024399582198,380.607602607457,432.41679697474,1084.39085239085,977.150537634409,1584.67647058824,1207.79146919431,249974.666140198,34841.7119671935,103286.745478978,122134.817669429,613,230.520817829712,125,35.6564425083796,213,65.1784432948875,324,84,"1000-06-01","0999-07-01",11,9148650,"123834-7099.its",90.749,30.7680592612631,164.671419971495,-0.508464772689412
-"bergelson 16 123835-7115","bergelson","bergelson 16",57599990,162.312528179258,223,0.657135551972289,0.688400823610158,3495.64,990.336421933406,11.9562520757382,978.380169857668,982.093373493976,1154.81203007519,1324.87804878049,1542.17173661918,81513.7641516952,95993.7666655845,3395.00058940982,250313.793457256,307,83.0000144097247,276,83.1250144314261,14,2.56250044487855,530,91,"1000-10-01","0999-07-01",15,0,"123835-7115.its",107.975,25.6875044596362,64.8750112630228,-0.167310095216945
-"bergelson 35 123836-7117","bergelson","bergelson 35",37675360,71.4737695937079,237,0.779600813734154,0.794117647058823,2411.71,1031.248009309,746.266419219352,284.98159008965,957.245145631068,1037.59259259259,1397.98959011061,NA,75369.4722492366,26769.2199888734,205316.047411359,77917.8752372904,229,78.735810354566,101,25.7993553346272,319,146.865219071563,181,98,"1000-10-01","0999-07-01",15,2430460,"123836-7117.its",101.964,29.6214820508683,73.4803861197345,-0.167310095216945
+"bergelson 21 123834-7099","bergelson","bergelson 21",37558430,101.12243775898,417,0.536835674683305,0.625744047619048,2390.3,813.024399582198,380.607602607457,432.41679697474,1084.39085239085,977.150537634409,1584.67647058824,1207.79146919431,249974.666140198,34841.7119671935,103286.745478978,122134.817669429,613,230.520817829712,125,35.6564425083796,213,65.1784432948875,324,84,"1000-06-01","0999-07-01",11,9148650,"123834-7099.its",90.749,30.768059261263,164.671419971495,-0.508464772689412
+"bergelson 16 123835-7115","bergelson","bergelson 16",57599990,162.312528179258,223,0.657135551972289,0.688400823610158,3495.64,990.336421933406,11.9562520757382,978.380169857668,982.093373493976,1154.81203007519,1324.87804878049,1542.17173661918,81513.7641516952,95993.7666655845,3395.00058940982,250313.793457256,307,83.0000144097247,276,83.1250144314261,14,2.56250044487855,530,91,"1000-10-01","0999-07-01",15,0,"123835-7115.its",107.975,25.6875044596362,64.8750112630228,-0.167310095216944
+"bergelson 35 123836-7117","bergelson","bergelson 35",37675360,71.4737695937079,237,0.779600813734154,0.794117647058823,2411.71,1031.248009309,746.266419219352,284.98159008965,957.245145631068,1037.59259259259,1397.98959011061,NA,75369.4722492366,26769.2199888734,205316.047411359,77917.8752372904,229,78.735810354566,101,25.7993553346272,319,146.865219071563,181,98,"1000-10-01","0999-07-01",15,2430460,"123836-7117.its",101.964,29.6214820508683,73.4803861197345,-0.167310095216944
 "bergelson 17 123837-7137","bergelson","bergelson 17",57599990,134.562523361549,228,0.537569588613017,0.647482014388489,3448.5,1088.79081402618,362.080062861122,726.710751165061,1204.55179817499,1165.49878345499,1365.3164556962,1440.99860659545,140255.024349831,29938.7551977006,94377.5163849855,193904.40866396,339,116.437520214847,187,25.6875044596362,221,69.1250120008701,401,99,"1000-01-01","0999-07-01",6,0,"123837-7137.its",88.931,33.1875057617197,86.1250149522595,-0.934908119529997
 "bergelson 22 123838-7162","bergelson","bergelson 22",47468860,82.5130411811027,256,0.537737111103489,0.602376237623762,1695.95,631.727578880133,175.268165277194,456.459413602939,1436.59398168338,932.260638297872,1614.66480446927,1404.19117647059,249822.641622318,26583.9120636139,43838.8450870739,115864.084370259,327,173.899267856864,62,28.5155362905281,82,27.1504308298114,188,44,"1000-07-01","0999-07-01",11,0,"123838-7162.its",85.368,19.8698683726553,117.929943967477,-0.508464772689412
 "bergelson 28 123839-7170","bergelson","bergelson 28",37234740,161.848854054037,194,0.493617142753335,0.601332064700285,NA,1558.37532368965,608.775031059704,949.600292629947,946.050251256281,968.5,1579.60576923077,1478.27956989247,91010.4918149019,35582.5769160735,158831.349433352,239257.854358591,224,96.200483741796,81,36.7398832380728,424,100.55125938841,662,81,"1000-09-01","0999-07-01",14,0,"123839-7170.its",106.731,27.6515963318127,64.4881634731436,-0.252598764585061
@@ -392,10 +392,10 @@
 "bergelson 32 123841-7186","bergelson","bergelson 32",57599990,231.750040234382,91,0.255514778163707,NA,NA,1899.8628298373,394.1256934246,1505.7371364127,1134.49109414758,1313.14911366006,1392.16287215412,1673.34951456311,111463.769351349,78706.8886643904,99365.6422509796,387798.817326184,224,98.2500170572946,211,59.9375104058178,338,71.3750123914952,710,36,"1000-02-01","0999-07-01",7,0,"123841-7186.its",105.762,13.5000023437504,35.3125061306434,-0.84961945016188
 "bergelson 2 123842-7209","bergelson","bergelson 2",57599990,123.812521495229,211,0.552473220116158,0.625751072961373,3590.25,870.608901147379,188.8600327882,681.748868359178,1055.47187797903,1175.11301636789,1392.05882352941,1434.32609793034,69199.3870137825,94229.3913592693,59162.5102712691,177587.530831169,224,65.5625113823804,266,80.1875139214434,221,42.5000073784735,564,75,"1000-06-01","0999-06-01",11,0,"123842-7209.its",81.544,17.3750030164936,47.9375083224841,-0.508464772689412
 "bergelson 34 123843-7221","bergelson","bergelson 34",57599990,62.7500108940991,199,0.400746798983025,0.519918699186992,3887.61,641.758861416469,337.866933657454,303.891927759015,1376.38327205882,1075.43539325843,1507.60045924225,1253.51593625498,187188.157497944,47856.8833084867,82070.0142482664,78658.1386559268,375,136.000023611115,138,44.5000077256958,375,54.4375094509565,273,63,"1000-03-01","0999-07-01",7,0,"123843-7221.its",69.098,13.9375024197053,82.4375143120685,-0.84961945016188
-"bergelson 15 123844-7239","bergelson","bergelson 15",57599990,93.8125162868952,216,0.4561751059448,0.538175046554935,3355.86,772.56138412524,238.781291455085,533.780092670155,1106.79043743642,1137.78494623656,1409.19398907104,1370.19320453031,135996.898610573,165334.40370389,64470.6361928188,128541.272316193,385,122.875021332469,386,145.312525227869,350,45.7500079427097,333,87,"1000-10-01","0999-07-01",15,0,"123844-7239.its",84.202,18.6250032335075,73.9375128363738,-0.167310095216945
+"bergelson 15 123844-7239","bergelson","bergelson 15",57599990,93.8125162868952,216,0.4561751059448,0.538175046554935,3355.86,772.56138412524,238.781291455085,533.780092670155,1106.79043743642,1137.78494623656,1409.19398907104,1370.19320453031,135996.898610573,165334.40370389,64470.6361928188,128541.272316193,385,122.875021332469,386,145.312525227869,350,45.7500079427097,333,87,"1000-10-01","0999-07-01",15,0,"123844-7239.its",84.202,18.6250032335075,73.9375128363738,-0.167310095216944
 "bergelson 15 123845-7269","bergelson","bergelson 15",57599990,142.500024739588,508,0.552094464749905,0.677050377220735,3530.07,1071.06081094806,206.640035875006,864.420775073051,NA,1160.59232026144,1488.11567164179,1536.89473684211,321290.680779632,177570.655828239,49851.8836548409,219007.538022142,466,206.625035872402,371,153.000026562505,232,33.5000058159732,489,95,"1000-02-01","0999-07-01",7,0,"123845-7269.its",110.781,31.1875054144975,174.937530371099,-0.84961945016188
 "bergelson 32 123846-7270","bergelson","bergelson 32",57599990,169.000029340283,150,0.468702668465839,0.5553772070626,4642.57,1354.52961016139,359.584437427854,994.945172733537,1101.39061116032,1081.59784560144,1515.27527527528,1527.40014792899,77716.8884925154,37653.131537002,94610.0164253501,258130.669814352,206,70.5625122504362,158,34.8125060438379,297,62.4375108398456,463,73,"1000-03-01","0999-07-01",7,0,"123846-7270.its",105.534,18.2500031684033,45.1875078450534,-0.84961945016188
-"bergelson 12 123847-7324","bergelson","bergelson 12",52062610,209.793554337748,166,0.602644697486488,0.71415770609319,4793.03,1652.91113910732,358.547141605079,1294.36399750224,1087.75269872424,1109.6335504886,1795.45584045584,1453.57613711272,76644.4863213734,94222.4755923685,87154.2168170209,304950.904305412,227,70.461315711986,219,84.9131459218045,338,48.5415541018785,430,72,"1000-10-01","0999-07-01",15,0,"123847-7324.its",87.704,26.4834974658397,58.1530584041023,-0.167310095216945
+"bergelson 12 123847-7324","bergelson","bergelson 12",52062610,209.793554337748,166,0.602644697486488,0.71415770609319,4793.03,1652.91113910732,358.547141605079,1294.36399750224,1087.75269872424,1109.6335504886,1795.45584045584,1453.57613711272,76644.4863213734,94222.4755923685,87154.2168170209,304950.904305412,227,70.461315711986,219,84.9131459218045,338,48.5415541018785,430,72,"1000-10-01","0999-07-01",15,0,"123847-7324.its",87.704,26.4834974658397,58.1530584041023,-0.167310095216944
 "bergelson 32 123848-7339","bergelson","bergelson 32",57599990,162.937528287765,91,0.352893749336696,0.473149492017417,5766.82,1308.19835211777,279.566923535924,1028.63142858185,1147.75446775447,1115.62421185372,1360.94339622642,1572.47410817031,92322.5160282146,55293.1345995025,72130.0125225716,256215.044481779,174,80.4375139648462,103,49.5625086046022,141,53.0000092013905,707,35,"1000-09-01","0999-07-01",14,0,"123848-7339.its",93.278,12.9375022460941,46.8750081380222,-0.252598764585061
 "bergelson 23 123849-7362","bergelson","bergelson 23",57599990,86.5625150282144,156,0.444725066113814,0.511210762331839,1584.59,767.292633210527,335.522558250444,431.770074960082,1209.98061076103,1195.22101217168,1455.2740434333,1323.19133574007,156011.9020854,116608.770244578,87953.1402696424,114538.769885203,305,128.937522384987,321,97.562516937937,130,60.4375104926233,161,32,"1000-07-01","0999-07-01",11,0,"123849-7362.its",91.813,15.8750027560769,74.1250128689259,-0.508464772689412
 "bergelson 15 123850-7377","bergelson","bergelson 15",57599990,106.000018402781,218,0.537426169040419,0.612453531598513,2877.82,913.193283540501,213.295037030388,699.898246510112,1075.3094629156,1102.05579138872,1558.98214285714,1618.39622641509,131389.397810659,113580.644718862,54564.3844729834,171550.029782991,327,122.187521213111,313,103.062517892798,177,35.0000060763899,326,77,"1000-05-01","0999-07-01",9,0,"123850-7377.its",93.647,16.6875028971359,83.1250144314261,-0.679042111425646
@@ -422,10 +422,10 @@
 "bergelson 8 123871-7870","bergelson","bergelson 8",57599990,108.062518760854,274,0.82568764685476,0.827571305099395,3141.59,1339.36898252934,719.208249862543,620.160732666794,944.55223880597,979.32735426009,1582.23025296851,1437.92943898207,126570.021973962,27298.7547393671,191548.783254997,155386.276976784,311,134.000023263893,97,27.8750048394106,300,121.062521017799,236,115,"1000-12-01","0999-07-01",17,0,"123871-7870.its",119.719,53.1875092339426,124.500021614587,0.00326724351928943
 "bergelson 43 123872-7942","bergelson","bergelson 43",41274300,212.296756092774,255,0.588923163710626,0.657491152182462,3519.84,1769.86589718057,521.928173221593,1247.93772395898,1272.28047740835,1051.90082644628,1421.56993339677,1499.67132292523,260335.656813077,44406.1316606217,130314.796374499,318375.357062385,375,204.62127764735,115,42.2151314498368,219,91.6696346152448,413,114,"1000-07-01","0999-07-01",11,0,"123872-7942.its",100.835,59.6594006439843,150.19515776161,-0.508464772689412
 "bergelson 38 123873-7953","bergelson","bergelson 38",46945930,260.878845088381,362,0.668586085756644,0.702772220634467,6121.61,2591.24239311054,1005.61509805003,1585.62729506051,1046.73475704116,1144.88793103448,1443.98122065728,1467.39271017049,259345.165810966,203683.343795724,235855.33399807,382811.715520387,469,247.765887266479,372,177.906796180201,424,163.336843044754,581,203,"1000-08-01","0999-07-01",13,0,"123873-7953.its",96.927,77.8342233288381,192.016645532424,-0.337887433953178
-"bergelson 25 123874-7965","bergelson","bergelson 25",36535930,45.7193781573372,368,0.615137326158362,0.749171270718232,903.19,282.991126816807,54.5853903267277,228.40573649008,1240.89159717768,1333.02538071066,1309.91666666667,1260.28017241379,190617.290979044,129376.972202432,15488.4246822238,57619.2257867803,404,153.61316928295,326,97.055145441761,65,11.8239771096562,120,41,"1000-10-01","0999-07-01",15,0,"123874-7965.its",103.683,14.8785045296507,135.286004762983,-0.167310095216945
+"bergelson 25 123874-7965","bergelson","bergelson 25",36535930,45.7193781573372,368,0.615137326158362,0.749171270718232,903.19,282.991126816807,54.5853903267277,228.40573649008,1240.89159717768,1333.02538071066,1309.91666666667,1260.28017241379,190617.290979044,129376.972202432,15488.4246822238,57619.2257867803,404,153.61316928295,326,97.055145441761,65,11.8239771096562,120,41,"1000-10-01","0999-07-01",15,0,"123874-7965.its",103.683,14.8785045296507,135.286004762983,-0.167310095216944
 "bergelson 1 123875-7979","bergelson","bergelson 1",57599990,101.812517675784,409,0.77533617842946,0.815494710640946,3159.26,1108.24769240411,564.353847978099,543.893844426015,944.212852771166,1095.2408477842,1423.6649550706,1330.60159607121,173558.155131624,142107.524671445,138629.399067604,135471.898519427,446,183.812531911898,413,129.750022526046,224,97.3750169053849,300,103,"1000-08-01","0999-07-01",13,0,"123875-7979.its",123.286,40.8125070855047,165.437528721793,-0.337887433953178
 "bergelson 7 123876-7996","bergelson","bergelson 7",46412740,117.821098258797,209,0.684121410091096,0.767215112736137,NA,2055.11874541344,NA,697.586223093056,1000.05277044855,1001.15384615385,1792.04282655246,1379.94075049375,117594.608721657,28266.2044947142,NA,162586.134755242,256,117.588403528859,90,28.2336272325228,NA,NA,509,98,"1000-11-01","0999-07-01",16,0,"123876-7996.its",96.433,33.5856060211054,99.0503900437682,-0.0820214258488275
-"bergelson 19 123877-8020","bergelson","bergelson 19",40220110,267.716821261802,382,0.745796987679368,0.800511508951407,4817.39,2413.61259330221,579.598414822834,1834.01417847937,963.362831858407,1156.67675544794,1743.71909000989,1659.18087596122,185131.865626424,171033.545159374,157792.706186035,444190.630010709,403,192.172522650982,329,147.866328560514,382,90.4920448999269,530,199,"1000-10-01","0999-07-01",15,0,"123877-8020.its",119.088,79.0350896603714,172.838910684232,-0.167310095216945
+"bergelson 19 123877-8020","bergelson","bergelson 19",40220110,267.716821261802,382,0.745796987679368,0.800511508951407,4817.39,2413.61259330221,579.598414822834,1834.01417847937,963.362831858407,1156.67675544794,1743.71909000989,1659.18087596122,185131.865626424,171033.545159374,157792.706186035,444190.630010709,403,192.172522650982,329,147.866328560514,382,90.4920448999269,530,199,"1000-10-01","0999-07-01",15,0,"123877-8020.its",119.088,79.0350896603714,172.838910684232,-0.167310095216944
 "bergelson 26 123878-8049","bergelson","bergelson 26",57599990,132.562523014327,201,0.480027187150592,0.506037321624588,2971.49,922.053285078695,152.434401464306,769.61888361439,913.590047393365,1112.56425233645,1302.96137339056,1418.24139556813,96383.7667332928,119044.39566743,37948.7565883258,188005.657639871,315,105.500018315975,272,107.000018576392,117,29.1250050564245,392,44,"1000-08-01","0999-07-01",13,0,"123878-8049.its",94.914,17.500003038195,58.7500101996546,-0.337887433953178
 "bergelson 41 123879-8069","bergelson","bergelson 41",57599990,170.250029557297,267,0.617149007986116,0.654223968565815,3463.66,1087.0726887279,116.429395213437,970.643293514461,1128.38260869565,1099.64476021314,1272.22222222222,1437.55873715125,162205.028160595,77387.5134353322,27909.3798453784,244744.41749035,339,143.750024956602,172,70.3750122178841,90,21.9375038085944,562,131,"1000-09-01","0999-07-01",14,0,"123879-8069.its",102.075,32.5625056532128,107.000018576392,-0.252598764585061
 "bergelson 45 123880-8101","bergelson","bergelson 45",48841800,113.656744837414,148,0.659754924732653,0.671014492753623,1578.9,848.31050452686,254.011031534464,594.299472992396,1083.55182926829,1110.74799643811,NA,1364.30609597925,104783.853174944,91940.3461788878,83291.5248823753,155062.589830842,159,96.7040526761913,282,82.7733621610997,153,41.3498274019385,235,49,"1000-07-01","0999-06-01",12,0,"123880-8101.its",79.324,17.837180447895,69.5797452182352,-0.423176103321295
@@ -438,32 +438,32 @@
 "bergelson 25 123887-8189","bergelson","bergelson 25",46201550,94.5942289814952,221,0.65134490827498,0.696141479099678,1515.52,598.391092939523,99.0566766699386,499.334416269584,993.439716312057,1021.74504950495,1302.53378378378,1401.58978583196,87316.5510680919,64327.9716806038,30041.8492453175,132582.305139113,262,87.8931550997748,212,62.9589267026756,63,23.0641612673168,214,80,"1000-08-01","0999-07-01",13,0,"123887-8189.its",112.106,19.4019464714928,69.8158395118779,-0.337887433953178
 "bergelson 7 123888-8191","bergelson","bergelson 7",51990550,220.332348859552,201,0.429018265538971,0.508421709295072,7132.99,NA,NA,1322.69206615433,1370.09841827768,1006.3358778626,NA,1419.67630421119,269905.742485894,63898.4584698565,NA,312800.614727099,441,196.99733893948,139,63.4961545896321,496,NA,526,95,"1000-03-01","0999-07-01",7,0,"123888-8191.its",95.313,45.5621261940872,115.082452484153,-0.84961945016188
 "bergelson 40 123889-8193","bergelson","bergelson 40",57599990,162.687528244363,383,0.624895282433255,0.715388213283442,3572.04,1081.89768782946,211.022536635857,870.875151193603,1184.81689387864,1161.74487471526,1478.816,1431.70572416443,277025.048094626,159376.902669601,57766.2600288646,232920.665437616,468,233.812540592455,293,137.187523817278,120,39.0625067816852,524,90,"1000-05-01","0999-07-01",9,0,"123889-8193.its",87.714,41.4375071940117,193.687533626308,-0.679042111425646
-"bergelson 3 123890-8204","bergelson","bergelson 3",57599990,84.7500147135442,325,0.564203278698806,0.65244322092223,1907.58,577.461350253707,135.905648594731,441.555701658976,1132.26671703816,1201.55463762674,1625.74647887324,1372.17551622419,187319.40752073,199983.784719407,36071.2562623709,116291.895189565,425,165.437528721793,448,166.437528895404,120,22.1875038519972,229,49,"1000-10-01","0999-07-01",15,0,"123890-8204.its",102.906,19.3125033528652,123.87502150608,-0.167310095216945
+"bergelson 3 123890-8204","bergelson","bergelson 3",57599990,84.7500147135442,325,0.564203278698806,0.65244322092223,1907.58,577.461350253707,135.905648594731,441.555701658976,1132.26671703816,1201.55463762674,1625.74647887324,1372.17551622419,187319.40752073,199983.784719407,36071.2562623709,116291.895189565,425,165.437528721793,448,166.437528895404,120,22.1875038519972,229,49,"1000-10-01","0999-07-01",15,0,"123890-8204.its",102.906,19.3125033528652,123.87502150608,-0.167310095216944
 "bergelson 46 123891-8222","bergelson","bergelson 46",38562610,159.076369571458,357,0.508613449801846,0.720555306762203,2894,1100.67404669964,258.114479284468,842.559567415172,1269.68203497615,1060.390625,1370.51229508197,1379.60093896714,223667.53702615,63355.1515314964,62436.5415100275,219461.908828267,374,176.160275458534,254,59.7469932662753,92,45.5570823655349,538,163,"1000-09-01","0999-07-01",14,0,"123891-8222.its",104.483,44.4368262417922,151.794704767131,-0.252598764585061
 "bergelson 39 123892-8235","bergelson","bergelson 39",43439550,211.825398743772,81,0.600997656109141,0.63875,4493.27,2209.66626035491,765.198534515206,1444.4677258397,1086.6348773842,1272.15166742805,1905.5037593985,1583.96713615023,66099.3035148845,230781.948708032,210028.695048637,335524.470212053,117,60.8293594201597,505,181.410719033692,NA,110.222136279036,561,28,"1000-04-01","0999-07-01",9,0,"123892-8235.its",87.962,13.0940582948028,43.5087380048827,-0.679042111425646
 "bergelson 16 123893-8246","bergelson","bergelson 16",57599990,187.62503257379,175,0.802802193484281,0.797741273100616,NA,1522.27338928357,369.478814145627,1152.79457513795,972.831460674157,1114.27986348123,1724.7193877551,1514.57361758827,54113.7593947499,102026.267712894,84511.2646720946,284171.924335404,177,55.6250096571197,325,91.5625158962701,507,49.0000085069459,611,63,"1000-02-01","0999-07-01",7,0,"123893-8246.its",117.315,19.4375033745666,51.0625088650189,-0.84961945016188
 "bergelson 4 123894-8262","bergelson","bergelson 4",44725110,273.108327738042,184,0.395364751004607,0.494994438264739,3575.65,1779.97970267709,179.424846579472,1600.55485609762,1123.91148325359,1052.65513733469,1487.45843230404,1462.08075449455,151258.387067131,83289.5883319236,50405.5104615729,399306.429877981,304,134.582117293842,228,79.1233380979946,86,33.8870044142988,554,66,"1000-02-01","0999-07-01",7,0,"123894-8262.its",97.863,30.5063531425635,72.9254774331466,-0.84961945016188
-"bergelson 36 123895-8263","bergelson","bergelson 36",43128180,107.428600047579,158,0.633783665233792,0.722415795586527,2567.9,728.091285094803,158.811524158914,569.279760935889,1049.62313190383,1101.90116678106,1369.76878612717,1323.71406371406,134838.335399268,134011.961552748,39560.7697797588,142204.748728094,213,128.463570686266,267,121.618858018122,106,28.8813485753398,327,45,"1000-10-01","0999-07-01",15,0,"123895-8263.its",97.824,17.1952537760694,111.602205333033,-0.167310095216945
+"bergelson 36 123895-8263","bergelson","bergelson 36",43128180,107.428600047579,158,0.633783665233792,0.722415795586527,2567.9,728.091285094803,158.811524158914,569.279760935889,1049.62313190383,1101.90116678106,1369.76878612717,1323.71406371406,134838.335399268,134011.961552748,39560.7697797588,142204.748728094,213,128.463570686266,267,121.618858018122,106,28.8813485753398,327,45,"1000-10-01","0999-07-01",15,0,"123895-8263.its",97.824,17.1952537760694,111.602205333033,-0.167310095216944
 "bergelson 2 123896-8307","bergelson","bergelson 2",57599990,147.250025564241,244,0.723099985285462,0.768496420047733,2464,969.653918342694,173.559405131841,796.094513210853,956.100543478261,1115.17786561265,1396.86956521739,1375.19949066214,87961.265271053,88168.7653070773,50200.0087152793,202498.160155931,250,92.000015972225,320,79.0625137261309,143,35.9375062391504,393,91,"1000-07-01","0999-06-01",12,0,"123896-8307.its",93.122,28.9375050238724,83.0000144097247,-0.423176103321295
 "bergelson 17 123897-8319","bergelson","bergelson 17",57599990,132.937523079431,189,0.347564250995598,0.548251748251748,3497.1,1075.68768675133,360.99256267232,714.695124079014,1461.29724208376,1052.47818499127,1583.44827586207,1468.49553361542,178826.281046229,37691.8815437294,100450.017439239,195218.158892041,331,122.375021245663,153,35.812506217449,280,63.4375110134568,435,90,"1000-04-01","0999-07-01",9,0,"123897-8319.its",NA,28.5000049479175,74.3750129123286,-0.679042111425646
 "bergelson 18 123898-8323","bergelson","bergelson 18",45730680,304.495800193656,229,0.516292286440032,0.608357628765792,NA,2377.03528572066,442.436806100412,NA,1268.78048780488,1085.96428571429,1369.26108374384,1574.94829369183,184279.78766115,143621.56871492,109407.513730388,479565.140951326,299,145.241662708711,275,132.252570921753,312,79.9025949318926,NA,102,"1000-02-01","0999-07-01",7,0,"123898-8323.its",101.792,39.675771276526,101.708524780301,-0.84961945016188
-"bergelson 22 123899-8393","bergelson","bergelson 22",43060930,86.6121563096756,339,0.648746644528729,0.673579427623393,1005.2,573.013820184562,106.264588340289,466.749231844273,1223.92267798208,1003.0612244898,1422.7731092437,1335.74324324324,217026.989431023,45199.6740432685,28309.4675382069,115691.602573377,301,177.32083352589,177,45.0617299719258,65,19.8973872603309,167,49,"1000-10-01","0999-07-01",15,0,"123899-8393.its",114.033,22.0710514148208,140.03413302964,-0.167310095216945
+"bergelson 22 123899-8393","bergelson","bergelson 22",43060930,86.6121563096756,339,0.648746644528729,0.673579427623393,1005.2,573.013820184562,106.264588340289,466.749231844273,1223.92267798208,1003.0612244898,1422.7731092437,1335.74324324324,217026.989431023,45199.6740432685,28309.4675382069,115691.602573377,301,177.32083352589,177,45.0617299719258,65,19.8973872603309,167,49,"1000-10-01","0999-07-01",15,0,"123899-8393.its",114.033,22.0710514148208,140.03413302964,-0.167310095216944
 "bergelson 20 123900-8491","bergelson","bergelson 20",57599990,107.937518739153,201,0.450394268158081,0.504432624113475,3947.56,1305.07210157502,700.998246701084,604.073854873933,1013.43864468864,1063.50925925926,1654.57520091848,1389.21829762594,138334.399016389,71786.8874630013,180141.906274637,149948.776032774,395,136.500023697921,239,67.500011718752,385,108.875018901913,255,86,"1000-06-01","0999-07-01",11,0,"123900-8491.its",86.616,25.5625044379348,71.9375124891515,-0.508464772689412
-"bergelson 38 123901-8510","bergelson","bergelson 38",55758110,239.79291981023,406,0.620551280419955,0.675535590877678,6485.01,2465.66327301983,1035.75239548112,1429.91087753871,1027.31376975169,1031.98443579767,1480.13312451057,1449.52342487884,176300.093385518,85619.1144212026,244070.970124346,347585.454385021,463,171.612703515238,343,82.965509411994,NA,164.897985243761,607,177,"1000-10-01","0999-07-01",15,0,"123901-8510.its",121.852,57.9144450914853,130.033101911094,-0.167310095216945
+"bergelson 38 123901-8510","bergelson","bergelson 38",55758110,239.79291981023,406,0.620551280419955,0.675535590877678,6485.01,2465.66327301983,1035.75239548112,1429.91087753871,1027.31376975169,1031.98443579767,1480.13312451057,1449.52342487884,176300.093385518,85619.1144212026,244070.970124346,347585.454385021,463,171.612703515238,343,82.965509411994,NA,164.897985243761,607,177,"1000-10-01","0999-07-01",15,0,"123901-8510.its",121.852,57.9144450914853,130.033101911094,-0.167310095216944
 "bergelson 36 123902-8594","bergelson","bergelson 36",38509740,142.748302117854,227,0.476702998754742,0.532356948228883,2522.29,1444.65114539854,568.496281719897,876.154863678643,980.449479940565,1216.41759776536,1512.46122026887,1500.20956123117,246735.812809954,325677.400055155,136723.332850339,214152.36768672,362,251.655814866577,543,267.734863959092,144,90.397909723618,330,82,"1000-08-01","0999-07-01",13,0,"123902-8594.its",87.128,37.6735859551376,148.918169792889,-0.337887433953178
 "bergelson 11 123903-8595","bergelson","bergelson 11",44983740,150.054219591346,139,0.588263355446318,0.582800982800983,4315.23,1907.40120763636,NA,794.066922848122,964.426494345719,1051.12332112332,1558.78832116788,1327.78666666667,143326.988818626,68894.4938771209,256357.430484882,199239.992050461,259,148.613699083269,148,65.5436831174998,328,164.459424672115,339,57,"1000-06-01","0999-07-01",11,0,"123903-8595.its",112.487,28.0901499074999,97.5552499636535,-0.508464772689412
 "bergelson 6 123904-8638","bergelson","bergelson 6",50453860,122.583286987358,87,0.678149030894455,0.690012970168612,3317.16,854.05517040718,200.983789941939,653.071380465241,1057.94557823129,1172.37017310253,NA,1380.41327124563,55482.851064319,125644.301546007,59905.9814254053,169215.596190262,120,52.4439557250922,256,107.171185713046,91,26.6144156264754,320,28,"1000-04-01","0999-07-01",9,0,"123904-8638.its",118.307,10.7742004278761,40.3140612036423,-0.679042111425646
 "bergelson 21 123905-8629","bergelson","bergelson 21",41619800,122.999149443294,359,0.621160016954941,0.720384615384615,4461.19,1733.84081615001,NA,609.40975208915,1108.85394226626,1012.74261603376,1730.0097703957,1299.05063291139,222613.755952696,20761.0800628547,NA,159782.122931874,410,200.760215089933,71,20.499858240549,477,NA,239,71,"1000-02-01","0999-07-01",7,0,"123905-8629.its",100.061,38.7507868850884,163.652876755775,-0.84961945016188
-"bergelson 27 123906-8655","bergelson","bergelson 27",57599990,280.125048632821,206,0.447403449628428,0.542682926829268,4770.94,1804.67718831201,253.917544082907,1550.7596442291,1053.38218714769,995.470383275261,1311.44827586207,1467.72869254797,175190.655415044,53568.7593001318,71310.0123802105,411147.571379787,289,166.312528873703,139,53.8125093424495,164,54.3750094401058,636,89,"1000-10-01","0999-07-01",15,0,"123906-8655.its",98.513,43.0625074761298,106.81251854384,-0.167310095216945
+"bergelson 27 123906-8655","bergelson","bergelson 27",57599990,280.125048632821,206,0.447403449628428,0.542682926829268,4770.94,1804.67718831201,253.917544082907,1550.7596442291,1053.38218714769,995.470383275261,1311.44827586207,1467.72869254797,175190.655415044,53568.7593001318,71310.0123802105,411147.571379787,289,166.312528873703,139,53.8125093424495,164,54.3750094401058,636,89,"1000-10-01","0999-07-01",15,0,"123906-8655.its",98.513,43.0625074761298,106.81251854384,-0.167310095216944
 "bergelson 17 123907-8688","bergelson","bergelson 17",57599990,184.500032031256,343,0.581843843061545,0.667966406718656,4076.32,1292.33897436441,183.739406899203,1108.5995674652,1008.84652049571,1146.11909650924,1319.83985765125,1499.26490514905,198427.534449225,104655.018169274,46359.383048504,276614.423023337,437,196.687534147141,321,91.3125158528673,167,35.1250060980913,492,149,"1000-11-01","0999-07-01",16,0,"123907-8688.its",90.147,55.9375097113732,141.625024587678,-0.0820214258488275
 "bergelson 1 123908-8712","bergelson","bergelson 1",57599990,136.375023676219,224,0.560786883142767,0.653068463994324,4071.65,1348.55648412439,619.905732622523,728.650751501867,1034.27336999214,1053.02170283806,1498.54800936768,1437.47479376719,164578.778572705,78845.0136883704,159970.027772574,196035.659033969,289,159.125027625873,193,74.8750129991342,345,106.750018532989,295,86,"1000-06-01","0999-07-01",11,0,"123908-8712.its",112.353,34.7500060329872,116.562520236549,-0.508464772689412
 "bergelson 6 123909-8735","bergelson","bergelson 6",57599990,115.125019986983,140,0.767321000248132,0.768028846153846,6629.38,1052.35080769979,293.302550920582,759.048256779211,1039.01282051282,1199.20603015075,1516.81701030928,1617.21498371335,50651.8837937298,74575.6379471594,73565.6377718121,186181.907323248,191,48.7500084635431,291,62.1875107964428,274,48.5000084201403,607,88,"1000-11-01","0999-07-01",16,0,"123909-8735.its",112.031,18.8125032660596,40.6875070638033,-0.0820214258488275
 "bergelson 29 123910-8742","bergelson","bergelson 29",50684930,208.890492696744,297,0.656053188753387,0.676843130886651,2120.97,1325.83314211936,165.363708700002,1160.46943341936,1204.88156920799,1131.8407960199,1334.68609865471,1403.67222033322,231234.88579347,48475.9473871228,42280.2596353591,293213.781690139,386,191.915032732609,105,42.8292985706008,78,31.6780549958341,359,84,"1000-01-01","0999-07-01",6,0,"123910-8742.its",89.923,43.0423796580167,149.298815249424,-0.934908119529997
-"bergelson 2 123911-8757","bergelson","bergelson 2",57599990,139.437524207903,233,0.699405935860198,0.728860936408106,3963.64,1186.61458100948,402.221944830199,784.392636179277,906.822204344328,1218.08038392322,1605.32945736434,1487.2344240251,70448.7622306879,126908.772032773,103543.767976349,207376.286002827,272,77.6875134874155,335,104.187518088111,333,64.5000111979186,466,101,"1000-09-01","0999-06-01",15,0,"123911-8757.its",101.399,26.0625045247404,68.0625118164083,-0.167310095216945
-"bergelson 23 123912-8770","bergelson","bergelson 23",57599990,148.500025781254,337,0.457551041991385,0.517924528301887,4010.58,1556.26277018451,725.954501033768,830.308269150741,1289.47314838381,1138.65785609398,1443.37310195228,1411.16582491582,316646.304973317,242320.66706956,166348.778879996,209558.161381625,505,245.562542632386,479,212.812536946621,292,115.250020008684,366,86,"1000-10-01","0999-07-01",15,0,"123912-8770.its",84.681,34.3125059570323,140.625024414067,-0.167310095216945
-"bergelson 19 123913-8786","bergelson","bergelson 19",46277610,268.847073131045,249,0.668135308783769,0.736288848263254,5383.64,2438.89569923771,720.047297170273,1718.84840206744,967.763855421687,1021.65413533835,1441.51183970856,1566.44386574074,156213.685192472,63421.771349039,184690.004518384,421133.848528478,299,161.417151836493,109,62.0775359833838,398,128.122433289014,561,143,"1000-07-01","0999-07-01",11,0,"123913-8786.its",107.303,70.7901726126306,127.500102101211,-0.508464772689412
+"bergelson 2 123911-8757","bergelson","bergelson 2",57599990,139.437524207903,233,0.699405935860198,0.728860936408106,3963.64,1186.61458100948,402.221944830199,784.392636179277,906.822204344328,1218.08038392322,1605.32945736434,1487.2344240251,70448.7622306879,126908.772032773,103543.767976349,207376.286002827,272,77.6875134874155,335,104.187518088111,333,64.5000111979186,466,101,"1000-09-01","0999-06-01",15,0,"123911-8757.its",101.399,26.0625045247404,68.0625118164083,-0.167310095216944
+"bergelson 23 123912-8770","bergelson","bergelson 23",57599990,148.500025781254,337,0.457551041991385,0.517924528301887,4010.58,1556.26277018451,725.954501033768,830.308269150741,1289.47314838381,1138.65785609398,1443.37310195228,1411.16582491582,316646.304973317,242320.66706956,166348.778879996,209558.161381625,505,245.562542632386,479,212.812536946621,292,115.250020008684,366,86,"1000-10-01","0999-07-01",15,0,"123912-8770.its",84.681,34.3125059570323,140.625024414067,-0.167310095216944
+"bergelson 19 123913-8786","bergelson","bergelson 19",46277610,268.847073131045,249,0.668135308783769,0.736288848263254,5383.64,2438.89569923771,720.047297170273,1718.84840206744,967.763855421687,1021.65413533835,1441.51183970856,1566.44386574074,156213.685192472,63421.771349039,184690.004518384,421133.848528478,299,161.417151836493,109,62.0775359833838,398,128.122433289014,561,143,"1000-07-01","0999-07-01",11,0,"123913-8786.its",107.303,70.7901726126306,127.50010210121,-0.508464772689412
 "bergelson 37 123914-8790","bergelson","bergelson 37",57599990,87.6250152126762,171,0.474640827518359,0.561754887935145,1437.81,536.920718215402,72.1143875198589,464.806330695544,1135.06962351728,1199.36052366566,1441.50214592275,1331.37660485021,137556.273881298,148870.650845599,20991.8786444234,116661.895253801,272,121.1875210395,385,124.125021549483,80,14.5625025282122,260,53,"1000-08-01","0999-07-01",13,0,"123914-8790.its",100.195,19.8125034396707,75.3750130859398,-0.337887433953178
-"bergelson 8 123915-8797","bergelson","bergelson 8",57599990,172.875030013026,400,0.885773845777111,0.902044293015332,4504.88,2191.73663050983,NA,1069.80456072996,911.736045411542,974.550264550265,1571.05282600665,1466.36659436009,120463.145913741,11511.8769985898,265802.546146275,253498.169010099,380,132.125022938372,51,11.8125020507816,393,NA,365,150,"1000-10-01","0999-07-01",15,0,"123915-8797.its",124.421,63.187510970054,134.125023285594,-0.167310095216945
+"bergelson 8 123915-8797","bergelson","bergelson 8",57599990,172.875030013026,400,0.885773845777111,0.902044293015332,4504.88,2191.73663050983,NA,1069.80456072996,911.736045411542,974.550264550265,1571.05282600665,1466.36659436009,120463.145913741,11511.8769985898,265802.546146275,253498.169010099,380,132.125022938372,51,11.8125020507816,393,NA,365,150,"1000-10-01","0999-07-01",15,0,"123915-8797.its",124.421,63.187510970054,134.125023285594,-0.167310095216944
 "bergelson 29 123916-8885","bergelson","bergelson 29",43514930,162.647624619872,261,0.757276125939798,0.756869275603664,1814.87,996.343278042732,113.026862274626,883.316415768105,1083.13543599258,1017.17267552182,1285.26315789474,1371.73448626653,193194.933325183,44347.5377301538,32324.3539631111,223109.355800411,259,178.366367589239,97,43.598829183455,79,25.1499887509873,281,54,"1000-04-01","0999-07-01",9,0,"123916-8885.its",110.626,39.2968574234177,152.389076576706,-0.679042111425646
 "bergelson 12 123917-8922","bergelson","bergelson 12",57599990,189.625032921013,208,0.526315905509959,0.607361963190184,2966.29,1207.4377096246,149.820026010421,1057.61768361418,1081.47727272727,998.513931888545,1298.73362445415,1397.05339485827,101118.142555233,40315.0069991332,37176.2564542112,264916.295992412,223,93.5000162326417,169,40.3750070095498,117,28.6250049696189,482,65,"1000-04-01","0999-07-01",9,0,"123917-8922.its",95.895,23.1250040147576,64.5000111979186,-0.679042111425646
 "bergelson 26 123918-8948","bergelson","bergelson 26",57599990,72.5625125976584,111,0.262999326210415,NA,1849.7,514.661964351036,128.611897328454,386.050067022581,1040.68516912402,1101.961414791,1488.21705426357,1387.31266149871,74994.388019859,42838.7574372843,35996.25624935,100666.892476891,285,72.0625125108529,128,38.8750067491331,95,24.1875041992195,254,42,"1000-04-01","0999-07-01",9,0,"123918-8948.its",75.779,9.12500158420166,25.937504503039,-0.679042111425646
@@ -475,7 +475,7 @@
 "bergelson 9 123924-9039","bergelson","bergelson 9",31083800,122.996544823992,420,0.613944617469299,0.689176245210728,1448.48,934.355645062702,280.309357285789,654.046287776913,1216.15969581749,1061.82926829268,1370.59734513274,1266.40301318267,259306.133741692,50420.4762609462,71749.1426402177,155763.194976161,421,213.217174219368,91,47.4845417870402,100,52.3488119213224,203,92,"1000-04-01","0999-07-01",9,0,"123924-9039.its",98.007,41.1146642302421,167.585687721578,-0.679042111425646
 "bergelson 2 123925-9061","bergelson","bergelson 2",57599990,178.750031032992,227,0.539779593276492,0.626373626373626,4293.48,1320.83835431221,319.225055421017,1001.6132988912,1308.24611032532,1137.26271186441,1692.04684317719,1441.20979020979,115616.270072269,83873.139561309,103849.393029409,257616.294725051,254,88.3750153428846,259,73.7500128038217,270,61.3750106553838,568,67,"1000-01-01","0999-06-01",7,0,"123925-9061.its",102.988,23.3125040473097,66.5000115451409,-0.84961945016188
 "bergelson 23 123926-9077","bergelson","bergelson 23",57599860,98.3127389545738,283,0.541926496512003,0.607384441939121,2310.18,929.499759200804,428.809792246023,500.689966954781,1320.75109993715,1193.87414965986,1434.2721791559,1303.16592498411,262665.013421908,219374.908202902,104074.627959165,128117.811397458,400,198.875483377911,512,183.750446615669,163,72.5626763676162,195,68,"1000-03-01","0999-07-01",7,0,"123926-9077.its",113.217,28.3125688152714,135.875330252539,-0.84961945016188
-"bergelson 6 123927-9123","bergelson","bergelson 6",57599990,83.562514507381,176,0.678474776543233,0.712468193384224,1733.19,517.304464809803,77.4525134466169,439.851951363186,1021.62256267409,1271.02432778489,1295.99190283401,1309.82797307405,91690.6409185141,62041.8857711607,20006.8784734164,109452.519002173,215,89.7500155815999,209,48.8125084743938,97,15.437502680122,255,53,"1000-09-01","0999-07-01",14,63580,"123927-9123.its",99.409,18.1875031575526,70.8125122938389,-0.252598764585061
+"bergelson 6 123927-9123","bergelson","bergelson 6",57599990,83.562514507381,176,0.678474776543233,0.712468193384224,1733.19,517.304464809803,77.4525134466169,439.851951363186,1021.62256267409,1271.02432778489,1295.99190283401,1309.82797307405,91690.6409185141,62041.8857711607,20006.8784734164,109452.519002173,215,89.7500155815999,209,48.8125084743938,97,15.437502680122,255,53,"1000-09-01","0999-07-01",14,63580,"123927-9123.its",99.409,18.1875031575526,70.812512293839,-0.252598764585061
 "bergelson 40 123928-9228","bergelson","bergelson 40",57599990,130.937522732209,314,0.716502440255593,0.739891135303266,3177.78,1067.88331039641,341.545059296017,726.338251100391,1053.32019272887,1142.8093492209,1480.65856129686,1448.58711217184,150295.651092995,155850.652057405,91338.1408573161,189674.407929585,458,142.68752477214,302,136.375023676219,207,61.6875107096373,302,57,"1000-03-01","0999-07-01",7,0,"123928-9228.its",100.456,25.1250043619799,121.500021093754,-0.84961945016188
 "bergelson 18 123929-9230","bergelson","bergelson 18",46896300,NA,244,0.478423625419904,0.587968217934166,4867.95,NA,576.126048323642,NA,1039.42186845413,1102.39823982398,1419.04948939513,1524.47994711327,190461.934097146,153849.578751415,138672.347285394,NA,344,183.238336499894,261,139.55898439749,204,97.721995125415,602,92,"1000-05-01","0999-07-01",9,0,"123929-9230.its",104.493,46.9802521734124,122.056537509356,-0.679042111425646
 "bergelson 31 123930-9241","bergelson","bergelson 31",57599990,89.0625154622423,263,0.664779800333802,0.70756062767475,3675.06,878.267652477023,361.053187682845,517.214464794178,1067.57782839787,1034.1054313099,1425.33333333333,1340.84912280702,87875.015256079,40459.3820241983,84183.7646152369,119419.395732534,341,82.3125142903671,272,39.1250067925359,280,59.062510253908,365,104,"1000-11-01","0999-07-01",16,0,"123930-9241.its",83.093,26.0000045138897,63.1250109592033,-0.0820214258488275
@@ -491,9 +491,9 @@
 "bergelson 4 123940-9363","bergelson","bergelson 4",46409180,243.650070955789,295,0.60479060163844,0.653380102040816,2773.66,1662.73526056698,193.560239590529,1469.17502097645,1039.71759101735,1074.44947209653,1445.24390243902,1461.65870741802,237035.603731848,110516.755521214,55157.5356427328,356133.247775548,446,227.980757255353,229,102.858960231575,82,38.164863072349,402,106,"1000-05-01","0999-07-01",9,0,"123940-9363.its",96.366,54.2996019322039,162.433380637193,-0.679042111425646
 "bergelson 4 123941-9369","bergelson","bergelson 4",42691430,261.663757808066,198,0.468404514563154,0.552421052631579,3383.45,1730.06797851466,87.2041063042395,1642.86387221042,1119.14923291492,1074.03787416005,1333.51351351351,1525.62681276184,202997.276034089,148262.07508158,24963.8861944892,399201.244840007,294,181.385350642974,313,138.041756858461,62,18.7203848641285,495,77,"1000-01-01","0999-07-01",6,0,"123941-9369.its",106.116,42.3316810891554,113.587200053969,-0.934908119529997
 "bergelson 12 123942-9392","bergelson","bergelson 12",57599990,179.250031119797,146,0.541104759151065,0.590999338186631,4823.69,1748.44655354975,631.568234647263,1116.87831890249,944.676308539945,1069.23368022706,1384.1917973462,1442.19316596932,85729.3898835746,70636.26226324,143436.89990224,258513.169880759,324,90.7500157552111,311,66.062511469186,328,103.625017990455,476,85,"1000-09-01","0999-07-01",14,0,"123942-9392.its",79.615,29.2500050781259,56.5000098090295,-0.252598764585061
-"bergelson 26 123943-9409","bergelson","bergelson 26",57599990,115.375020030385,237,0.560757659250448,0.617636807249913,1753.51,733.510752345617,97.4012669099422,636.109485435675,1157.65042979943,1184.60628129267,1283.4219269103,1385.77464788732,176758.780687288,162661.278239805,24144.3791917325,159883.7777576,305,152.687526508251,327,137.31252383898,84,18.8125032660596,313,78,"1000-10-01","0999-07-01",15,0,"123943-9409.its",100.307,24.8750043185771,113.187519650611,-0.167310095216945
+"bergelson 26 123943-9409","bergelson","bergelson 26",57599990,115.375020030385,237,0.560757659250448,0.617636807249913,1753.51,733.510752345617,97.4012669099422,636.109485435675,1157.65042979943,1184.60628129267,1283.4219269103,1385.77464788732,176758.780687288,162661.278239805,24144.3791917325,159883.7777576,305,152.687526508251,327,137.31252383898,84,18.8125032660596,313,78,"1000-10-01","0999-07-01",15,0,"123943-9409.its",100.307,24.8750043185771,113.187519650611,-0.167310095216944
 "bergelson 34 123944-9411","bergelson","bergelson 34",57599990,108.062518760854,203,0.561164657945113,0.65050916496945,3155.67,814.8913914742,245.81191767568,569.07947379852,1188.63992623329,951.210374639769,1642.81004709576,1372.02429149798,161135.027974831,20629.3785814893,65404.3863549282,148264.400740347,263,135.56252353516,99,21.6875037651916,181,39.8125069118936,425,71,"1000-02-01","0999-07-01",7,0,"123944-9411.its",101.78,22.4375038954,101.187517567277,-0.84961945016188
-"bergelson 9 123945-9453","bergelson","bergelson 9",35269430,130.855531263193,460,0.623486377576747,0.688614146060955,2588.42,1375.4641342375,648.392219551039,727.071914686458,1084.71625521,1025.09036144578,1361.85752930568,1289.48517940718,345331.013288278,34737.9586230909,154158.431253355,168736.26820734,607,318.360687995241,87,33.8877038840718,208,113.197179540469,273,112,"1000-10-01","0999-07-01",15,0,"123945-9453.its",100.882,65.8360512205613,249.666637651927,-0.167310095216945
+"bergelson 9 123945-9453","bergelson","bergelson 9",35269430,130.855531263193,460,0.623486377576747,0.688614146060955,2588.42,1375.4641342375,648.392219551039,727.071914686458,1084.71625521,1025.09036144578,1361.85752930568,1289.48517940718,345331.013288278,34737.9586230909,154158.431253355,168736.26820734,607,318.360687995241,87,33.8877038840718,208,113.197179540469,273,112,"1000-10-01","0999-07-01",15,0,"123945-9453.its",100.882,65.8360512205613,249.666637651927,-0.167310095216944
 "bergelson 22 123946-9454","bergelson","bergelson 22",50660180,76.0360504048742,238,0.39789380178394,0.53796751038912,2270.76,631.67197589902,226.593115144873,405.078860754146,NA,982.412060301507,1466.77816901408,1356.3738317757,289604.261177122,27785.1361759867,59203.6585736569,103133.30904075,279,162.091804648148,75,28.2825682814392,210,40.3630622709986,180,20,"1000-03-01","0999-07-01",7,0,"123946-9454.its",73.642,9.59333346229721,102.257828535153,-0.84961945016188
 "bergelson 38 123947-9457","bergelson","bergelson 38",48847740,133.836283930434,249,0.632796170240235,0.691775836972344,2027.64,960.71752756627,196.870520519475,763.847007046795,1075.67175871524,1020.48625792812,1297.45283018868,1470.90859030837,202389.793263721,35573.4779132054,50678.7007955742,196860.939728225,309,188.152000481496,107,34.85934047307,153,39.0601489444547,239,70,"1000-04-01","0999-07-01",9,0,"123947-9457.its",106.466,31.985103097912,143.269678392491,-0.679042111425646
 "bergelson 3 123948-9470","bergelson","bergelson 3",57599990,117.312520366757,116,0.451252874516837,0.469809760132341,1951.28,690.120119812521,59.0768852564037,631.043234556117,968.035242290749,1233.87417218543,1360.22099447514,1420.41555673948,68670.0119218771,209604.411389655,15387.5026714414,166632.528929258,183,70.9375123155403,431,169.875029492193,105,11.312501963976,343,29,"1000-03-01","0999-07-01",7,0,"123948-9470.its",77.663,8.62500149739609,38.687506716581,-0.84961945016188
@@ -514,10 +514,10 @@
 "bergelson 20 123963-9779","bergelson","bergelson 20",57599990,94.9375164822077,569,0.546869001830386,0.59325246398787,6205.64,1849.62032111464,NA,666.970115793423,1091.03075982889,997.267267267267,1640.2485380117,1635.55628703094,334741.933114919,83022.514413631,NA,155275.651957578,639,306.812553266068,223,83.2500144531275,401,NA,375,147,"1000-12-01","0999-07-01",17,0,"123963-9779.its",80.772,66.687511577693,197.125034223096,0.00326724351928943
 "bergelson 13 123964-9863","bergelson","bergelson 13",44433300,191.126925076463,173,0.503776645728666,0.559368191721133,3896.93,1570.29201072169,763.729905273747,806.562105447941,1098.85531667635,1186.82735426009,1662.60465116279,1441.05553200509,153219.949902438,85772.1573684601,202730.654711669,275424.512696559,299,139.435963567865,243,72.2701217330246,420,121.935575345518,587,72,"1000-06-01","0999-07-01",11,0,"123964-9863.its",103.753,33.0562888644328,85.557453531473,-0.508464772689412
 "bergelson 1 123965-9866","bergelson","bergelson 1",57599990,67.0625116427972,425,0.769382153042665,0.812588904694168,2759.48,773.332634259138,440.920701548733,332.411932710405,1068,1146.6008583691,1345.50496688742,1285.53588070829,165540.028739588,83486.8894942516,101585.642636396,86211.2649672335,412,155.000026909727,376,72.8125126410612,270,75.5000131076412,201,85,"1000-12-01","0999-07-01",17,0,"123965-9866.its",108.295,26.4375045898445,144.687525119362,0.00326724351928943
-"bergelson 42 123966-9892","bergelson","bergelson 42",57599990,198.562534472662,351,0.699778648261178,0.751604621309371,4909.66,1388.12961599473,276.94817308128,1111.18144291344,1067.47967479675,1120.26132404181,1450.24869109948,1397.88794460183,188743.782768018,120568.14593197,69249.387022463,277568.173188919,384,176.81253069662,240,107.625018684899,426,47.750008289932,466,125,"1000-10-01","0999-07-01",15,0,"123966-9892.its",99.601,44.5000077256958,149.750025998268,-0.167310095216945
+"bergelson 42 123966-9892","bergelson","bergelson 42",57599990,198.562534472662,351,0.699778648261178,0.751604621309371,4909.66,1388.12961599473,276.94817308128,1111.18144291344,1067.47967479675,1120.26132404181,1450.24869109948,1397.88794460183,188743.782768018,120568.14593197,69249.387022463,277568.173188919,384,176.81253069662,240,107.625018684899,426,47.750008289932,466,125,"1000-10-01","0999-07-01",15,0,"123966-9892.its",99.601,44.5000077256958,149.750025998268,-0.167310095216944
 "bergelson 4 123967-9947","bergelson","bergelson 4",35310800,309.321793898751,282,0.677453960307527,0.721401435204728,4429.1,1971.56246814006,70.1142993078605,1901.4481688322,1085.8064516129,1101.67019027484,1299.05797101449,1517.14568226763,236787.158603034,159378.207234047,18276.9011180715,469286.224044768,338,218.074923252942,330,144.669619493186,38,14.0693498872866,650,117,"1000-06-01","0999-07-01",11,0,"123967-9947.its",96.677,63.5159781143446,177.192247131189,-0.508464772689412
 "bergelson 35 123968-9973","bergelson","bergelson 35",40255180,101.949612447392,175,0.543873099002244,0.588358678552701,3816.85,1334.00889028443,845.257082442558,488.751807841873,1196.66471277843,973.504273504274,1755.72828216852,1271.67543859649,182571.18711182,20372.0365925578,240388.24320249,129646.818123779,234,152.566700732676,50,20.9264993970962,360,136.916540927155,234,56,"1000-04-01","0999-07-01",9,0,"123968-9973.its",95.704,26.5605569270837,103.291054716436,-0.679042111425646
-"bergelson 37 123969-9993","bergelson","bergelson 37",57599990,52.3750090928835,424,0.666286183289714,0.733657646701125,2395.94,800.4032639589,529.056966850168,271.346297108732,1172.15885947047,1103.66502463054,1564.37855402112,1316.75417661098,215823.787469408,70013.762155167,120359.395895728,68965.0119730924,463,184.125031966151,196,63.4375110134568,228,76.9375133572072,169,111,"1000-10-01","0999-07-01",15,0,"123969-9993.its",114.446,37.250006467015,153.750026692713,-0.167310095216945
+"bergelson 37 123969-9993","bergelson","bergelson 37",57599990,52.3750090928835,424,0.666286183289714,0.733657646701125,2395.94,800.4032639589,529.056966850168,271.346297108732,1172.15885947047,1103.66502463054,1564.37855402112,1316.75417661098,215823.787469408,70013.762155167,120359.395895728,68965.0119730924,463,184.125031966151,196,63.4375110134568,228,76.9375133572072,169,111,"1000-10-01","0999-07-01",15,0,"123969-9993.its",114.446,37.250006467015,153.750026692713,-0.167310095216944
 "bergelson 23 123970-9996","bergelson","bergelson 23",57599990,102.812517849395,267,0.529878717999084,0.613780918727915,3639.86,945.749539192628,319.548180477115,626.201358715514,1202.96296296296,1240.94477711244,1508.50657108722,1534.18237082067,196910.03418577,116571.270238068,78913.7637003062,157733.152384228,352,163.687528417974,576,93.9375163085966,142,52.3125090820328,391,89,"1000-09-01","0999-07-01",14,0,"123970-9996.its",104.047,25.8125044813376,114.562519889326,-0.252598764585061
 "bergelson 38 123971-9998","bergelson","bergelson 38",46490990,268.38748755404,273,0.779638390596992,0.827359180687637,6097.86,2207.13940486103,582.537132463731,1624.6022723973,1116.87215556475,1144.88407258065,1391.57854984894,1521.93306405078,209032.502857005,175888.274265616,142668.934346203,408467.79128601,310,187.158845186992,431,153.629767832434,287,102.523091033338,645,134,"1000-02-01","0999-07-01",7,0,"123971-9998.its",102.186,58.6178096013873,176.395469315667,-0.84961945016188
 "bergelson 18 123972-9997","bergelson","bergelson 18",44950240,254.681621277217,165,0.507426948246391,0.608262817322051,4018.66,1797.57331662745,272.309113366247,1525.26420326121,1171.17647058824,1105.362392296,1262.43710691824,1475.49685534591,172212.829119489,174663.539060081,64303.9058300912,375781.931308932,234,147.042596435525,295,158.014729176085,118,50.9363242554434,599,82,"1000-07-01","0999-07-01",11,830,"123972-9997.its",92.637,38.9230402329331,100.911585789086,-0.508464772689412
@@ -552,7 +552,7 @@
 "cougar FM07 e20101019_164129_003694","cougar","cougar FM07",36010860,120.563629971625,631,0.742359515572608,0.747382448124881,1966.76,1045.89048970227,468.215754913934,577.674734788339,1095.44490644491,1023.27351821642,1415.41336353341,1204.59369817579,NA,188123.249486405,124943.308768521,145230.188893017,774,NA,335,183.844540230364,198,88.2733708664553,194,113,"2010-10-16","2007-12-02",34,0,"e20101019_164129_003694.its",105.644,63.0809705738769,NA,1.45317462277728
 "cougar BE05 e20101025_163308_003735","cougar","cougar BE05",37465360,140.673945212324,NA,0.841604740994119,0.845421086815328,3343.53,856.189290587359,130.003288370911,726.186002216447,1093.77914110429,1035.24665744583,1205.08896797153,1279.37158469945,428282.018376442,215762.507019818,32538.5369311812,179974.248212215,NA,391.561698593047,600,208.416521287931,81,27.0009416698518,531,174,"2010-10-21","2007-08-27",37,7528150,"e20101025_163308_003735.its",105.832,55.8275697871314,NA,1.70904063088163
 "cougar KC10 e20101026_164945_003517","cougar","cougar KC10",41650050,173.301112483658,429,0.562619938957718,0.633311814073596,2898.6,1144.18407660975,218.901345856728,925.282730753024,1078.10773480663,1060.40488431877,1375.92827004219,1348.34912718204,269865.702442134,142616.011265293,56371.6970327767,233670.403757018,511,250.314225313055,326,134.492035423727,134,40.9699388115981,476,102,"2010-10-22","2008-09-08",25,0,"e20101026_164945_003517.its",97.793,50.3912960488643,170.621643911592,0.685576598464225
-"cougar BN32 e20101027_111735_003694","cougar","cougar BN32",39650179,200.836419931421,381,0.63930763140656,0.711912943871707,5120.48,2149.05138259275,1037.55526551343,1111.49611707932,1148.32313341493,1182.01761409127,1580.71391349661,1373.82459312839,170362.307822116,134042.875317158,NA,275914.012897647,445,148.357463909558,349,113.401757908836,459,NA,490,134,"2010-10-23","2009-07-17",15,6884520,"e20101027_111735_003694.its",78.132,44.9430505723568,116.034785114085,-0.167310095216945
+"cougar BN32 e20101027_111735_003694","cougar","cougar BN32",39650179,200.836419931421,381,0.63930763140656,0.711912943871707,5120.48,2149.05138259275,1037.55526551343,1111.49611707932,1148.32313341493,1182.01761409127,1580.71391349661,1373.82459312839,170362.307822116,134042.875317158,NA,275914.012897647,445,148.357463909558,349,113.401757908836,459,NA,490,134,"2010-10-23","2009-07-17",15,6884520,"e20101027_111735_003694.its",78.132,44.9430505723568,116.034785114085,-0.167310095216944
 "cougar WG24 e20101102_084704_007593","cougar","cougar WG24",45420989,125.149190388611,815,0.690382922967846,0.743201702530149,5424.26,1705.91582671174,973.205757364728,732.710069347015,1163.97253037507,990.738993710692,1615.54736245037,1384.2678910703,349276.410515852,49941.5809726204,225744.886356393,173240.005848398,872,300.072726289601,112,50.4084136080789,396,139.73275658969,496,209,"2010-10-30","2007-08-13",38,1070710,"e20101102_084704_007593.its",110.132,66.6564085603684,251.645775480582,1.79432930024975
 "cougar FJ11 e20101102_130729_003577","cougar","cougar FJ11",34809239,216.45977379741,671,0.779553748059174,0.792358803986711,NA,NA,NA,1201.09112411219,1033.11746031746,1111.68532338308,NA,1427.23363592929,168282.21955671,184874.021520551,NA,308938.669989309,658,162.887789646881,701,166.300676668054,NA,NA,672,157,"2010-10-31","2007-11-08",35,8922270,"e20101102_130729_003577.its",108.745,43.5401647246583,152.132024489246,1.53846329214539
 "cougar RH29 e20101107_174712_004278","cougar","cougar RH29",43998550,236.298696207034,424,0.709308058369985,0.751939753537198,4173.08,1820.94982675565,369.483448886384,1451.46637786927,1001.16816743733,1049.29588607595,1367.87841191067,1377.91897506925,336594.728689923,108519.848949568,90208.3364110863,325600.457287797,549,336.20198847462,238,103.421590029671,134,65.9476278195531,612,168,"2010-10-30","2008-08-15",26,0,"e20101107_174712_004278.its",108.24,82.6390869699115,272.299882609768,0.770865267832342
@@ -600,7 +600,7 @@
 "cougar FM07 e20110215_163144_003264","cougar","cougar FM07",47974930,144.150288494428,496,0.741389638370353,0.759702575262967,1629.13,897.317161275691,145.386934384271,751.93022689142,1077.23865877712,1089.58940905602,1270.09049773756,1312.28526808954,409834.052910551,213071.535487389,42125.5017985435,189166.299982095,582,380.448705188314,350,195.55213525064,120,33.1673230164171,220,72,"2011-02-13","2007-12-02",38,0,"e20110215_163144_003264.its",101.926,49.4508277552463,317.941057965066,1.79432930024975
 "cougar SM42 e20110221_171410_004183","cougar","cougar SM42",57599990,159.625027712678,536,0.66015611710673,0.687591669111176,3680.55,1332.39335631829,430.201949687839,902.191406630453,1047.33862959285,1259.51843950015,1504.84601449275,1393.72748629601,197750.659331712,258280.044840286,103834.393026804,222473.788623922,666,188.812532779954,629,205.062535601135,288,69.0000119791687,518,174,"2011-02-12","2008-03-27",34,0,"e20110221_171410_004183.its",90.227,47.3125082139771,150.187526074223,1.45317462277728
 "cougar BN32 e20110223_114307_003524","cougar","cougar BN32",39848110,128.016109170548,374,0.562316825807186,0.605002156101768,1935.21,1032.24529344052,375.669009144976,656.576284295541,1014.35011990408,1087.81961471103,1376.35549872123,1293.71206774877,191068.334232163,112232.274002456,97237.133705965,165615.985300181,490,188.365270021589,241,103.171768999835,137,70.6482691399918,279,86,"2011-02-19","2009-07-17",19,0,"e20110223_114307_003524.its",95.084,34.6013901286661,130.455371660036,0.173844582255523
-"cougar AM28 e20110223_120259_003694","cougar","cougar AM28",44181430,215.194483293094,266,0.62775785543961,0.687701520036849,2978.51,1587.99350767958,249.22552303083,1338.76798464875,989.170392449081,1048.37755102041,1417.8880866426,1548.84892086331,162247.351432491,83715.624415054,64005.0808676858,333303.743224246,338,164.023663335478,149,79.8525534370436,161,45.141137351145,401,84,"2011-02-21","2009-11-04",15,0,"e20110223_120259_003694.its",107.678,36.9929176126712,123.201082445724,-0.167310095216945
+"cougar AM28 e20110223_120259_003694","cougar","cougar AM28",44181430,215.194483293094,266,0.62775785543961,0.687701520036849,2978.51,1587.99350767958,249.22552303083,1338.76798464875,989.170392449081,1048.37755102041,1417.8880866426,1548.84892086331,162247.351432491,83715.624415054,64005.0808676858,333303.743224246,338,164.023663335478,149,79.8525534370436,161,45.141137351145,401,84,"2011-02-21","2009-11-04",15,0,"e20110223_120259_003694.its",107.678,36.9929176126712,123.201082445724,-0.167310095216944
 "cougar BE05 e20110223_134300_003606","cougar","cougar BE05",31840740,131.831106940354,NA,0.849972304259799,0.862745098039216,1668.9,710.393288598192,117.965097544844,592.428191053349,1230.70271557885,1172.26928471248,1271.75355450237,1175.53173241852,NA,NA,30339.2446281085,154971.649528246,NA,NA,NA,NA,58,23.8562294720537,303,124,"2011-02-19","2007-08-27",41,7232710,"e20110223_134300_003606.its",107.22,57.6619764490398,NA,2.0501953083541
 "cougar KC10 e20110224_134759_003541","cougar","cougar KC10",44112930,166.563408959686,551,0.864450452959305,0.872787610619469,2899.89,1099.58372749214,184.866613938362,914.717113553781,1131.07164541591,1145.7811550152,1503.03225806452,1408.147966683,304053.709422612,153816.94210745,57037.1544125498,234545.925650371,502,268.819142142678,300,134.246353620129,106,37.9480574062979,352,149,"2011-02-22","2008-09-08",29,0,"e20110224_134759_003541.its",107.295,69.7754603922251,266.04444547211,1.02673127593669
 "cougar WM15 e20110301_111859_003606","cougar","cougar WM15",40638740,200.911740865982,491,0.870380304029065,0.870611551528879,2890.9,1608.0424737578,504.402744770138,1103.63972898766,997.256394640682,1043.19233311302,1433.25560538117,1359.96913580247,290116.37663963,139818.803437311,141566.593846167,273233.766598079,463,290.914531306827,272,134.029746000983,189,98.7727473834081,403,135,"2011-02-27","2008-01-17",37,0,"e20110301_111859_003606.its",111.815,84.7762504447726,285.599405887092,1.70904063088163
@@ -629,7 +629,7 @@
 "cougar BH35 e20110419_170007_003577","cougar","cougar BH35",36727490,281.217148245088,339,0.507280958168725,0.616818722729076,3584.73,1951.53330652326,278.838221724381,1672.69508479888,1216.21512151215,1058.15136476427,1526.31460674157,1466.3053328686,264890.086417558,83597.6539643738,66575.6358520552,412350.204165871,467,217.798711537325,188,79.0034930238903,185,43.6185538407335,483,155,"2011-04-15","2010-01-26",14,0,"e20110419_170007_003577.its",90.904,61.7521099318249,156.830755382412,-0.252598764585061
 "cougar KC10 e20110421_111820_003541","cougar","cougar KC10",44378240,165.486508703365,462,0.780102482511461,0.799469111969112,3052.35,1432.5128711729,539.158290189066,893.354580983833,1072.75953389831,1081.49437600428,1541.69230769231,1388.85784313725,328599.421698562,163795.139239411,138195.025309701,229837.235546069,484,306.312282776424,328,151.452603798618,273,89.6385255476558,360,152,"2011-04-19","2008-09-08",31,0,"e20110421_111820_003541.its",105.082,88.8273171716589,272.566014334953,1.19730861467293
 "cougar WG24 e20110424_180615_003559","cougar","cougar WG24",43525990,111.078461397432,673,0.848817557642297,0.863982371794872,4314.54,2233.49589521111,NA,556.627155407608,1275.45325779037,1062.58675078864,1588.96484375,1249.06924795235,446862.94326677,139298.841910316,NA,138744.690241394,604,350.356189485868,197,131.094088842092,422,NA,194,222,"2011-04-17","2007-08-13",44,0,"e20110424_180615_003559.its",99.035,NA,363.176116154969,2.30606131645845
-"cougar PA99 e20110425_134043_003684","cougar","cougar PA99",57599990,204.375035481777,251,0.421288635007303,0.555,4463.38,1490.84588382741,160.712527901481,1330.13335592593,1276.74664107486,1268.08657465496,1340.50420168067,1579.50458715596,166296.278870882,126333.146932838,39880.0069236123,322811.30604363,386,130.250022612851,300,99.6250172960099,135,29.7500051649315,536,104,"2011-04-22","2010-04-27",11,0,"e20110425_134043_003684.its",72.07,36.6250063585081,77.18751340061,-0.508464772689412
+"cougar PA99 e20110425_134043_003684","cougar","cougar PA99",57599990,204.375035481777,251,0.421288635007303,0.555,4463.38,1490.84588382741,160.712527901481,1330.13335592593,1276.74664107486,1268.08657465496,1340.50420168067,1579.50458715596,166296.278870882,126333.146932838,39880.0069236123,322811.30604363,386,130.250022612851,300,99.6250172960099,135,29.7500051649315,536,104,"2011-04-22","2010-04-27",11,0,"e20110425_134043_003684.its",72.07,36.625006358508,77.18751340061,-0.508464772689412
 "cougar BN32 e20110428_131730_003264","cougar","cougar BN32",41769860,160.13460423377,395,0.520216394260366,0.604484047139983,2266.34,1321.5121142374,499.476033675957,822.036080561438,997.151033386328,1032.12560386473,1433.67804878049,1283.44994617869,270284.45869821,92068.778779723,126652.854474494,205524.749185178,500,271.056690158885,199,89.2030760936235,187,88.3412106241199,268,119,"2011-04-23","2009-07-17",21,0,"e20110428_131730_003264.its",104.846,57.0554940811389,183.83590464512,0.344421920991757
 "cougar PA99 e20110429_145001_003581","cougar","cougar PA99",57599990,97.6250169487877,233,0.575411155586495,0.64982206405694,1946.53,669.969491314148,153.807526702696,516.161964611452,1016.17598684211,1172.72727272727,1486.86440677966,1302.49679897567,77229.3884078799,63693.7610579446,43862.5076150187,127156.272075742,215,76.0000131944467,240,54.3125094292551,204,29.5000051215287,328,57,"2011-04-25","2010-04-27",11,0,"e20110429_145001_003581.its",107.729,18.0625031358512,59.4375103190122,-0.508464772689412
 "cougar BE05 e20110502_135242_003606","cougar","cougar BE05",44014550,178.468256519719,504,0.767781282067842,0.779278173336607,3501.3,1258.36151908857,169.060640174669,1089.3008789139,1130.85082246171,1131.44612144612,1265.46599496222,1492.45187901008,326132.335784417,263652.905686869,41091.0483010732,266355.284786508,547,288.395541928749,505,233.022943549349,132,32.4710805858517,388,80,"2011-04-28","2007-08-27",44,0,"e20110502_135242_003606.its",97.404,42.2042256481095,263.203872355846,2.30606131645845
@@ -644,7 +644,7 @@
 "cougar BE05 e20110523_160059_003735","cougar","cougar BE05",40374860,127.861743669204,572,0.825685876684728,0.835932045613219,1517.39,792.403986044781,206.157891321481,586.246094723301,1113.49103197297,1095.68779646399,1321.02396514161,1193.49372384937,381944.606123712,226557.813451242,54064.8314322328,152602.188589632,600,343.01543088942,481,206.772234008985,113,40.926457701649,277,99,"2011-05-20","2007-08-27",44,0,"e20110523_160059_003735.its",93.402,48.6837601418308,324.736729737267,2.30606131645845
 "cougar AM28 e20110530_114443_003684","cougar","cougar AM28",44066360,227.602189062133,285,0.659232592300777,0.707317073170732,3799.6,1594.85984320012,166.012350464164,1428.84749273596,988.090575275398,1072.03355704698,1320.9429280397,1568.13711414214,197849.697592449,130493.827944945,43489.5008346503,356911.439928326,355,200.234373794432,245,121.725506713057,185,32.9230732921893,497,122,"2011-05-23","2009-11-04",18,0,"e20110530_114443_003684.its",99.403,55.5525802448852,159.4685832912,0.0885559128874064
 "cougar BN32 e20110530_115127_003581","cougar","cougar BN32",27669429,126.074159318575,313,0.644002038501373,0.649450549450549,3729.59,1267.74137623151,611.35948992659,656.381886304918,893.961352657005,1176.92963752665,1485.21902377972,1263.27141382869,96305.5652503707,143633.466379086,154397.259155583,159265.88148964,405,107.729003009061,462,122.040827080313,406,103.955885753913,316,92,"2011-05-21","2009-07-17",22,11277081,"e20110530_115127_003581.its",103.196,25.3709608535832,80.1462147990116,0.429710590359874
-"cougar BH35 e20110531_120427_003577","cougar","cougar BH35",38557550,215.677603997142,373,0.517915859905457,0.641414141414141,3812.13,1543.87164122202,319.48855671587,1224.38308450615,1121.33901705115,1194.66278101582,1533.93470790378,1423.95238095238,208763.782968576,133961.934822104,83353.3250945664,307114.637729835,475,186.173654705758,295,112.133680692886,239,54.3395521759033,571,166,"2011-05-27","2010-01-26",15,0,"e20110531_120427_003577.its",96.561,53.4992498226677,136.12898122417,-0.167310095216945
+"cougar BH35 e20110531_120427_003577","cougar","cougar BH35",38557550,215.677603997142,373,0.517915859905457,0.641414141414141,3812.13,1543.87164122202,319.48855671587,1224.38308450615,1121.33901705115,1194.66278101582,1533.93470790378,1423.95238095238,208763.782968576,133961.934822104,83353.3250945664,307114.637729835,475,186.173654705758,295,112.133680692886,239,54.3395521759033,571,166,"2011-05-27","2010-01-26",15,0,"e20110531_120427_003577.its",96.561,53.4992498226677,136.12898122417,-0.167310095216944
 "cougar DI46 e20110601_103216_007574","cougar","cougar DI46",57599988,267.62505575522,NA,0.914334320754924,0.921590023382697,NA,NA,NA,1612.24533588445,1198.1954459203,1097.56405202996,1853.31746031746,1472.70177487156,394655.707219939,174032.536256778,NA,394131.894610811,NA,329.375068619806,730,158.562533033861,NA,NA,NA,NA,"2011-04-23","2008-06-03",34,922640331,"e20110601_103216_007574.its",118.496,NA,NA,1.45317462277728
 "cougar FJ11 e20110601_121149_003264","cougar","cougar FJ11",51396240,248.796410009759,382,0.830716910260382,0.833333333333333,4373.44,2073.0925842046,620.036096025701,1453.0564881789,1015.14388489209,1139.71161143435,1485.74642126789,1471.79054054054,217438.39627179,315567.987074541,152667.276828033,366176.20277281,415,214.19465704106,466,276.884067783947,263,102.754598390855,544,136,"2011-05-28","2007-11-08",42,0,"e20110601_121149_003264.its",103.584,60.4480016437,205.229020644312,2.13548397772221
 "cougar WM15 e20110606_114254_003456","cougar","cougar WM15",50920430,158.930315396001,454,0.811697751255003,0.817843866171004,2775.34,1472.88528396166,520.28044539294,952.604838568724,984.531384350817,917.403915881073,1349.22151450814,1424.53736654804,242851.601999433,89440.721533577,134783.229442485,226402.172958869,536,246.667202142637,192,97.4932851116929,220,99.8970354335185,366,174,"2011-06-03","2008-01-17",40,0,"e20110606_114254_003456.its",105.008,67.2343104722407,219.518963213783,1.96490663898598
@@ -667,7 +667,7 @@
 "cougar BS80 e20110720_140100_004222","cougar","cougar BS80",50969550,222.909560708305,691,0.935928256179997,0.927983915189179,3059.11,1549.67913195231,279.267680409185,1270.41145154313,1050.93676355067,956.06600660066,1373.56110381078,1459.32509505703,377969.43469189,102303.904978561,73828.5505757849,325297.515869769,674,359.650026339255,244,107.005064788683,106,53.7497388146452,439,186,"2011-07-18","2007-10-21",44,0,"e20110720_140100_004222.its",116.262,89.2062025268028,360.073808774062,2.30606131645845
 "cougar WG24 e20110801_104050_007574","cougar","cougar WG24",42891240,166.607447115075,NA,0.887354239740175,0.892891145668042,5096.65,1518.96219367871,533.546710237335,985.415483441374,1322.35975609756,1044.66606498195,1415.53505535055,1436.26196473552,NA,194303.73195086,128790.494282749,239291.939333067,NA,NA,388,185.996021565243,272,90.9836134371494,544,NA,"2011-07-31","2007-08-13",47,3598080,"e20110801_104050_007574.its",103.762,88.8852828689495,NA,2.5619273245628
 "cougar PA99 e20110815_121225_003577","cougar","cougar PA99",57599990,79.3125137695336,151,0.511411406859476,0.639272727272727,2149.73,639.318860992858,196.8975341836,442.421326809258,1091.74304418985,NA,1493.95509499136,1359.97635933806,83381.8894760225,46831.8831305353,54062.5093858523,107863.14372624,211,76.3750132595509,117,32.0625055664072,234,36.1875062825532,326,74,"2011-07-27","2010-04-27",14,0,"e20110815_121225_003577.its",93.915,14.1250024522574,55.3125096028662,-0.252598764585061
-"cougar PA99 e20110815_121507_003264","cougar","cougar PA99",44907989,108.381606666912,165,0.521056708763693,0.647755610972569,1830.01,682.922764588724,85.4290758822445,597.493688706479,1153.12005751258,1312.60572987722,1291.2987012987,1313.2100591716,128582.11041247,77128.904614277,23912.0927904387,142327.816104168,220,111.507999166919,231,58.7601462180816,64,18.5178632692726,287,54,"2011-07-28","2010-04-27",15,710,"e20110815_121507_003264.its",96.145,18.4376993590161,83.8514501283947,-0.167310095216945
+"cougar PA99 e20110815_121507_003264","cougar","cougar PA99",44907989,108.381606666912,165,0.521056708763693,0.647755610972569,1830.01,682.922764588724,85.4290758822445,597.493688706479,1153.12005751258,1312.60572987722,1291.2987012987,1313.2100591716,128582.11041247,77128.904614277,23912.0927904387,142327.816104168,220,111.507999166919,231,58.7601462180816,64,18.5178632692726,287,54,"2011-07-28","2010-04-27",15,710,"e20110815_121507_003264.its",96.145,18.4376993590161,83.8514501283947,-0.167310095216944
 "cougar S1RJ e20130903_105737_009228","cougar","cougar S1RJ",47632550,60.991905745126,297,0.576740231612221,0.670807453416149,1277.98,407.33901502229,108.707679937354,298.631335084937,1025.64049586777,1114.57979225685,1410.14319809069,1310.74349442379,150071.831132282,89208.4089556406,44655.597905214,79944.743667933,379,146.320110932545,240,80.0377053086597,135,31.6674207028597,235,62,"2013-09-02","2012-02-08",18,0,"e20130903_105737_009228.its",94.953,17.8365424483888,108.530826084264,0.0885559128874064
 "cougar S1RA e20130903_105915_009231","cougar","cougar S1RA",47643180,109.640036622241,548,0.881986756960624,0.889410384276914,1590.21,735.634775008721,215.569237821657,520.065537187064,1108.20605661619,1092.86374133949,1561.82926829268,1300.06891798759,254395.865263402,107269.665878726,87094.6901529243,142539.603779597,453,229.556465374478,241,98.1546571828329,203,55.7645396465979,270,132,"2013-09-02","2009-06-13",50,0,"e20130903_105915_009231.its",NA,48.7373009106445,235.752525335211,2.81779333266715
 "cougar S1RJ e20130920_085341_009238","cougar","cougar S1RJ",57599990,61.3125106445331,153,0.555373813302909,0.613390928725702,1610.14,433.685700292656,147.771900654844,285.913799637812,942.494365138993,1052.08450704225,1391.53846153846,1324.07747196738,78403.7636117645,93372.5162105063,42963.7574589857,81182.5140941865,227,83.1875144422768,249,88.7500154079888,83,30.875005360244,194,43,"2013-09-14","2012-02-08",19,0,"e20130920_085341_009238.its",NA,11.6250020182295,55.0000095486128,0.173844582255523
@@ -675,7 +675,7 @@
 "cougar S1RA e20131016_085223_009235","cougar","cougar S1RA",40208239,77.0886782681529,497,0.849138927447283,0.846943765281174,2707.49,643.970704611062,283.518907654722,360.45179695634,989.254115226337,1044.29760665973,1465.74935400517,1307.6887340302,172183.516915526,89853.5247962489,101575.301519671,100807.996092542,500,174.053879852833,440,86.0420671494715,232,69.2992299414058,346,63,"2013-10-12","2009-06-13",51,5843710,"e20131016_085223_009235.its",NA,21.8462688704173,157.66917820002,2.90308200203527
 "cougar S1RJ e20131016_085401_009232","cougar","cougar S1RJ",40137609,72.6500674218038,232,0.333996393619701,0.499718626899268,2797.36,635.11765237436,211.608120453812,423.509531920549,1376.07458912769,1154.67048710602,1405.62945368171,1423.56790123457,195253.783054192,144575.427998215,53076.7041953097,103422.304004207,349,141.891860075671,449,125.209252001035,173,37.7600967710857,324,55,"2013-10-12","2012-02-08",20,5914270,"e20131016_085401_009232.its",97.375,18.6558197823891,82.3367430780443,0.25913325162364
 "cougar S1HR e20140401_094707_009236","cougar","cougar S1HR",44487989,304.019136490975,446,0.695730628962134,0.790979097909791,4560.42,2287.23298776216,399.727306172459,1887.5056815897,1242.9534591195,1081.97406340058,1410.29445073613,1584.70322065478,399808.226890184,182287.673196467,100769.760575152,NA,507,321.659852954918,400,168.476934302425,204,71.4529937507402,613,148,"2014-03-31","2010-04-26",47,710,"e20140401_094707_009236.its",97.306,94.2726361490514,297.46455835529,2.5619273245628
-"cougar S1HR e20141112_161807_009233","cougar","cougar S1HR",36434180,209.967673212352,761,0.883747028973512,0.878616224964596,2455.11,1229.59045599489,243.507168268917,986.083287725976,1125.24652943992,1130.32141567353,1393.97286821705,1320.23058823529,464525.563632831,309256.198437841,71071.8341952529,277205.744715539,668,NA,601,273.600229235295,140,50.9850914717993,388,157,"2014-11-07","2010-04-26",54,0,"e20141112_161807_009233.its",NA,82.2085195824361,NA,3.15894801013962
+"cougar S1HR e20141112_161807_009233","cougar","cougar S1HR",36434180,209.967673212352,761,0.883747028973512,0.878616224964596,2455.11,1229.59045599489,243.507168268917,986.083287725976,1125.24652943992,1130.32141567353,1393.97286821705,1320.23058823529,464525.563632831,309256.198437841,71071.8341952529,277205.744715539,668,NA,601,273.600229235295,140,50.9850914717993,388,157,"2014-11-07","2010-04-26",54,0,"e20141112_161807_009233.its",NA,82.208519582436,NA,3.15894801013962
 "cougar S1GC e20141113_144912_009236","cougar","cougar S1GC",54122990,152.652320206256,652,0.879595401432119,0.879887745556595,2865.48,950.024231846762,110.347340381601,839.676891465161,1234.38986784141,1198.07302231237,1367.04545454545,1403.63834422658,372759.671998905,157148.74584719,28006.2132561412,214268.649976655,626,301.978881802354,245,131.167919584635,71,20.4866730385738,440,179,"2014-11-08","2011-05-10",41,0,"e20141113_144912_009236.its",114.157,68.3775970248502,320.004493469411,2.0501953083541
 "cougar S1SA e20141204_092246_009235","cougar","cougar S1SA",43381930,NA,853,0.970083752988641,0.952158475051392,4547.65,NA,460.505652929688,NA,1258.25216107949,1091.57038242474,1510.86729362591,1569.25386511315,NA,222652.334739372,119986.362985695,NA,734,393.5924473623,570,203.974327559885,243,79.4155538953661,648,NA,"2014-12-01","2011-06-23",41,0,"e20141204_092246_009235.its",120.332,NA,NA,2.0501953083541
 "cougar S1HR e20141215_130044_009233","cougar","cougar S1HR",40760300,196.956352136761,563,0.928624290375774,0.911076032622994,2219.98,1211.4228796157,261.574816672105,949.8480629436,1148.11589895988,1094.4,1387.22513089005,1343.91479820628,341221.139196718,108741.103475686,70204.7825948288,264692.556237319,541,297.200952887982,170,99.3613884098007,105,50.6080671633918,415,143,"2014-12-12","2010-04-26",55,0,"e20141215_130044_009233.its",NA,83.2869237959485,312.392205160413,3.24423667950773
@@ -692,7 +692,7 @@
 "cougar S1SA e20150224_091901_009235","cougar","cougar S1SA",44393860,170.13163532074,859,0.927140789972875,0.92400234741784,3478.99,1731.4883634809,810.720221219781,920.768142261114,NA,1183.72093023256,1672.56288239293,1405.58627264061,NA,86679.5543347661,199514.617561978,239134.691148731,725,NA,256,73.2263425617867,217,119.286766232988,500,221,"2015-02-22","2011-06-23",44,0,"e20150224_091901_009235.its",126.206,NA,NA,2.30606131645845
 "cougar S1SA e20150224_092010_009228","cougar","cougar S1SA",45058430,248.397469685473,689,0.958183816289989,0.947709994437233,3681.49,1942.0183970014,421.596580262561,1520.42181673884,1414.62072051913,1241.115935736,1563.61650485437,1550.25410099711,NA,228366.678554934,102939.938209121,385079.196057208,599,357.056382124277,491,184.001084813652,207,65.8345175364521,472,197,"2015-02-23","2011-06-23",44,0,"e20150224_092010_009228.its",121.849,NA,NA,2.30606131645845
 "cougar S1SA e20150224_092118_009230","cougar","cougar S1SA",25832990,45.0122111300318,618,0.956748135354977,0.914935319482556,1263.34,870.729869055034,707.473505776916,163.256363278118,NA,963.125,1749.62532299742,NA,NA,17179.8928424468,188718.224255109,49613.7690604146,513,287.214139749212,40,17.8376564230467,166,107.86207868311,90,115,"2015-02-16","2011-06-23",43,0,"e20150224_092118_009230.its",NA,70.6538422381614,332.365707570049,2.22077264709033
-"cougar S1GC e20150317_165019_009236","cougar","cougar S1GC",35953110,252.428788497017,585,0.81832336619423,0.824150306100908,2649.73,1355.97916285962,59.4494328863344,1296.52972997329,1206.94220921726,1070.10545621275,1264.91525423729,1262.49504165014,NA,233694.386938988,14945.4664700773,318690.093847236,669,NA,489,218.384445740577,23,11.8153895448822,432,169,"2015-03-13","2011-05-10",46,0,"e20150317_165019_009236.its",97.11,90.0172474648229,NA,2.47663865519468
+"cougar S1GC e20150317_165019_009236","cougar","cougar S1GC",35953110,252.428788497017,585,0.81832336619423,0.824150306100908,2649.73,1355.97916285962,59.4494328863344,1296.52972997329,1206.94220921726,1070.10545621275,1264.91525423729,1262.49504165014,NA,233694.386938988,14945.4664700773,318690.093847236,669,NA,489,218.384445740577,23,11.8153895448822,432,169,"2015-03-13","2011-05-10",46,0,"e20150317_165019_009236.its",97.11,90.017247464823,NA,2.47663865519468
 "cougar S1VL e20150413_105742_008790","cougar","cougar S1VL",48414990,158.82684267827,246,0.62074965150009,0.707680250783699,5245.91,1221.93386800245,182.510334092809,1039.42353390964,1172.85977859779,1175.86797066015,1413.60986547085,1646.28277153558,94536.1756761697,71521.1549150377,46879.9435877194,261473.894758627,209,80.6031355165002,321,60.8241373178018,141,33.1632826940582,623,52,"2015-04-11","2014-11-13",4,0,"e20150413_105742_008790.its",NA,16.8790698913704,69.9700650562977,-1.10548545826623
 "cougar S1VL e20150415_132800_009231","cougar","cougar S1VL",46843860,65.0159914234224,189,0.597785797009729,0.653769841269841,1498.36,457.689524304786,103.30856594653,354.380958358257,1159.08787541713,1110.29220779221,1733.07692307692,1465.37825059102,80080.334968126,26280.7548310494,38091.9932729711,95273.0197724953,239,69.0890972690978,95,23.6701245371325,89,21.9794013559088,213,39,"2015-04-14","2014-11-13",4,0,"e20150415_132800_009231.its",116.758,6.762892724895,56.5623755173037,-1.10548545826623
 "cougar S1HR e20150420_151540_009237","cougar","cougar S1HR",38617489,268.292948824301,508,0.914421502696052,0.908765652951699,4535.36,2088.04068022134,687.285804625982,1400.75487559536,1114.09507923269,1097.52627324171,1571.32292522597,1411.10111188325,249051.925670258,126561.93156422,178268.452410254,378588.478396407,463,223.546383349782,179,115.315628108291,332,113.451187880186,429,124,"2015-04-17","2010-04-26",59,1020,"e20150420_151540_009237.its",NA,76.5352713637078,243.962003847531,3.5853913569802
@@ -718,15 +718,15 @@
 "cougar S1SE e20150628_075357_009232","cougar","cougar S1SE",30752300,196.668216686232,124,0.421026782790911,0.559757942511346,5564.14,1842.09519287988,420.700240307229,1421.39495257265,1278.77622377622,965.016077170418,1540.24590163934,NA,85627.9367722089,35133.3721380189,109987.870825922,362162.179739402,193,66.9608452050741,104,36.4070329698917,206,71.4092929634531,558,52,"2015-06-27","2015-05-04",1,0,"e20150628_075357_009232.its",NA,14.8671806661616,47.6452167805335,-1.36135146637058
 "cougar S1SE e20150628_220900_009232","cougar","cougar S1SE",18282990,248.099462943424,153,0.489423683285308,0.62453531598513,NA,2305.94273693745,589.118081889231,1716.82465504822,1335.93147751606,1017.5,1786.43031784841,NA,122844.676937416,48084.0387704637,143868.152856836,433242.702643277,200,91.9543247576026,115,47.2570405606523,359,80.5338732887783,746,86,"2015-06-28","2015-05-04",1,5426650,"e20150628_220900_009232.its",NA,30.1263633574158,70.2948478339703,-1.36135146637058
 "cougar S1SE e20150629_202507_009232","cougar","cougar S1SE",31126240,152.321642447016,110,0.494620662225316,0.671957671957672,3680.07,1173.52201872118,211.19042968248,962.331589038702,1290.61349693252,1078.67469879518,1508.40390879479,1614.30523917995,72992.9474295642,62129.1874636962,53558.926487748,245893.625442713,121,56.5567829586869,88,57.5977053444296,87,35.5070191581123,481,41,"2015-06-29","2015-05-04",1,0,"e20150629_202507_009232.its",NA,12.7223847146331,49.8486164727895,-1.36135146637058
-"cougar S1SE e20150630_221509_009232","cougar","cougar S1SE",51404180,20.3096324073256,126,0.601399573639818,0.631436314363144,524.11,137.15444930743,42.3918054913044,94.7626438161254,965.466237942122,NA,1486.79611650485,1280.34482758621,21028.1731952538,51485.6184847224,10724.8865753719,26003.3328028966,113,21.7803299264768,181,30.5344818261861,28,7.21342116536048,95,19,"2015-06-30","2015-05-04",1,0,"e20150630_221509_009232.its",NA,3.50166075988373,21.0799977745001,-1.36135146637058
+"cougar S1SE e20150630_221509_009232","cougar","cougar S1SE",51404180,20.3096324073256,126,0.601399573639818,0.631436314363144,524.11,137.15444930743,42.3918054913044,94.7626438161254,965.466237942122,NA,1486.79611650485,1280.34482758621,21028.1731952538,51485.6184847224,10724.8865753719,26003.3328028966,113,21.7803299264768,181,30.5344818261861,28,7.21342116536048,95,19,"2015-06-30","2015-05-04",1,0,"e20150630_221509_009232.its",NA,3.50166075988373,21.0799977745,-1.36135146637058
 "cougar S1SE e20150703_102022_009232","cougar","cougar S1SE",25105490,193.439761582028,132,0.363473498696418,0.582840236686391,4774.05,1918.84786952973,610.217127807503,1308.63074172223,1358.41483979764,1299.05940594059,1488.15295815296,1658.65826538176,115510.352516521,75256.5275563233,147881.75813338,320850.459401509,172,85.0331939348724,162,57.9315520230834,212,99.3726870098931,454,55,"2015-07-01","2015-05-04",1,0,"e20150703_102022_009232.its",NA,26.5280621887882,63.237164460841,-1.36135146637058
-"cougar S1SE e20150706_201910_009232","cougar","cougar S1SE",34310430,144.690696094453,131,0.473148936590849,0.658008658008658,2849.66,1096.41447221734,146.58353159666,949.83094062068,1470.60344827586,1079.64803312629,1317.19512195122,NA,89495.2351223812,54714.9073911344,45331.5216393382,250685.287243558,143,60.8561303370433,130,50.678467159986,112,34.4151909492245,350,26,"2015-07-06","2015-05-04",2,0,"e20150706_201910_009232.its",76.433,9.33826827585664,52.5671056876874,-1.27606279700247
-"cougar S1SE e20150707_221200_009232","cougar","cougar S1SE",31313990,200.958102113464,121,0.46400021378452,0.679796696315121,4070.4,1480.86117419083,213.811143198296,1267.05003099254,1429.73013493253,1098.13596491228,1563.20512820513,1604.40503432494,109633.681303469,57568.5180968634,56070.5294981572,322418.190719228,140,76.6813810696114,72,52.4238527252516,98,35.8689518646458,559,69,"2015-07-07","2015-05-04",2,0,"e20150707_221200_009232.its",87.324,21.8432719688548,67.3692493355206,-1.27606279700247
-"cougar S1SE e20150721_085336_009232","cougar","cougar S1SE",33537680,40.8972832944915,43,0.295063999262069,0.45531914893617,831.02,306.172519983493,71.3620023806059,234.810517602887,NA,NA,1445.14925373134,1533.01837270341,41588.5654583143,23834.2067787635,20786.7687925939,62696.2866841117,68,22.9711774934939,64,16.96002824286,51,14.3838214211597,124,12,"2015-07-08","2015-05-04",2,7272830,"e20150721_085336_009232.its",NA,3.54228437983784,11.7002726485553,-1.27606279700247
+"cougar S1SE e20150706_201910_009232","cougar","cougar S1SE",34310430,144.690696094453,131,0.473148936590849,0.658008658008658,2849.66,1096.41447221734,146.58353159666,949.83094062068,1470.60344827586,1079.64803312629,1317.19512195122,NA,89495.2351223812,54714.9073911344,45331.5216393382,250685.287243558,143,60.8561303370433,130,50.678467159986,112,34.4151909492245,350,26,"2015-07-06","2015-05-04",2,0,"e20150706_201910_009232.its",76.433,9.33826827585664,52.5671056876874,-1.27606279700246
+"cougar S1SE e20150707_221200_009232","cougar","cougar S1SE",31313990,200.958102113464,121,0.46400021378452,0.679796696315121,4070.4,1480.86117419083,213.811143198296,1267.05003099254,1429.73013493253,1098.13596491228,1563.20512820513,1604.40503432494,109633.681303469,57568.5180968634,56070.5294981572,322418.190719228,140,76.6813810696114,72,52.4238527252516,98,35.8689518646458,559,69,"2015-07-07","2015-05-04",2,0,"e20150707_221200_009232.its",87.324,21.8432719688548,67.3692493355206,-1.27606279700246
+"cougar S1SE e20150721_085336_009232","cougar","cougar S1SE",33537680,40.8972832944915,43,0.295063999262069,0.45531914893617,831.02,306.172519983493,71.3620023806059,234.810517602887,NA,NA,1445.14925373134,1533.01837270341,41588.5654583143,23834.2067787635,20786.7687925939,62696.2866841117,68,22.9711774934939,64,16.96002824286,51,14.3838214211597,124,12,"2015-07-08","2015-05-04",2,7272830,"e20150721_085336_009232.its",NA,3.54228437983784,11.7002726485553,-1.27606279700246
 "cougar S1SA e20150721_091037_009237","cougar","cougar S1SA",42091178,NA,NA,0.953785353512036,0.94174516608825,5870.25,2471.83587971807,429.528106816112,NA,1369.36471922859,1054.94652406417,1385.94070695553,1545.84543568465,412964.635962434,168726.567833288,103957.461109784,NA,NA,301.573883249359,386,159.938503027879,204,75.008592061738,733,NA,"2015-06-17","2011-06-23",47,86173082,"e20150721_091037_009237.its",114.917,NA,331.081254128834,2.5619273245628
-"cougar S1SE e20150722_225945_009232","cougar","cougar S1SE",32612860,292.853800617303,133,0.49282578093273,0.646131805157593,NA,NA,480.810085346701,NA,1130.53398058252,1023.45070422535,1746.28140703518,NA,77123.3188380289,48127.1498421175,115080.615438204,NA,168,68.2184880442868,124,47.0243946713045,263,65.9003840816169,691,48,"2015-07-22","2015-05-04",2,0,"e20150722_225945_009232.its",93.868,23.8433550446051,55.5241092010943,-1.27606279700247
-"cougar S1SE e20150724_234322_009232","cougar","cougar S1SE",24518609,205.851808314248,74,0.578676094523534,0.658119658119658,5547.35,2124.81352429088,386.418495437486,1738.39502885339,1171.1214953271,1049.58333333333,1567.20930232558,NA,36797.8460768309,25890.0494722192,98946.8856083965,425540.616924884,84,31.4210320822034,74,24.6669784570568,234,63.1357186698479,496,39,"2015-07-23","2015-05-04",2,3785651,"e20150724_234322_009232.its",NA,14.3890707666165,24.6669784570568,-1.27606279700247
-"cougar S1SE e20150805_082832_009232","cougar","cougar S1SE",29914050,123.233062724706,140,0.545170215325394,0.662824207492795,3285.74,832.964041980273,46.2292467920593,786.734795188214,1034.48717948718,1011.26086956522,1227.63157894737,1614.609375,38842.4837158459,27990.9941983784,11228.1687033351,198973.258385274,127,37.5475737989339,97,27.6793011979321,38,9.14620387409929,453,60,"2015-07-25","2015-05-04",2,910960,"e20150805_082832_009232.its",NA,12.3955131451609,33.2151614375185,-1.27606279700247
+"cougar S1SE e20150722_225945_009232","cougar","cougar S1SE",32612860,292.853800617303,133,0.49282578093273,0.646131805157593,NA,NA,480.810085346701,NA,1130.53398058252,1023.45070422535,1746.28140703518,NA,77123.3188380289,48127.1498421175,115080.615438204,NA,168,68.2184880442868,124,47.0243946713045,263,65.9003840816169,691,48,"2015-07-22","2015-05-04",2,0,"e20150722_225945_009232.its",93.868,23.8433550446051,55.5241092010943,-1.27606279700246
+"cougar S1SE e20150724_234322_009232","cougar","cougar S1SE",24518609,205.851808314248,74,0.578676094523534,0.658119658119658,5547.35,2124.81352429088,386.418495437486,1738.39502885339,1171.1214953271,1049.58333333333,1567.20930232558,NA,36797.8460768309,25890.0494722192,98946.8856083965,425540.616924884,84,31.4210320822034,74,24.6669784570568,234,63.1357186698479,496,39,"2015-07-23","2015-05-04",2,3785651,"e20150724_234322_009232.its",NA,14.3890707666165,24.6669784570568,-1.27606279700246
+"cougar S1SE e20150805_082832_009232","cougar","cougar S1SE",29914050,123.233062724706,140,0.545170215325394,0.662824207492795,3285.74,832.964041980273,46.2292467920593,786.734795188214,1034.48717948718,1011.26086956522,1227.63157894737,1614.609375,38842.4837158459,27990.9941983784,11228.1687033351,198973.258385274,127,37.5475737989339,97,27.6793011979321,38,9.14620387409929,453,60,"2015-07-25","2015-05-04",2,910960,"e20150805_082832_009232.its",NA,12.3955131451609,33.2151614375185,-1.27606279700246
 "cougar S1SE e20150812_095049_009232","cougar","cougar S1SE",23461490,183.671199058542,130,0.393383007400249,0.522292993630573,5989.28,1959.60597557956,789.262915526678,1170.34306005288,1132.53488372093,1081.97986577181,1698.56807511737,1554.30242272348,74725.1773011859,49474.6071114835,222059.553762357,285480.589681218,231,65.9804641563686,178,45.7259960897624,386,130.733384793549,518,65,"2015-08-05","2015-05-04",3,5606460,"e20150812_095049_009232.its",NA,19.0269245474179,40.5089361332123,-1.19077412763435
 "cougar S1SE e20150814_083900_009232","cougar","cougar S1SE",25225800,137.002592583783,86,0.458076937363032,0.564885496183206,2186.19,837.335584996313,53.6650572033394,783.670527792974,1097.20221606648,1035.32467532468,1282.89855072464,1489.875,56526.4134338653,34130.770877435,12632.7807244963,204116.737625764,151,51.5186832528602,98,32.9662488404729,40,9.84706134195942,382,36,"2015-08-12","2015-05-04",3,9464270,"e20150814_083900_009232.its",NA,12.1304378850225,34.964203315653,-1.19077412763435
 "cougar S1SE e20150830_165913_009232","cougar","cougar S1SE",29677609,55.4357327101385,59,0.264978760168073,0.474264705882353,1410.64,356.651912221096,33.3524173055855,323.29949491551,NA,973.248407643312,1377.4,1518.00875273523,52451.6648224592,18535.1859039588,8354.17704977513,84151.9274682809,81,29.4767681587826,86,19.0446609091723,35,6.06517863349436,224,22,"2015-08-14","2015-05-04",3,7134331,"e20150830_165913_009232.its",NA,6.30778577883414,18.5594466184927,-1.19077412763435
@@ -773,7 +773,7 @@
 "lucid C012 0454","lucid","lucid C012",57599990,78.8125136827281,619,0.851007488979471,0.875938803894298,1902.76,707.791372880447,315.307554740895,392.483818139552,1197.58177927239,1084.80682839173,1406.34444444444,1225.38461538462,244830.667505324,75461.8881010222,79106.8887338348,96575.6417666045,645,204.437535492628,170,69.562512076825,275,56.2500097656267,235,160,"1001-09-01","0999-02-01",30,0,NA,NA,47.750008289932,199.062534559468,1.11201994530481
 "lucid C055 0482","lucid","lucid C055",57599990,145.312525227869,523,0.699899641577061,0.731534478059417,3488.35,1191.62645687959,418.423197642916,773.203259236677,1010.42792109256,1141.4089347079,1485.18397383483,1368.72258064516,208085.036125874,207593.786040588,113523.769708988,198892.534529954,514,205.937535753044,508,181.875031575526,195,76.4375132704016,506,110,"1000-12-01","0999-02-01",21,0,NA,NA,37.5625065212685,169.125029361984,0.344421920991757
 "lucid C025 0490","lucid","lucid C025",57599990,175.00003038195,524,0.782920105644923,0.815327564894932,2552.61,1252.56146745859,303.196927638355,949.364539820233,1089.19864559819,1009.4750211685,1478.88228299643,1373.4,241257.54188499,74511.8879360917,77733.763495445,240345.04172657,578,221.500038454868,193,73.8125128146724,162,52.5625091254356,396,120,"1001-02-01","0999-01-01",25,0,NA,NA,52.3125090820328,210.812536599399,0.685576598464225
-"lucid C026 0558","lucid","lucid C026",57599990,90.0000156250027,856,0.833619627421266,0.847397563676633,1666.28,658.984489407029,204.70878553972,454.27570386731,1111.53243574051,1195.8052114481,1294.85163204748,1323.84722222222,283788.17426878,174961.280375222,54545.6344697282,119146.270685116,836,255.312544325095,594,146.31252540148,184,42.1250073133693,218,164,"1001-09-01","0999-02-01",30,0,NA,NA,43.4375075412339,242.000042013896,1.11201994530481
+"lucid C026 0558","lucid","lucid C026",57599990,90.0000156250027,856,0.833619627421266,0.847397563676633,1666.28,658.984489407029,204.70878553972,454.27570386731,1111.53243574051,1195.8052114481,1294.85163204748,1323.84722222222,283788.17426878,174961.280375222,54545.6344697282,119146.270685116,836,255.312544325095,594,146.31252540148,184,42.1250073133693,218,164,"1001-09-01","0999-02-01",30,0,NA,NA,43.437507541234,242.000042013896,1.11201994530481
 "lucid C006 0572","lucid","lucid C006",57599990,91.4375158745687,704,0.70892065975169,0.742564758554525,2672.61,713.469498866232,192.790033470492,520.67946539574,1089.09155937053,1148.38266838267,1429.71887550201,1402.96650717703,190318.783041455,167305.029046012,44500.0077256958,128283.772271488,698,174.750030338547,395,145.687525292973,176,31.1250054036468,465,241,"1001-09-01","0999-02-01",30,0,NA,NA,38.4375066731782,147.250025564241,1.11201994530481
 "lucid C056 0603","lucid","lucid C056",57599990,106.750018532989,379,0.61871049829125,0.674306086070792,1492.29,720.497000086285,177.68753084853,542.809469237755,1177.35645252985,1161.22493734336,1348.73646209386,1314.35597189696,258871.294942933,231664.415219517,46700.0081076403,140307.524358945,466,219.87503817275,478,199.500034635423,84,34.6250060112858,244,92,"1001-02-01","0999-01-01",25,0,NA,NA,34.1875059353309,169.500029427088,0.685576598464225
 "lucid C042 0668","lucid","lucid C042",57599990,202.375035134555,665,0.799257835567665,0.829356747470891,4512.8,1525.84651490391,380.564441070215,1145.28207383369,1048.61479264643,1087.9274611399,1308.79090909091,1386.07782581841,306588.803227223,65615.6363916035,89979.390621422,280507.548699227,650,292.375050759557,341,60.312510470922,284,68.750011935766,541,NA,"1000-08-01","0999-01-01",18,0,NA,NA,NA,275.875047894974,0.0885559128874064
@@ -813,14 +813,14 @@
 "lucid C040 2271","lucid","lucid C040",57599990,175.125030403651,750,0.757154018373028,0.763242807206238,3774.69,1592.34715144916,485.787584338122,1106.55956711104,1064.65504169826,1143.10850439883,1402.25114854518,1489.22198429693,438837.576187079,194900.033836811,114458.769871314,260800.045277786,770,NA,376,170.5000296007,363,81.6250141710094,479,NA,"1001-09-01","0999-02-01",30,0,"2271.its",103.491,91.8125159396729,358.312562207042,1.11201994530481
 "lucid C025 2296","lucid","lucid C025",57599990,92.3750160373292,747,0.911860800850999,0.901439299123905,1652.68,510.571963640966,30.1200052291676,480.451958411798,1245.4829984544,1184.9033474776,1249.89010989011,1335.8051420839,201456.909975158,157073.777269753,7108.7512341582,123395.021422747,615,161.750028081602,443,132.562523014327,22,5.68750098741337,295,143,"1001-08-01","0999-01-01",30,0,"2296.its",90.24,30.4375052842891,184.375032009554,1.11201994530481
 "lucid C036 2298","lucid","lucid C036",57599990,128.750022352434,574,0.803123804553807,0.799854041233352,2216.45,1002.41204902987,390.133817731566,612.278231298304,1173.7840785169,1153.06666666667,1859.58333333333,1309.91262135922,336362.558396277,172960.030027783,111575.019370663,168651.279279736,572,286.562549750443,403,150.000026041671,138,60.0000104166685,254,114,"1000-11-01","0999-02-01",20,0,"2298.its",95.372,52.8750091796891,284.125049327266,0.25913325162364
-"lucid C068 2365","lucid","lucid C068",43358860,172.449183396427,220,0.641485026989291,0.720484359233098,2382.04,1132.46390703077,128.088976509069,1004.3749305217,1113.56232686981,1214.27470217239,1342.82913165266,1514.23688011555,166884.645952407,143868.450415901,39802.799243338,261128.91344468,279,149.865563808643,242,118.480974822678,87,29.641000708967,398,76,"1000-06-01","0999-02-01",15,0,"2365.its",99.652,37.1135218961015,124.375963759195,-0.167310095216945
+"lucid C068 2365","lucid","lucid C068",43358860,172.449183396427,220,0.641485026989291,0.720484359233098,2382.04,1132.46390703077,128.088976509069,1004.3749305217,1113.56232686981,1214.27470217239,1342.82913165266,1514.23688011555,166884.645952407,143868.450415901,39802.799243338,261128.91344468,279,149.865563808643,242,118.480974822678,87,29.641000708967,398,76,"1000-06-01","0999-02-01",15,0,"2365.its",99.652,37.1135218961015,124.375963759195,-0.167310095216944
 "lucid C030 2391","lucid","lucid C030",57599990,59.7500103732657,485,0.604433010529672,0.663177670424047,2227.91,883.042028305908,540.351343810997,342.69068449491,1054.80622520598,1252.27290601652,1434.38844086022,1474.44560669456,216037.537506517,199033.159554368,133398.148159401,88098.140294816,507,204.812535557732,467,158.937527593321,221,93.0000161458361,270,117,"1000-08-01","0999-02-01",17,0,"2391.its",105.603,40.3750070095498,158.750027560769,0.00326724351928943
 "lucid C049 2400","lucid","lucid C049",57599990,113.625019726566,557,0.745914591767848,0.799245994344958,1972.92,882.881403278021,317.760680166785,565.120723111237,1244.19145484045,1118.79928315412,1423.66497461929,1362.81628162816,287563.799924271,78036.2635479624,87644.39021604,154850.026883685,588,231.125040125875,288,69.7500121093771,256,61.5625106879359,369,210,"1001-03-01","0999-02-01",24,0,"2400.its",104.978,66.687511577693,215.625037434902,0.600287929096108
 "lucid C076 2452","lucid","lucid C076",44270550,260.055499649315,239,0.600955816221531,0.627165354330709,2881.59,1566.26922412303,89.1328433913742,1477.13638073166,1210.3467230444,1084.75444096134,1266.57794676806,1462.55159474672,232770.814909686,84417.2028583336,27087.8947742913,380344.585734761,335,192.317466125901,128,77.8214862928064,109,21.3866780512101,392,80,"1000-01-01","0999-02-01",10,0,"2452.its",92.244,44.8876284572927,132.792567519491,-0.593753442057529
 "lucid C024 2516","lucid","lucid C024",57599990,130.687522688806,312,0.663317531017518,0.72510885341074,3010.9,756.808256390322,120.958145999678,635.850110390644,1237.43229345218,1092.01957295374,1404.42307692308,1381.2912482066,225599.414166565,76714.3883184702,31950.6305469845,180517.531339849,327,182.312531651481,238,70.2500121961827,136,22.7500039496535,370,104,"1000-05-01","0999-02-01",14,0,"2516.its",111.582,38.5000066840289,161.437528027349,-0.252598764585061
 "lucid C008 2542","lucid","lucid C008",57599990,104.250018098961,560,0.820375873454756,0.839882565492322,2138.07,896.300780607774,285.884424632713,610.416355975062,1112.82603190681,1114.70790378007,1444.68948035488,1468.86690647482,274659.422683928,202737.535197489,71241.2623682747,153129.401584966,550,246.8125428494,459,181.875031575526,151,49.3125085611994,275,115,"1001-06-01","0999-02-01",27,0,"2542.its",111.356,47.5000082465292,235.500040885424,0.856153937200459
 "lucid C054 2574","lucid","lucid C054",39924050,142.29017346687,706,0.821187808793919,0.836975782634377,3828.05,1271.79281661054,471.487236390096,800.305580220444,1108.87933997937,1096.03417266187,1506.50900900901,1379.17617237009,290867.985587635,219799.544384901,120629.244778523,196243.216807914,590,262.308057424034,346,200.540776799949,327,80.0720367798357,320,151,"1001-08-01","0999-02-01",29,0,"2574.its",102.01,56.1766654435109,261.767030148494,1.02673127593669
-"lucid C076 2657","lucid","lucid C076",57599990,218.625037955736,400,0.633421421107872,0.690067602704108,2844.28,1269.08084532654,71.6837624450977,1197.39708288144,1103.02793296089,1106.57142857143,1419.61352657005,1416.96112064037,246802.542847664,94404.3913896513,18366.2531885856,309783.178781802,515,223.750038845493,175,85.3125148112005,59,12.9375022460941,452,163,"1000-06-01","0999-02-01",15,0,"2657.its",106.414,64.5625112087693,169.437529416238,-0.167310095216945
+"lucid C076 2657","lucid","lucid C076",57599990,218.625037955736,400,0.633421421107872,0.690067602704108,2844.28,1269.08084532654,71.6837624450977,1197.39708288144,1103.02793296089,1106.57142857143,1419.61352657005,1416.96112064037,246802.542847664,94404.3913896513,18366.2531885856,309783.178781802,515,223.750038845493,175,85.3125148112005,59,12.9375022460941,452,163,"1000-06-01","0999-02-01",15,0,"2657.its",106.414,64.5625112087693,169.437529416238,-0.167310095216944
 "lucid C049 2671","lucid","lucid C049",57599990,87.3750151692735,398,0.483351335879813,0.611600587371512,2245.2,630.806359514993,201.516909985575,429.289449529418,1085.70290720828,1176.85115931189,1351.73529411765,1336.07296137339,170387.529581168,98340.6420730281,57448.7599737431,116739.395267256,430,156.937527246098,316,83.562514507381,247,42.5000073784735,226,163,"1000-05-01","0999-02-01",14,0,"2671.its",94.308,33.6250058376746,108.375018815107,-0.252598764585061
 "lucid C042 2693","lucid","lucid C042",57599990,250.812543543844,369,0.721666864357802,0.713590263691684,5530.74,1815.0578151142,270.832547019539,1544.22526809466,1044.70745868691,1061.03935418769,1321.20509849363,1585.41739347122,146193.775380864,65718.1364093987,71262.512371964,397642.569035168,420,139.937524294709,140,61.9375107530401,169,53.9375093641509,631,153,"1000-01-01","0999-01-01",11,0,"2693.its",118.165,48.1250083550362,111.500019357642,-0.508464772689412
 "lucid C056 2713","lucid","lucid C056",57599990,124.937521690542,306,0.586367534741716,0.653019447287615,2265.73,711.151998463889,102.30001776042,608.851980703469,1064.34417040359,1123.38433008809,1339.63855421687,1320.25012506253,118674.395603194,151446.276292756,27797.5048259557,164948.778636941,348,111.500019357642,336,134.812523404952,68,20.7500036024312,393,102,"1000-04-01","0999-01-01",14,0,"2713.its",91.967,24.1250041883688,81.8750142144122,-0.252598764585061
@@ -871,7 +871,7 @@
 "lucid C010 4224","lucid","lucid C010",57599990,147.437525596793,NA,0.825605006524147,0.852851711026616,3149.3,1171.4152033707,271.102547066414,900.312656304281,1190.22403258656,1206.84886581033,1308.24667472793,1538.97838066978,NA,275991.297915156,67620.0117395854,226903.16439291,NA,398.937569259995,600,228.687539702698,181,51.6875089735259,423,208,"1001-06-01","0999-02-01",27,0,"4224.its",104.658,79.3750137803843,NA,0.856153937200459
 "lucid C066 4302","lucid","lucid C066",57599990,165.875028797748,419,0.767675458842521,0.819672131147541,2875.63,1140.29144796726,144.936275162548,995.355172804718,1116.21335504886,1163.38825644098,1371.51741293532,1443.3421250942,171338.779746316,242711.917137486,34459.3809825314,239414.416565003,406,153.50002664931,508,208.625036219624,171,25.1250043619799,460,119,"1001-04-01","0999-01-01",26,0,"4302.its",98.265,47.8750083116334,155.437526985682,0.770865267832342
 "lucid C040 4392","lucid","lucid C040",44358860,221.150859151926,770,0.637908633468052,0.724984365228268,2299.13,1417.70198783287,190.503002106005,1227.19898572686,1064.23118473172,1025.49278846154,1344.89082969432,1375.83486238532,NA,138486.696907901,49989.0213589799,304267.061867686,775,NA,364,135.044047570204,79,37.1695755932411,330,174,"1000-05-01","0999-02-01",14,0,"4392.its",100.275,90.8950320184062,NA,-0.252598764585061
-"lucid C023 4425","lucid","lucid C023",41883240,245.22458147937,396,0.698848631902482,0.736954967834167,2980.08,1886.87379486401,632.916651147332,1253.95714371668,1012.3022984028,1044.48905109489,1386.14010007148,1373.49106203996,223356.359250144,122994.782638592,166681.374220333,336813.770854404,410,220.641956066436,209,117.755932922095,270,120.248576757672,444,146,"1000-01-01","0999-02-01",10,0,"4425.its",97.901,75.1231280101539,183.166345297069,-0.593753442057529
+"lucid C023 4425","lucid","lucid C023",41883240,245.22458147937,396,0.698848631902482,0.736954967834167,2980.08,1886.87379486401,632.916651147332,1253.95714371668,1012.3022984028,1044.48905109489,1386.14010007148,1373.49106203996,223356.359250144,122994.782638592,166681.374220333,336813.770854404,410,220.641956066436,209,117.755932922095,270,120.248576757672,444,146,"1000-01-01","0999-02-01",10,0,"4425.its",97.901,75.123128010154,183.166345297069,-0.593753442057529
 "lucid C018 4431","lucid","lucid C018",57599990,241.562541937941,460,0.614134941542862,0.67024081560907,4977.01,1770.9321824535,202.770035203131,1568.16214725037,1062.21963974433,1027.97772567409,1487.48815165877,1614.20698576973,342765.059507823,109608.144029192,78465.0136223982,389931.942696518,582,322.687556022145,287,106.625018511288,259,52.7500091579877,615,209,"1000-12-01","0999-02-01",21,0,"4431.its",102.561,85.5000148437526,242.250042057299,0.344421920991757
 "lucid C049 4602","lucid","lucid C049",57599990,101.000017534725,736,0.83401772329108,0.866718027734977,2452.03,1012.59142579712,483.200708889012,529.390716908111,1224.71698113208,1079.0752688172,1510.27436823105,1379.87623762376,320493.180641177,94081.8913336617,130733.147696727,139367.524195751,655,261.687545431866,258,87.1875151367214,255,86.5625150282144,291,171,"1001-05-01","0999-02-01",26,0,"4602.its",106.009,69.5000120659743,286.437549728741,0.770865267832342
 "lucid C068 4603","lucid","lucid C068",57599990,115.625020073788,444,0.829182676778998,0.846153846153846,2604.48,822.170142737872,199.972534717454,622.197608020418,993.423394787031,1010.70118662352,1333.17948717949,1382.62162162162,195331.90891179,58557.5101662344,48744.3834625666,159865.652754454,473,196.625034136291,127,57.9375100585955,272,36.5625063476574,331,115,"1001-08-01","0999-02-01",29,0,"4603.its",88.709,46.6250080946195,180.43753132596,1.02673127593669
@@ -898,7 +898,7 @@
 "lucid C035 5600","lucid","lucid C035",57599990,255.500044357647,443,0.708786914270409,0.742513121333745,NA,2107.35661586052,252.115668770081,1855.24094709044,1065.61027084066,1040.756718529,1357.96169630643,NA,189345.65787251,91976.8909682102,62041.8857711607,442862.576885864,452,177.68753084853,257,88.3750153428846,172,45.687507931859,781,156,"1000-09-01","0999-02-01",18,0,"5600.its",90.085,52.0000090277793,154.812526877175,0.0885559128874064
 "lucid C010 5644","lucid","lucid C010",57599990,189.625032921013,459,0.502081626966532,0.577710713515844,3059.53,1215.43896101371,82.3812643023028,1133.05769671141,1145.78844747746,1103.85332504661,1214.48398576512,1526.21621621622,293823.176010968,111006.269271922,21329.3787030171,289408.800244583,687,256.437544520407,336,100.56251745877,98,17.5625030490457,510,203,"1000-05-01","0999-02-01",14,0,"5644.its",94.905,70.187512185332,175.312530436203,-0.252598764585061
 "lucid C040 5655","lucid","lucid C040",57599990,115.562520062938,NA,0.765769976231695,0.824721497985305,2630.07,796.772638328583,188.030032644103,608.74260568448,1123.00155301426,1039.78644382544,1230.85284280936,1328.48025959978,NA,69990.6371511523,46003.132986655,153522.526653216,NA,NA,173,67.3125116861999,138,37.3750064887164,340,153,"1000-12-01","0999-02-01",21,0,"5655.its",105.687,68.3750118706618,NA,0.344421920991757
-"lucid C006 5670","lucid","lucid C006",57599990,107.187518608944,227,0.378587341305537,0.410706988148754,3076.55,747.713254811329,117.045020320316,630.668234491013,1053.77375165709,1171.65132336018,1362.25308641975,1450.82798833819,149043.150875547,127270.647095598,27585.6297891718,155510.651998377,358,141.437524555126,403,108.62501885851,114,20.2500035156256,439,108,"1000-06-01","0999-02-01",15,0,"5670.its",85.794,22.8125039605042,65.0000112847242,-0.167310095216945
+"lucid C006 5670","lucid","lucid C006",57599990,107.187518608944,227,0.378587341305537,0.410706988148754,3076.55,747.713254811329,117.045020320316,630.668234491013,1053.77375165709,1171.65132336018,1362.25308641975,1450.82798833819,149043.150875547,127270.647095598,27585.6297891718,155510.651998377,358,141.437524555126,403,108.62501885851,114,20.2500035156256,439,108,"1000-06-01","0999-02-01",15,0,"5670.its",85.794,22.8125039605042,65.0000112847242,-0.167310095216944
 "lucid C068 5674","lucid","lucid C068",57599990,96.8750168185793,423,0.679477740205614,0.749437359339835,2680.75,868.254525738633,373.253189800901,495.001335937732,1245.68280034572,1180.83636363636,1354.05504587156,1358.98064516129,180156.906277241,60886.8855706399,92245.0160147597,131651.272856124,407,144.625025108511,211,51.5625089518245,211,68.125011827259,275,93,"1000-01-01","0999-02-01",10,0,"5674.its",109.951,31.3750054470496,127.43752212457,-0.593753442057529
 "lucid C066 5684","lucid","lucid C066",57599990,176.500030642366,318,0.568000467136602,0.608868060562365,3040.4,1021.33580231524,40.1650069730915,981.170795342152,994.677992888187,1118.62038273253,1242.94573643411,1377.85056657224,157345.652316954,157096.277273659,10021.2517398006,243190.667220602,405,158.187527463112,294,140.437524381515,63,8.06250139973983,513,125,"1000-07-01","0999-01-01",17,0,"5684.its",83.232,38.8750067491331,110.500019184031,0.00326724351928943
 "lucid C010 5715","lucid","lucid C010",57599990,143.375024891497,NA,0.842415467458463,0.843056272586474,2559.32,999.023923441653,76.5643882924285,922.459535149225,1142.07694665849,1110.94137076796,1254.66403162055,1556.52136006975,465681.955847562,168168.779195969,19839.3784443365,223166.288744147,874,NA,414,151.375026280386,91,15.8125027452262,399,179,"1001-09-01","0999-02-01",30,0,"5715.its",102.67,71.8750124783008,NA,1.11201994530481
@@ -910,7 +910,7 @@
 "lucid C040 5903","lucid","lucid C040",57599990,103.25001792535,NA,0.734678623325285,0.777711347602535,2032.16,780.672010533335,242.196292047967,538.475718485368,1175.7934655776,1035.69649805447,1324.83063328424,1330.19975786925,NA,83179.3894408662,56222.5097608524,137343.148844297,NA,NA,219,80.3125139431448,140,42.4375073676228,277,219,"1001-03-01","0999-02-01",24,0,"5903.its",106.065,75.0000130208356,NA,0.600287929096108
 "lucid C047 5931","lucid","lucid C047",57599990,216.875037651916,243,0.886054228758722,0.905544147843943,2316.3,1215.84146108359,30.1187552289506,1185.72270585464,992.6328125,1113.87261146497,1117.88990825688,1318,79410.6387865692,163948.153463221,7615.62632215735,285841.299625226,235,80.0000138888913,289,147.18752555339,22,6.8125011827259,411,139,"1001-05-01","0999-02-01",26,0,"5931.its",87.475,38.5000066840289,85.4375148329019,0.770865267832342
 "lucid C046 6027","lucid","lucid C046",57599990,82.5000143229192,349,0.60311917180048,0.677910052910053,1647.51,640.200111145853,239.992541665372,400.207569480481,1012.83730865077,1169.62251655629,1306.59544159544,1311.42424242424,177816.280870882,110383.14416374,57326.8849525842,108192.518783423,427,175.562530479606,303,94.3750163845515,152,43.8750076171888,246,95,"1000-04-01","0999-01-01",14,0,"6027.its",97.548,31.3750054470496,130.562522667105,-0.252598764585061
-"lucid C046 6133","lucid","lucid C046",46206430,101.518338465014,436,0.742244261445687,0.809917355371901,4076.02,1148.69129686063,631.038147720999,517.653149139633,980.942751352891,1170.37051953282,1498.07429871114,1311.65771297007,268333.30339522,226412.384596689,153949.482788434,133157.311655542,459,273.546344091071,362,193.453595094882,514,102.764918215928,254,150,"1000-10-01","0999-01-01",20,0,"6133.its",107.414,62.0952538423765,263.417883614899,0.25913325162364
+"lucid C046 6133","lucid","lucid C046",46206430,101.518338465014,436,0.742244261445687,0.809917355371901,4076.02,1148.69129686063,631.038147720999,517.653149139633,980.942751352891,1170.37051953282,1498.07429871114,1311.65771297007,268333.30339522,226412.384596689,153949.482788434,133157.311655542,459,273.546344091071,362,193.453595094882,514,102.764918215928,254,150,"1000-10-01","0999-01-01",20,0,"6133.its",107.414,62.0952538423765,263.4178836149,0.25913325162364
 "lucid C008 6164","lucid","lucid C008",57599990,127.187522081167,343,0.566690099715913,0.644913080649758,2421.85,1112.24456809802,421.043198097777,691.201370000238,1030.51634586007,1022.41854636591,1408.10148731409,1366.59459459459,210805.036598097,101986.267705949,100591.267463762,173813.780176003,397,204.562535514329,276,99.7500173177113,253,71.4375124023459,344,113,"1000-05-01","0999-02-01",14,0,"6164.its",92.523,44.8125077799493,143.187524858945,-0.252598764585061
 "lucid C010 6276","lucid","lucid C010",57599990,94.5000164062529,608,0.619121000010687,0.645654250238777,1809.86,633.19385992949,115.667520081167,517.526339848323,1150.2110704286,1086.71484157865,1303.5824742268,1427.81084656085,333776.932947384,122187.521213111,31611.8804881737,134928.148425026,686,290.187550379783,284,112.437519520403,117,24.2500042100702,254,149,"1000-12-01","0999-02-01",21,0,"6276.its",94.165,45.3125078667548,223.375038780389,0.344421920991757
 "lucid C025 6339","lucid","lucid C025",57599990,175.187530414502,589,0.802314660653783,0.788566028821167,2702.67,1068.74768554647,68.3981368746765,1000.3495486718,1159.68782249742,1083.24619771863,1337.17277486911,1387.96289689618,280934.423773337,142446.899730365,15962.5027712678,243153.7922142,664,242.250042057299,401,131.500022829865,73,11.937502072483,427,144,"1001-04-01","0999-01-01",26,0,"6339.its",101.391,57.0000098958351,214.312537207038,0.770865267832342
@@ -936,7 +936,7 @@
 "lucid C023 7345","lucid","lucid C023",57599990,117.687520431861,295,0.636924308886925,0.627680965147453,2848.8,1056.52518342451,461.805080174493,594.720103250018,1021.99144994656,1196.64506480558,1297.15323645971,1335.27881040892,179295.656127718,150029.401046771,122743.146309574,157145.652282231,443,175.437530457905,356,125.375021766497,248,94.6250164279542,353,138,"1000-05-01","0999-02-01",14,0,"7345.its",96.056,46.3750080512167,120.31252088759,-0.252598764585061
 "lucid C066 7411","lucid","lucid C066",57599990,209.687536404086,338,0.722195230110112,0.741878059635069,3377.8,1407.6121193771,204.453785495449,1203.15833388166,965.542635658915,1088.57064920895,1304.12780656304,1437.64530551416,124555.021624136,124709.396650937,47193.1331932523,301456.302336164,384,129.000022395837,237,114.562519889326,306,36.1875062825532,561,168,"1000-10-01","0999-01-01",20,0,"7411.its",92.618,48.3125083875883,108.750018880212,0.25913325162364
 "lucid C035 7413","lucid","lucid C035",57599990,252.750043880216,393,0.598214522385727,0.644188937228092,4072.33,1587.84840066813,116.971895307621,1470.8765053605,1063.43045438779,1070.39429530201,1360.35264483627,1461.6196834817,191616.908266824,79744.388844512,33753.7558600271,369424.439136187,420,180.187531282558,180,74.50001293403,97,24.8125043077264,581,120,"1000-01-01","0999-02-01",10,0,"7413.its",119.93,48.2500083767376,133.625023198789,-0.593753442057529
-"lucid C061 7427","lucid","lucid C061",43120610,172.149698253341,176,0.494727639076021,0.55591054313099,3853.49,1405.53048762529,354.937279412327,1050.59320821296,1014.62435233161,1156.53760710885,1617.15170278638,1624.15615906887,196183.031733549,304246.623598321,87216.9479977208,279597.99270001,310,193.355335186585,383,263.066779435634,343,53.9324466884861,363,70,"1000-05-01","0999-01-01",15,0,"7427.its",86.336,25.0460278739099,120.471394073507,-0.167310095216945
+"lucid C061 7427","lucid","lucid C061",43120610,172.149698253341,176,0.494727639076021,0.55591054313099,3853.49,1405.53048762529,354.937279412327,1050.59320821296,1014.62435233161,1156.53760710885,1617.15170278638,1624.15615906887,196183.031733549,304246.623598321,87216.9479977208,279597.99270001,310,193.355335186585,383,263.066779435634,343,53.9324466884861,363,70,"1000-05-01","0999-01-01",15,0,"7427.its",86.336,25.04602787391,120.471394073507,-0.167310095216944
 "lucid C030 7437","lucid","lucid C030",57599990,115.75002009549,589,0.787021970345269,0.798862251117432,2947.64,1153.0702001858,504.088212515315,648.981987670484,1120.27533549283,1171.06517803259,1539.28678678679,1435.83693304536,302614.427537227,242556.917110576,128145.647247508,166198.153853846,604,270.12504689671,565,207.125035959208,356,83.2500144531275,446,147,"1000-11-01","0999-02-01",20,0,"7437.its",102.236,62.3125108181442,250.937543565546,0.25913325162364
 "lucid C047 7468","lucid","lucid C047",57599990,112.437519520403,115,0.488632969367097,0.512135922330097,3149.13,926.208910800158,229.48191484061,696.726995959548,877.631241997439,1238.41598459316,1369.46902654867,1454.59699833241,42839.3824373928,160761.902910053,58031.2600748715,163551.278394319,183,48.8125084743938,349,129.812522536896,253,42.3750073567721,274,35,"1001-09-01","0999-02-01",30,0,"7468.its",72.559,10.8750018880212,27.6875048068585,1.11201994530481
 "lucid C038 7585","lucid","lucid C038",44798680,226.533460360886,802,0.746913346458363,0.790319531102288,3221.61,2000.36358214126,741.222464590475,1259.14111755079,1274.6298031865,1086.80504077094,1420.92474489796,1438.52784675417,437165.380765683,117815.078479991,179041.793195692,325874.690950716,648,342.974391209741,188,108.404979789583,300,126.003712609389,390,233,"1001-03-01","0999-02-01",24,0,"7585.its",114.627,NA,344.742300442781,0.600287929096108
@@ -959,7 +959,7 @@
 "lucid C046 8083","lucid","lucid C046",57599990,92.000015972225,411,0.869928125281834,0.869546621043627,1702.21,662.364489993835,169.721904465608,492.642585528227,1133.93796992481,1222.71346095412,1396.49895178197,1409.59239130435,150813.776182947,251496.918662659,41633.1322279743,129682.522514327,390,133.000023090282,583,205.687535709642,152,29.8125051757821,252,115,"1001-04-01","0999-01-01",26,0,"8083.its",109.438,31.8125055230044,131.562522840716,0.770865267832342
 "lucid C040 8105","lucid","lucid C040",57599990,80.875014040801,510,0.514207039036367,0.655026455026455,1578.63,641.263236330423,246.397542777351,394.865693553072,1227.83956460009,1227.06630336058,1310.86118251928,1271.44513137558,324303.181302636,84437.5146592907,63740.6360660826,102828.142852108,572,264.125045855043,229,68.8125119466167,132,48.6250084418417,240,106,"1000-08-01","0999-02-01",17,0,"8105.its",89.383,41.0000071180568,195.562533951829,0.00326724351928943
 "lucid C041 8108","lucid","lucid C041",57599990,96.6250167751765,430,0.488708583434201,0.576531671858775,3180.69,1221.20896201544,706.605747674609,514.603214340836,1146.37811634349,1026.90748898678,1435.54435483871,1338.34411384217,310381.928885752,72846.2626469206,178007.530904085,129317.522450959,638,270.750047005217,174,70.9375123155403,272,124.000021527782,251,125,"1000-09-01","0999-02-01",18,0,"8108.its",83.192,48.4375084092897,176.562530653217,0.0885559128874064
-"lucid C067 8152","lucid","lucid C067",57599990,177.500030815978,398,0.662399310507449,0.73401999394123,3305.96,1380.03461458934,406.175070516505,973.859544072837,1082.62005649718,1183.9552238806,1381.04216388226,1395.38028169014,191623.783268018,188396.907707796,108498.143836483,247680.043000007,424,177.000030729172,369,159.125027625873,207,78.5625136393253,401,112,"1000-06-01","0999-02-01",15,0,"8152.its",93.455,52.6250091362863,157.750027387158,-0.167310095216945
+"lucid C067 8152","lucid","lucid C067",57599990,177.500030815978,398,0.662399310507449,0.73401999394123,3305.96,1380.03461458934,406.175070516505,973.859544072837,1082.62005649718,1183.9552238806,1381.04216388226,1395.38028169014,191623.783268018,188396.907707796,108498.143836483,247680.043000007,424,177.000030729172,369,159.125027625873,207,78.5625136393253,401,112,"1000-06-01","0999-02-01",15,0,"8152.its",93.455,52.6250091362863,157.750027387158,-0.167310095216944
 "lucid C078 8185","lucid","lucid C078",57599990,184.625032052957,369,0.440530077018042,0.531615925058548,3482.32,1234.40146430581,193.413783578782,1040.98768072703,1096.92812321734,1124.38026474128,1470.78947368421,1385.30467163169,240364.416729933,175192.53041537,48903.7584902359,255761.919403111,561,219.125038042541,450,155.812527050786,247,33.2500057725704,580,123,"1000-09-01","0999-02-01",18,0,"8185.its",80.829,41.4375071940117,132.250022960073,0.0885559128874064
 "lucid C046 8296","lucid","lucid C046",38398610,149.161649340953,611,0.630132972703859,0.729311678267595,2799.06,1068.75306163426,236.033543922553,832.719517711709,1059.68446601942,1170.71808510638,1275.86206896552,1399.93086109365,327454.353165388,247615.838177476,58970.8846231674,208815.996204029,682,309.011185561144,362,211.507656136511,144,46.2204230830231,419,222,"1000-08-01","0999-01-01",18,0,"8296.its",113.876,69.7525248960835,270.291033972323,0.0885559128874064
 "lucid C042 8299","lucid","lucid C042",57599990,182.312531651481,487,0.857373357517995,0.866819747416762,2535.5,1093.80081489597,113.805644757924,979.99517013805,1064.33762057878,1154.32967032967,1188.1095890411,1331.41241001028,206880.660916781,131305.022796011,27103.754705513,242733.167141175,445,194.375033745666,513,113.750019748267,159,22.8125039605042,439,213,"1001-02-01","0999-01-01",25,0,"8299.its",93.283,67.6250117404534,193.187533539502,0.685576598464225
@@ -971,7 +971,7 @@
 "lucid C008 8636","lucid","lucid C008",57599990,100.937517523875,308,0.661719006525936,0.683140355831686,3042.83,1100.9220661323,463.032580387601,637.889485744702,1031.29061645916,1118.65666178624,1454.94470774092,1470.52631578947,212252.536849399,191010.658161573,115122.519986549,148431.275769319,521,205.812535731343,475,170.750029644102,334,79.1250137369816,221,112,"1000-12-01","0999-02-01",21,0,"8636.its",103.725,46.8750081380222,153.562526660161,0.344421920991757
 "lucid C016 8669","lucid","lucid C016",57599990,152.250026432296,441,0.737606173070161,0.761014131338321,2488.17,967.325792938506,159.355652665912,807.970140272594,998.469857340083,1122.32592230638,1260.09328358209,1380.19293924466,271209.422084969,287105.049844627,42213.1323286688,210134.411481669,476,271.625047157126,444,255.8125444119,92,33.5000058159732,444,121,"1001-03-01","0999-02-01",24,0,"8669.its",93.089,50.1250087022585,234.687540744365,0.600287929096108
 "lucid C061 8679","lucid","lucid C061",45608800,82.7998105628738,229,0.665072227247931,0.702668890742285,1055.29,504.015628562909,77.4474224272509,426.568206135658,926.627218934911,1040.41309012876,1387.32558139535,1289.99046711153,160690.042272544,153075.459121924,18834.7862693164,106810.966304748,289,173.413902580204,334,147.129501324306,64,13.5763273754188,160,50,"1000-10-01","0999-01-01",20,0,"8679.its",87.368,24.0743014505973,135.842205890091,0.25913325162364
-"lucid C018 8738","lucid","lucid C018",57599990,184.750032074658,340,0.515036175141865,0.561848408002254,3244.43,1195.11458248517,100.151267387373,1094.9633150978,1104.70907928389,1082.21455124801,1259.2429022082,1490.89309878214,215970.662494907,127363.147111657,24948.754331381,275442.547819887,497,195.500033940978,356,117.687520431861,81,19.8125034396707,421,103,"1000-06-01","0999-02-01",15,0,"8738.its",108.869,40.750007074654,130.562522667105,-0.167310095216945
+"lucid C018 8738","lucid","lucid C018",57599990,184.750032074658,340,0.515036175141865,0.561848408002254,3244.43,1195.11458248517,100.151267387373,1094.9633150978,1104.70907928389,1082.21455124801,1259.2429022082,1490.89309878214,215970.662494907,127363.147111657,24948.754331381,275442.547819887,497,195.500033940978,356,117.687520431861,81,19.8125034396707,421,103,"1000-06-01","0999-02-01",15,0,"8738.its",108.869,40.750007074654,130.562522667105,-0.167310095216944
 "lucid C016 8807","lucid","lucid C016",57599990,68.937511968318,343,0.60802603370565,0.650121485595279,2313.67,599.85572914162,281.454423863615,318.401305278004,1046.48606203377,1174.35982339956,1417.36572890026,1288.80326382593,166587.528921446,132996.273089631,69273.7620266948,88846.8904248074,414,159.187527636724,235,113.250019661462,244,48.8750084852445,165,67,"1000-01-01","0999-02-01",10,0,"8807.its",101.618,23.1250040147576,118.750020616323,-0.593753442057529
 "lucid C061 8897","lucid","lucid C061",42678490,142.891653383238,227,0.532441640687283,0.601620526671168,2465.81,843.673991277573,107.684971984716,735.989019292857,1034.12412780022,1102.23510380156,1326.07547169811,1346.34002361275,237527.428922626,NA,29642.0046726114,192380.751990054,378,229.689475892891,721,NA,57,22.3531807240603,343,73,"1001-02-01","0999-01-01",25,0,"8897.its",85.854,31.041398137563,155.797452065432,0.685576598464225
 "lucid C019 8905","lucid","lucid C019",57599990,85.2500148003498,415,0.6249278261948,0.664918032786885,1686.3,761.504507205644,334.164433014659,427.340074190985,960.348918353105,1154.16110019646,1362.47533632287,1277.37536656892,86011.2649325113,183583.781872184,94947.5164839438,108896.268905602,569,89.5625155490478,333,159.062527615022,277,69.6875120985264,200,138,"1001-09-01","0999-02-01",30,0,"8905.its",100.55,20.6875035915805,64.8125112521721,1.11201994530481
@@ -994,7 +994,7 @@
 "lucid C025 9620","lucid","lucid C025",57599990,124.000021527782,664,0.755348438057922,0.796336996336996,2091.49,1036.21580489858,459.334454745565,576.881350153012,1093.88853570672,1068.37944664032,1294.03726708075,1250.50907258065,322628.806011945,118256.270530603,117191.270345707,155063.151920686,635,294.937551204436,246,110.687519216583,244,90.562515722659,392,154,"1000-11-01","0999-01-01",21,0,"9620.its",92.832,54.8125095160607,277.750048220494,0.344421920991757
 "lucid C041 9775","lucid","lucid C041",57599990,154.437526812071,412,0.50886597238297,0.618941641938675,3854.52,1407.81211941183,570.435099033871,837.377020377955,1160.36141228802,1061.41626794258,1367.70770163736,1393.82840955079,260863.795288853,69323.7620353754,140959.399472118,215259.412371426,469,224.812539029955,245,65.3125113389777,209,103.062517892798,437,111,"1000-05-01","0999-02-01",14,0,"9775.its",82.503,46.4375080620674,159.875027756081,-0.252598764585061
 "lucid C018 9801","lucid","lucid C018",57599990,199.312534602871,275,0.563305276440805,0.6428046989721,4289.52,1331.74960620653,144.390025067713,1187.35958113882,976.10776035384,1098.44322344322,1279.05462184874,1491.21668234556,151723.776340933,112453.144523115,38051.8816062294,297218.176600378,319,155.437526985682,291,102.375017773441,102,29.7500051649315,512,100,"1000-09-01","0999-02-01",18,0,"9801.its",95.896,37.5000065104178,114.687519911028,0.0885559128874064
-"lucid C029 9826","lucid","lucid C029",57599990,143.062524837244,386,0.640169832327966,0.670562903721932,3366.16,1335.21960680896,453.207578681871,882.012028127088,1133.9617577994,1080.93936806149,1680.59469350412,1428.7374399301,211271.286679043,79111.2637345944,114805.644931536,204398.7854859,453,186.312532345926,162,73.1875127061654,187,68.3125118598111,377,176,"1000-05-01","0999-01-01",15,0,"9826.its",105.408,49.5000085937515,139.875024283858,-0.167310095216945
+"lucid C029 9826","lucid","lucid C029",57599990,143.062524837244,386,0.640169832327966,0.670562903721932,3366.16,1335.21960680896,453.207578681871,882.012028127088,1133.9617577994,1080.93936806149,1680.59469350412,1428.7374399301,211271.286679043,79111.2637345944,114805.644931536,204398.7854859,453,186.312532345926,162,73.1875127061654,187,68.3125118598111,377,176,"1000-05-01","0999-01-01",15,0,"9826.its",105.408,49.5000085937515,139.875024283858,-0.167310095216944
 "lyon HED e20120628_200523_008109_1","lyon","lyon HED",48695050,97.9565684807799,127,0.307048535869592,0.378854625550661,1371.93,585.082385170567,53.2432762673003,531.839108903266,1180.84761463641,1135.13598738668,1245.1497005988,1350.18113207547,188479.527179867,212905.089942407,15372.8972452025,132259.110525608,402,159.613759509437,329,187.559105083576,79,12.3462241028606,208,33,"2012-06-26","2011-10-09",8,0,"e20120628_200523_008109.its",87.589,13.4551663875486,64.9100883970753,-0.764330780793763
 "lyon HED e20120703_134402_008109_1","lyon","lyon HED",57599990,44.6875077582479,86,0.330455799015088,0.38741134751773,1239.59,382.128816341808,179.568781175136,202.560035166673,1028.02073515551,1121.90677966102,1275.54074074074,1178.13986013986,68170.63683518,82740.6393646943,53811.884342341,52648.1341403011,203,66.3125115125888,306,73.7500128038217,107,42.18750732422,127,20,"2012-06-30","2011-10-09",8,0,"e20120703_134402_008109.its",100.216,6.00000104166685,28.5000049479175,-0.764330780793763
 "lyon HED e20120706_100058_008015_1","lyon","lyon HED",48968550,84.4705428279988,122,0.279619111897266,NA,1542.44,416.104540567364,23.1540447899723,392.950495777392,1133.15367483296,1140.91478093404,1279.6,1270.46997389034,187021.016550419,174210.753636773,7055.38554847959,107317.28834119,266,165.044707266194,283,152.693922936252,23,5.51374300443856,302,36,"2012-07-04","2011-10-09",8,0,"e20120706_100058_008015.its",88.859,11.7626517428023,61.0922724891793,-0.764330780793763
@@ -1013,8 +1013,8 @@
 "lyon VAP e20120918_153634_008015_2","lyon","lyon VAP",51442010,69.14193282883,264,0.507295193514961,0.570321151716501,1183.58,387.124842128058,56.7131805308541,330.411661597204,1092.26138613861,1083.26180257511,1214.17112299465,1385.11133603239,193006.766259717,158970.460135597,15889.3480250869,95769.2749564024,470,176.703826308498,304,146.75165297779,71,13.0865804038373,214,34,"2012-09-14","2011-08-19",12,0,NA,NA,11.8269095628262,109.241454601016,-0.423176103321295
 "lyon VAP e20121106_140446_008344_1","lyon","lyon VAP",57599990,29.437505110678,394,0.501216025254207,0.610351846466996,694.71,219.963163188049,117.710020435767,102.253142752282,1142.99910206525,1030.75490196078,1239.70183486239,1156.64543524416,238672.541436205,65710.6364080966,33781.8808649099,34048.7559112423,558,208.812536252176,222,63.7500110677103,67,27.2500047309036,110,39,"2012-09-30","2011-08-19",13,0,"e20121106_140446_008344.its",89.264,14.3750024956602,134.062523274744,-0.337887433953178
 "lyon VAA e20121106_140637_008066_1","lyon","lyon VAA",57599990,41.5625072157131,205,0.528365224759983,0.627626459143969,821.16,337.650058619802,193.555658603413,144.094400016389,1116.47415185784,1185.15479115479,1307.51902587519,1120.85714285714,172774.404995556,150736.901169601,53690.0093211822,46585.6330877835,353,154.750026866324,379,127.187522081167,98,41.0625071289075,79,32,"2012-09-30","2011-08-19",13,0,"e20121106_140637_008066.its",72.367,13.1250022786462,106.062518413632,-0.337887433953178
-"lyon GAL e20130311_153356_008109_2","lyon","lyon GAL",46717070,150.49745200202,177,NA,0.46488164532402,3314.28,1105.33173420336,286.629448293739,818.702285909626,NA,909.563636363636,1439.18008784773,1524.33179723502,269899.032623407,19274.9245618357,75746.5311929879,229408.05148953,434,175.850069364367,45,21.1913974913238,127,52.6317254057243,414,49,"2013-03-09","2012-12-09",2,0,NA,NA,23.1949477995945,97.0951303238838,-1.27606279700247
-"lyon GAL e20130311_153528_008344_1","lyon","lyon GAL",43681930,133.345756471841,240,0.243652893152484,0.498082658713251,4001.05,1058.89222385549,347.322016220437,711.570207635056,NA,1083.71882086168,1624.92329149233,1544.41903584672,283636.643344284,39387.2706631781,96018.0101932309,205941.724644493,351,169.690304434809,116,36.3445479629678,217,59.0907956676823,350,54,"2013-03-10","2012-12-09",2,0,"e20130311_153528_008344.its",NA,20.5210712988185,99.7208685605238,-1.27606279700247
+"lyon GAL e20130311_153356_008109_2","lyon","lyon GAL",46717070,150.49745200202,177,NA,0.46488164532402,3314.28,1105.33173420336,286.629448293739,818.702285909626,NA,909.563636363636,1439.18008784773,1524.33179723502,269899.032623407,19274.9245618357,75746.5311929879,229408.05148953,434,175.850069364367,45,21.1913974913238,127,52.6317254057243,414,49,"2013-03-09","2012-12-09",2,0,NA,NA,23.1949477995945,97.0951303238838,-1.27606279700246
+"lyon GAL e20130311_153528_008344_1","lyon","lyon GAL",43681930,133.345756471841,240,0.243652893152484,0.498082658713251,4001.05,1058.89222385549,347.322016220437,711.570207635056,NA,1083.71882086168,1624.92329149233,1544.41903584672,283636.643344284,39387.2706631781,96018.0101932309,205941.724644493,351,169.690304434809,116,36.3445479629678,217,59.0907956676823,350,54,"2013-03-10","2012-12-09",2,0,"e20130311_153528_008344.its",NA,20.5210712988185,99.7208685605238,-1.27606279700246
 "lyon GOE e20130314_125307_008344_1","lyon","lyon GOE",39932360,181.116267608526,691,0.882168838913955,0.873150618481688,3895.92,1342.1112100562,111.686261468143,1230.42494858806,1218.61763022324,1135.41369472183,1288.24175824176,1697.29716276755,383855.599819294,287018.348026513,31705.7143629878,307408.127142999,559,314.992652575505,503,252.787463600949,84,24.6116182464548,449,114,"2013-03-13","2010-07-04",32,0,"e20130314_125307_008344.its",103.516,48.141407119439,331.58070296872,1.28259728404104
 "lyon CUM e20130314_125532_008066_1","lyon","lyon CUM",43195110,198.605814408159,229,0.439196012230707,0.506111661711265,4652.71,1575.07162269062,437.44868342736,1137.62293926326,1009.20662905501,1076.93163751987,1368.68554095046,1459.05581200168,238536.167635642,169366.671366273,112815.270061819,289776.967809551,450,236.360087982181,432,157.267801841458,293,82.4259968315858,461,97,"2013-03-13","2011-08-18",18,0,"e20130314_125532_008066.its",90.775,45.9218647666368,131.431543987271,0.0885559128874064
 "lyon GAL e20130318_152148_008066_1","lyon","lyon GAL",41509490,155.675244383875,456,0.355180162125873,0.566750629722922,3079.18,1245.96134522491,489.954658561211,756.0066866637,1262.88429054054,937.238095238095,1445.07,1408.46239554318,259358.426229761,34139.2775483389,125326.810808805,219262.727631681,477,205.369904568811,51,36.4254053711573,236,86.7271556456126,304,84,"2013-03-17","2012-12-09",3,0,"e20130318_152148_008066.its",NA,34.257226480017,140.064356367664,-1.19077412763435
@@ -1051,7 +1051,7 @@
 "lyon FRH e20131025_085524_008344_1","lyon","lyon FRH",41859430,241.493971609265,117,0.755194459243474,0.798076923076923,2372.47,1245.16545017455,178.185226124675,1066.98022404987,946.467576791809,1156.86016949153,1557.80612244898,1342.31837606838,47699.3594991618,234802.146135291,52518.0586548837,324161.795800851,113,50.3972462119049,365,202.965018873883,100,33.7128336434586,376,32,"2013-10-13","2010-08-11",38,0,"e20131025_085524_008344.its",NA,17.3724295815782,48.6772036790754,1.79432930024975
 "warlaumont 0204 0204_000314","warlaumont","warlaumont 0204",57599990,181.187531456169,254,0.378048706627663,0.450036469730124,NA,1369.49648775981,232.765665410706,1136.7308223491,1267.9765625,1142.28571428571,1705.8617131063,1540.42083477061,101438.142610789,29985.0052057301,103311.267935984,279105.048455738,480,80.0000138888913,163,26.2500045572925,433,60.5625105143247,NA,118,"2015-12-06","2015-08-22",3,18475770,"0204_000314.its",115.114,18.8125032660596,39.3750068359387,-1.19077412763435
 "warlaumont 0204 0204_000609","warlaumont","warlaumont 0204",57599990,181.937531586377,278,0.636460647604524,0.673422385997236,6662.01,1450.25650178064,144.446275077478,1305.81022670316,1182.01241593378,1036.88646788991,1496.24040920716,NA,142801.899791996,113020.64462164,36564.3813479829,323864.431226464,320,120.812520974396,330,109.000018923614,106,24.4375042426223,524,68,"2016-03-03","2015-08-22",6,6922460,"0204_000609.its",78.486,22.6875039388028,95.1250165147598,-0.934908119529997
-"warlaumont 0274 0274_000221","warlaumont","warlaumont 0274",36011490,111.864296645321,210,0.596164796075436,0.6225,2874.75,773.083257593618,185.714726049936,587.368531543682,1168.54089219331,1124.13461538462,1351.30311614731,1399.56210902592,125694.882383373,140247.237756616,47685.7802884579,156561.030937626,286,107.565668624097,312,124.76018070899,106,35.2887370114372,409,102,"2015-12-20","2015-09-29",2,0,"0274_000221.its",86.118,22.5927891348011,76.875463914434,-1.27606279700247
+"warlaumont 0274 0274_000221","warlaumont","warlaumont 0274",36011490,111.864296645321,210,0.596164796075436,0.6225,2874.75,773.083257593618,185.714726049936,587.368531543682,1168.54089219331,1124.13461538462,1351.30311614731,1399.56210902592,125694.882383373,140247.237756616,47685.7802884579,156561.030937626,286,107.565668624097,312,124.76018070899,106,35.2887370114372,409,102,"2015-12-20","2015-09-29",2,0,"0274_000221.its",86.118,22.5927891348011,76.875463914434,-1.27606279700246
 "warlaumont 0274 0274_000605","warlaumont","warlaumont 0274",37867930,125.964107359446,231,0.402068188640591,0.519592875318066,2025.21,911.456316730278,173.598504063993,737.857812666285,1244.66173962479,1142.17171717172,1379.2816091954,1514.50566037736,208136.436293191,107497.293884297,45631.3297294043,190773.353600263,406,167.223294222842,288,94.1165783289448,85,33.0834032913867,342,59,"2016-04-03","2015-09-29",6,0,"0274_000605.its",89.863,22.5309384484444,100.486084135045,-0.934908119529997
 "warlaumont 0274 0274_000911","warlaumont","warlaumont 0274",36410490,113.604623283015,259,0.517957284403327,0.575117370892019,1694.6,853.347702818611,237.687765256661,615.65993756195,1080.983436853,1136.81933842239,1387.28773584906,1378.54656222802,206491.480889161,132519.941368545,58157.8550577045,156609.262880011,303,191.021873092068,205,116.570801436619,122,41.92198457093,172,46,"2016-07-10","2015-09-29",9,15460,"0274_000911.its",94.47,22.5429539673869,123.491883795027,-0.679042111425646
 "warlaumont 0300 0300_000310","warlaumont","warlaumont 0300",41984800,24.094434176178,197,NA,0.421971252566735,973.34,208.724681313237,98.7451649168271,109.97951639641,1298.01633605601,1097.86350148368,1239.48717948718,1218.89679715302,95383.091023418,63448.1050284865,24869.5718450487,29368.6286465578,269,73.4837369714754,261,57.7923438958861,133,20.0644042605895,89,50,"2016-11-02","2016-07-23",3,0,"0300_000310.its",106.105,8.060059831177,37.4707036832377,-1.19077412763435
@@ -1082,7 +1082,7 @@
 "warlaumont 0857 0857_000908","warlaumont","warlaumont 0857",46994930,66.1858630282033,358,0.370644193896833,0.445966514459665,4271.78,810.763033374026,478.176007496979,332.587025877047,1130.2071668533,1166.66666666667,1471.87751004016,1294.24768518519,154629.020619884,57912.6301496779,112300.709885088,85660.9000162358,712,136.814758528207,325,49.6393972711524,431,76.2975921019565,420,49,"2016-09-26","2015-12-18",9,66040712,"0857_000908.its",76.968,7.12417275650799,68.4839832722381,-0.679042111425646
 "warlaumont 0955 0955_000301","warlaumont","warlaumont 0955",43847180,163.549856570023,419,0.35106777731168,0.561194988756826,5640.36,1155.28104658042,92.4171634298945,1062.86388315052,NA,1208.24646464646,1258.13043478261,1592.37449799197,393093.558126201,245522.653908416,23758.2439737288,260432.620752349,514,207.639351036942,452,203.205770587755,85,18.8837685798722,693,62,"2016-04-16","2016-01-15",3,0,"0955_000301.its",118.679,22.1679022459369,148.360738364474,-1.19077412763435
 "warlaumont 0955 0955_000609","warlaumont","warlaumont 0955",37859110,122.57023474667,156,0.437739617790494,0.474639615589963,2273.4,949.05971112369,278.246794496754,670.812916626936,1100.32672112019,934.695863746959,1320.39355992844,1263.72381691234,179334.802112358,36529.543351653,70185.4850787565,154894.924893903,311,162.983229135603,78,39.0817428090623,143,53.1549737962673,283,44,"2016-07-24","2016-01-15",6,0,"0955_000609.its",87.575,19.6835055023745,84.629564720354,-0.934908119529997
-"warlaumont 0955 0955_000902","warlaumont","warlaumont 0955",44879430,187.221629151707,268,0.636779492995231,0.668005354752343,5827.52,1464.52635427856,228.038992473835,1236.48736180473,1055.06949524506,1195.94303981401,1461.19658119658,1651.09682947729,231384.756891966,330103.657733621,54854.1726131548,309121.038301957,391,219.307598157998,510,276.019548376617,85,37.5405837373603,654,97,"2016-10-17","2016-01-15",9,0,"0955_000902.its",106.935,30.0003810208819,161.472639024159,-0.679042111425646
+"warlaumont 0955 0955_000902","warlaumont","warlaumont 0955",44879430,187.221629151707,268,0.636779492995231,0.668005354752343,5827.52,1464.52635427856,228.038992473835,1236.48736180473,1055.06949524506,1195.94303981401,1461.19658119658,1651.09682947729,231384.756891966,330103.657733621,54854.1726131548,309121.038301957,391,219.307598157998,510,276.019548376617,85,37.5405837373603,654,97,"2016-10-17","2016-01-15",9,0,"0955_000902.its",106.935,30.000381020882,161.472639024159,-0.679042111425646
 "warlaumont 0973 0973_000304","warlaumont","warlaumont 0973",57083300,186.106969989472,275,0.374018095104503,0.560478511298183,4623.11,1608.16729236046,470.976134876575,1137.19115748389,1478.92857142857,991.970443349754,1473.7380952381,1454.45272788885,185420.184186969,12699.5461019247,117107.385172196,270683.790180315,366,125.374671751633,32,12.8023432422442,309,79.4628201242745,491,131,"2015-12-20","2015-09-17",3,35052270,"0973_000304.its",80.707,30.5238134445626,81.2286605714806,-1.19077412763435
 "warlaumont 0973 0973_000604","warlaumont","warlaumont 0973",38337300,193.440852642205,355,0.612586999350979,0.687834736036725,4614.46,1604.55994553607,387.009413808484,1217.55053172759,1350.66968325792,1075.92592592593,1439.89174560217,1607.60194174757,280299.551611616,46374.1578045402,99920.6516890861,310975.890320915,370,207.526351621006,84,43.101626875132,173,69.3945583022278,488,107,"2016-03-21","2015-09-17",6,5031520,"0973_000604.its",105.921,43.8528534873348,170.15282766392,-0.934908119529997
 "warlaumont 0973 0973_000911","warlaumont","warlaumont 0973",57599990,132.250022960073,375,0.63741448012529,0.670807453416149,2766.16,1054.17768301696,224.523163979716,829.654519037243,1046.6796875,1044.65753424658,1428.71559633028,1486.81947069943,117228.145352109,33363.7557923187,58398.7601386736,196631.909137484,406,112.000019444448,204,31.9375055447058,183,40.8750070963554,379,79,"2016-06-28","2015-09-17",9,74024581,"0973_000911.its",76.098,25.312504394532,82.0000142361136,-0.679042111425646
@@ -1103,8 +1103,8 @@
 "winnipeg C168 C168_20151019","winnipeg","winnipeg C168",53164800,186.687432286024,187,0.663806810943179,0.695869269178393,2776.65,1191.61836403034,379.393282773564,812.225081256771,1040.54347826087,1086.22146118721,1650.30655391121,1326.18425825172,149091.955579632,64431.8797399783,105714.382448537,247581.933911159,293,143.282773564464,167,59.31744312026,216,64.0574214517876,427,61,"1000-01-01","0999-05-01",8,0,"C168_20151019.its",104.016,32.2318526543879,106.514084507042,-0.764330780793763
 "winnipeg C168 C168_20151021","winnipeg","winnipeg C168",46146930,183.327471621623,336,0.641212139161518,0.680945757997218,1968.38,1093.98445357037,124.85302922643,969.131424343938,1071.46702964307,1048.27092511013,1373.10541310541,1401.71063829787,276338.469319628,74253.8669419613,37598.5141373435,256972.06726428,440,257.9066473111,118,70.8346145669929,54,27.3821032081657,318,109,"1000-01-01","0999-05-01",8,0,"C168_20151021.its",113.954,52.4238557147789,194.171096538816,-0.764330780793763
 "winnipeg C168 C168_20151030","winnipeg","winnipeg C168",49442740,138.196224561988,329,0.76889535130762,0.770645792563601,2485.28,1097.40471502995,379.425088496309,717.979626533643,1034.27750410509,1015.57522123894,1481.27408993576,1357.59220231823,183448.571013661,50135.0855555335,100735.436587859,187614.116855174,388,177.368810870919,206,49.366196129098,245,68.0059398002619,287,91,"1000-02-01","0999-05-01",9,0,"C168_20151030.its",112.363,35.1679538795787,144.749259446382,-0.679042111425646
-"winnipeg C170 C170_20151102","winnipeg","winnipeg C170",39006050,270.881055631114,150,0.5978222841641,0.625144175317186,3197.06,1810.84031836087,290.389106305304,1520.45121205557,1010.15,1063.46975088968,1692.45261984392,1488.41226575809,74584.1222066833,55160.981437495,140113.341391912,403182.68576285,197,73.8347000016664,165,51.8688767511707,165,82.7871573768685,438,63,"1000-01-01","0999-11-01",2,0,"C170_20151102.its",NA,23.0733437505208,57.9602395013081,-1.27606279700247
-"winnipeg C170 C170_20151118","winnipeg","winnipeg C170",22964990,NA,209,0.52375873170668,0.652336448598131,3451.08,2160.08088834352,341.276699880993,1818.80418846252,1107.68100734523,1286.47928994083,1418.10055865922,1450.55873925501,165479.36663591,68164.1054492077,119376.146037947,476154.877489605,300,149.392618938654,141,52.985000211191,150,84.1803109864189,425,62,"1000-01-01","0999-11-01",2,0,"C170_20151118.its",97.897,41.541494248419,116.159423539919,-1.27606279700247
+"winnipeg C170 C170_20151102","winnipeg","winnipeg C170",39006050,270.881055631114,150,0.5978222841641,0.625144175317186,3197.06,1810.84031836087,290.389106305304,1520.45121205557,1010.15,1063.46975088968,1692.45261984392,1488.41226575809,74584.1222066833,55160.981437495,140113.341391912,403182.68576285,197,73.8347000016664,165,51.8688767511707,165,82.7871573768685,438,63,"1000-01-01","0999-11-01",2,0,"C170_20151102.its",NA,23.0733437505208,57.9602395013081,-1.27606279700246
+"winnipeg C170 C170_20151118","winnipeg","winnipeg C170",22964990,NA,209,0.52375873170668,0.652336448598131,3451.08,2160.08088834352,341.276699880993,1818.80418846252,1107.68100734523,1286.47928994083,1418.10055865922,1450.55873925501,165479.36663591,68164.1054492077,119376.146037947,476154.877489605,300,149.392618938654,141,52.985000211191,150,84.1803109864189,425,62,"1000-01-01","0999-11-01",2,0,"C170_20151118.its",97.897,41.541494248419,116.159423539919,-1.27606279700246
 "winnipeg C170 C170_20151127","winnipeg","winnipeg C170",31065930,171.39033017843,160,0.525366045592272,0.605925925925926,1795.28,1053.50240601199,168.691424979069,884.810981032919,1168.29113924051,1108.80733944954,1848.04953560372,1432.65043948614,85563.0589523636,56022.2726311429,69172.6273766792,245542.431853803,193,73.2377881492684,142,50.5248032169003,169,37.430072107933,255,54,"1000-02-01","0999-11-01",3,0,"C170_20151127.its",98.378,19.2365076468015,50.0612729121581,-1.19077412763435
 "winnipeg C170 C170_20160419","winnipeg","winnipeg C170",18751550,176.049446579083,190,0.469691895512391,0.498161764705882,2937.02,1191.93346683341,84.3904637216657,1107.54300311174,1153.16326530612,1300.52462526767,1293.8961038961,1509.23664122137,108480.632267733,233201.202033965,19127.3788033523,265700.275443897,295,94.0722233628687,529,179.313176777386,46,14.7827779570222,390,45,"1000-04-01","0999-11-01",4,1423080,"C170_20160419.its",NA,12.0950001466545,54.7154768539134,-1.10548545826623
 "winnipeg C173 C173_20151123","winnipeg","winnipeg C173",38207680,123.2422382097,256,0.682423444578605,0.620790629575403,2038.19,732.174787896046,80.1705835057245,652.004204390322,1000.54675118859,1113.44236760125,1341.6049382716,1393.0122324159,118973.044162849,134705.273913517,20478.1865844773,171677.945376427,296,118.908031055536,194,120.980912737963,62,15.2639469342289,320,43,"1000-01-01","0998-08-01",17,0,"C173_20151123.its",91.363,16.7714972487207,86.2130336099967,0.00326724351928943
@@ -1206,33 +1206,33 @@
 "fausey-trio Z828 Z828/Z828_000719","fausey-trio","fausey-trio Z828",46289250,126.301463082681,249,0.595748754120526,0.62874251497006,2646.47,1033.66237301317,207.920672726389,825.741700286784,1079.6,1046.05729877217,1306.38775510204,1610.05541871921,153231.517036893,59632.3336411802,49784.0859378797,203352.355028435,390,141.933602294269,158,57.0067564283284,140,38.1082000680504,336,105,"1000-08-20","1000-01-01",7,0,"Z828/Z828_000719.its",112.846,39.5858649686482,100.714528751276,-0.84961945016188
 "fausey-trio Z828 Z828/Z828_000721","fausey-trio","fausey-trio Z828",41636875,152.69157447575,450,0.592550544016536,0.651428571428571,3331.92,1191.67473543584,200.666644650925,991.008090784911,1098.34602368866,1066.63316582915,1400.40865384615,1603.28425821065,224497.251534847,73409.543823834,50370.0625947553,244807.997718369,524,204.395742956214,151,68.8236088803495,123,35.9681172038007,454,156,"1000-08-22","1000-01-01",7,0,"Z828/Z828_000721.its",106.055,45.3059937855567,149.492487128297,-0.84961945016188
 "fausey-trio Z828 Z828/Z828_000722","fausey-trio","fausey-trio Z828",48235437,86.5753533030083,379,0.529156850379382,0.595777548918641,3124.24,659.890030642824,115.705720671713,544.184309971111,1109.26884139483,1047.18208092486,1392.80821917808,1586.0775862069,147198.998114187,54083.4739405388,30353.6174037358,137315.227391845,509,132.699119114439,188,51.6466762807601,84,21.7931061762745,423,105,"1000-08-23","1000-01-01",7,0,"Z828/Z828_000722.its",107.095,22.9126150551927,87.3963264808817,-0.84961945016188
-"quechua 1070 20190605_152502_009814","quechua","quechua 1070",50959687,153.580221165801,659,0.790550207460133,0.812765957446808,2065.39,835.57671772984,43.0102327747814,792.566484955059,1061.90768182592,1047.37679351216,1350.07042253521,1340.88316467341,440427.665892061,237215.036269748,13543.1758048278,205933.132988042,663,NA,396,226.484907570174,58,10.0314587881986,351,85,"2019-06-03","2014-07-30",58,0,"20190605_152502_009814.its",NA,54.2546503474403,368.691432504285,3.50010268761209
+"quechua 1070 20190605_152502_009814","quechua","quechua 1070",50959687,153.580221165801,659,0.790550207460133,0.812765957446808,2065.39,835.57671772984,43.0102327747814,792.566484955059,1061.90768182592,1047.37679351216,1350.07042253521,1340.88316467341,440427.665892061,237215.036269748,13543.1758048278,205933.132988042,663,NA,396,226.484907570174,58,10.0314587881986,351,85,"2019-06-03","2014-07-30",58,0,"20190605_152502_009814.its",NA,54.2546503474403,368.691432504285,3.50010268761208
 "quechua 1046 20190605_152752_008712","quechua","quechua 1046",43278250,195.811984079763,381,0.728182950846943,0.763636363636364,1599.53,967.391056708624,76.5812850565815,890.809771652042,1105.2634467618,1076.30202578269,1373.87283236994,1285.12744265081,335024.821937116,243073.044774223,19770.8548751394,251643.354340806,504,303.117616816761,474,225.840924713915,71,14.3906003593029,338,96,"2019-06-03","2017-11-13",18,0,"20190605_152752_008712.its",87.289,52.9873550802077,267.93135119835,0.0885559128874064
-"quechua 1070 20190607_165330_008293","quechua","quechua 1070",57600000,195.125,657,0.898106093664713,0.901182120428519,5569.28,1186.88125,77.825,1109.05625,1063.54754230459,1011.17954677513,1265.11784511785,1527.99487508008,329965.625,108765,23483.75,298150,594,310.25,198,107.5625,44,18.5625,701,111,"2019-06-06","2014-07-30",58,0,"20190607_165330_008293.its",NA,59.8125,309.625,3.50010268761209
+"quechua 1070 20190607_165330_008293","quechua","quechua 1070",57600000,195.125,657,0.898106093664713,0.901182120428519,5569.28,1186.88125,77.825,1109.05625,1063.54754230459,1011.17954677513,1265.11784511785,1527.99487508008,329965.625,108765,23483.75,298150,594,310.25,198,107.5625,44,18.5625,701,111,"2019-06-06","2014-07-30",58,0,"20190607_165330_008293.its",NA,59.8125,309.625,3.50010268761208
 "quechua 1044 20190607_165831_009107","quechua","quechua 1044",45831375,185.453742114436,446,0.536384714746488,0.628278412911903,2136.43,1075.24288765065,91.6908122437959,983.552075406858,1154.05375754251,1123.19073083779,1479.2,1497.33587462939,NA,296966.346743906,29047.3502049633,277686.541152213,594,NA,483,264.395296889958,129,19.6372026804782,342,87,"2019-06-06","2016-05-15",36,0,"20190607_165831_009107.its",94.721,54.0415817766759,302.570018900808,1.62375196151351
 "quechua 1046 20190607_170010_009144","quechua","quechua 1046",42083750,237.725963109276,349,0.594330135357163,0.67887862376553,1939.92,1260.41895030742,131.846805477174,1128.57214483025,1125.89436619718,1139.51730418944,1420.18126888218,1396.80100755668,273529.426441322,321094.2941159,40212.38601598,332055.864793418,458,242.944129266047,572,281.780972465619,107,28.3149671785428,390,80,"2019-06-06","2017-11-13",18,0,"20190607_170010_009144.its",92.381,49.0165443906496,186.82745715389,0.0885559128874064
 "quechua 1046 20190610_154144_009814","quechua","quechua 1046",43207125,114.731077339675,382,0.714060303756789,0.746089049338147,2125.24,697.560784245654,204.158827971081,493.401956274573,945.277234181344,967.024608501119,1303.93103448276,1273.71096586783,120739.25307458,36015.7265728743,63012.9405740373,146134.231333374,402,127.728933596021,100,37.2438573499162,108,48.3253630043656,434,126,"2019-06-07","2017-11-13",18,-35800375,"20190610_154144_009814_1.its",NA,28.0787022973641,106.315798609604,0.0885559128874064
 "quechua 1044 20190610_154256_009816","quechua","quechua 1044",57600000,124.1875,520,0.591969448933827,0.649894192334822,1256.1,669.193125,81.825,587.368125,1088.58186947044,1103.55815061964,1276.21710526316,1320.52340211374,NA,289408.125,24248.125,163992.5,735,NA,404,262.25,97,19,188,85,"2019-06-06","2016-05-15",36,0,"20190610_154256_009816.its",98.037,51.1875,353.8125,1.62375196151351
-"quechua 1070 20190610_154513_003209","quechua","quechua 1070",46086687,117.873519526366,201,0.85414333901311,0.880024737167594,1423.92,655.529090212104,119.392049161616,536.137041050488,1028.05646749836,1022.35161532682,1361.88405797101,1277.46852220013,122304.907705776,106293.168784296,36701.7052017647,150579.710795875,207,118.967110827472,256,103.969287269445,113,26.9492142058291,182,52,"2019-06-08","2014-07-30",58,0,"20190610_154513_003209.its",NA,26.5586458840055,114.124063636859,3.50010268761209
+"quechua 1070 20190610_154513_003209","quechua","quechua 1070",46086687,117.873519526366,201,0.85414333901311,0.880024737167594,1423.92,655.529090212104,119.392049161616,536.137041050488,1028.05646749836,1022.35161532682,1361.88405797101,1277.46852220013,122304.907705776,106293.168784296,36701.7052017647,150579.710795875,207,118.967110827472,256,103.969287269445,113,26.9492142058291,182,52,"2019-06-08","2014-07-30",58,0,"20190610_154513_003209.its",NA,26.5586458840055,114.124063636859,3.50010268761208
 "quechua 1032 20190610_194441_008712","quechua","quechua 1032",57600000,106.0625,307,0.501920604222656,0.604094076655052,3394.54,891.344375,302.936875,588.4075,1332.44174757282,1155.0397067807,1475.51992225462,1476.93576900412,171551.875,118175,94894.375,156647.5,378,128.75,301,102.3125,351,64.3125,328,61,"2019-06-09","2018-08-27",9,0,"20190610_194441_008712.its",81.488,17.0625,89,-0.679042111425646
-"quechua 1034 20190610_205128_009812","quechua","quechua 1034",46736750,116.773203100344,398,0.781827774156042,0.799248989023686,1431.94,681.850749142805,156.160280721274,525.690468421531,1022.96331138288,1044.40044617959,1314.82142857143,1237.92875989446,251280.373581817,144241.865341514,51043.6005926813,144556.906502913,481,245.639673276383,302,138.109731635169,107,38.8216981283465,182,67,"2019-06-09","2013-06-16",71,0,"20190610_205128_009812.its",85.501,36.510882763564,217.832861720167,4.60885538939761
+"quechua 1034 20190610_205128_009812","quechua","quechua 1034",46736750,116.773203100344,398,0.781827774156042,0.799248989023686,1431.94,681.850749142805,156.160280721274,525.690468421531,1022.96331138288,1044.40044617959,1314.82142857143,1237.92875989446,251280.373581817,144241.865341514,51043.6005926813,144556.906502913,481,245.639673276383,302,138.109731635169,107,38.8216981283465,182,67,"2019-06-09","2013-06-16",71,0,"20190610_205128_009812.its",85.501,36.510882763564,217.832861720167,4.6088553893976
 "quechua 1032 20190611_204054_009816","quechua","quechua 1032",56928999,100.988952923623,479,0.796520942017862,0.818722139673105,2871.34,742.990334328555,233.417278248648,509.573056079908,1172.10702341137,1102.45641838352,1368.68318122555,1389.47401377583,132971.528271558,87981.171072409,66384.5854728624,140321.525765805,483,113.446575795229,287,79.8046703754619,222,48.5025215356413,355,81,"2019-06-10","2018-08-27",9,-46848187,"20190611_204054_009816_1.its",75.508,21.5637025340987,108.577352642368,-0.679042111425646
-"quechua 1034 20190611_204512_003209","quechua","quechua 1034",53100562,172.201567282847,614,0.675319771115002,0.71327731092437,4823.3,1192.19077191688,348.600378278482,843.590393638395,1103.17269076305,1017.60884588804,1446.5204957102,1350.91338582677,204851.391215031,99828.095981357,102873.487478343,232629.402302748,781,185.692949916425,376,98.1006566371181,278,71.1178913699633,631,128,"2019-06-10","2013-06-16",71,-34945375,"20190611_204512_003209_1.its",110.206,33.4911709597349,144.947618445168,4.60885538939761
+"quechua 1034 20190611_204512_003209","quechua","quechua 1034",53100562,172.201567282847,614,0.675319771115002,0.71327731092437,4823.3,1192.19077191688,348.600378278482,843.590393638395,1103.17269076305,1017.60884588804,1446.5204957102,1350.91338582677,204851.391215031,99828.095981357,102873.487478343,232629.402302748,781,185.692949916425,376,98.1006566371181,278,71.1178913699633,631,128,"2019-06-10","2013-06-16",71,-34945375,"20190611_204512_003209_1.its",110.206,33.4911709597349,144.947618445168,4.6088553893976
 "quechua 1044 20190611_205334_009144","quechua","quechua 1044",37959562,214.238509917475,569,0.638408967302457,0.683996750609261,3226.46,1269.23182095726,101.036360746207,1168.19546021105,1048.68651488616,1082.37406716418,1418.69918699187,1535.0420540062,340733.120155601,220081.464585919,33098.3797969007,328865.122310948,676,324.914181043501,298,203.332167004456,74,23.3300900574143,488,88,"2019-06-10","2016-05-15",36,0,"20190611_205334_009144.its",97.943,50.4536906932699,245.629809954077,1.62375196151351
 "quechua 1068 20190612_172906_008293","quechua","quechua 1068",40077000,103.390972378172,634,0.811609206808092,0.820821917808219,988.52,549.589939366719,74.5412081742645,475.048731192455,938.357515960534,980.811843361987,1378.75776397516,1292.44135534318,290463.058612172,92244.3296653941,19939.8158544801,133626.768470694,645,309.544127554458,170,94.0489557601617,75,14.4621603413429,196,70,"2019-06-10","2015-08-03",46,0,"20190612_172906_008293.its",91.522,38.2663373006962,272.804850662475,2.47663865519468
 "quechua 1032 20190612_173054_008712","quechua","quechua 1032",57600000,114.875,185,0.578573035546284,0.664553314121037,2624.27,866.405625,281.550625,584.855,1316.33289124668,1113.48365276212,1548.68070953437,1426.68117519042,124064.375,61728.75,87306.875,163890,311,94.25,249,55.4375,360,56.375,341,61,"2019-06-11","2018-08-27",9,0,"20190612_173054_008712.its",87.742,21.625,74.375,-0.679042111425646
-"quechua 1034 20190612_173650_009812","quechua","quechua 1034",40464187,137.89971858325,NA,0.828312263075409,0.825878594249201,2202.08,732.838250277956,91.5618544368629,641.276395841093,1014.35863293387,1143.07692307692,1472.32067510549,1388.21935483871,203322.014105955,189054.286448409,31044.3405177027,191435.058364079,NA,200.443913527782,651,165.390694739524,139,21.0853118091808,435,136,"2019-06-11","2013-06-16",71,-26399500,"20190612_173650_009812_1.its",70.972,26.7792356732634,191.547157490153,4.60885538939761
+"quechua 1034 20190612_173650_009812","quechua","quechua 1034",40464187,137.89971858325,NA,0.828312263075409,0.825878594249201,2202.08,732.838250277956,91.5618544368629,641.276395841093,1014.35863293387,1143.07692307692,1472.32067510549,1388.21935483871,203322.014105955,189054.286448409,31044.3405177027,191435.058364079,NA,200.443913527782,651,165.390694739524,139,21.0853118091808,435,136,"2019-06-11","2013-06-16",71,-26399500,"20190612_173650_009812_1.its",70.972,26.7792356732634,191.547157490153,4.6088553893976
 "quechua 1068 20190613_184703_003209","quechua","quechua 1068",37499812,107.328538073738,429,0.874790067603313,0.884057971014493,1296.7,740.623552992746,229.101308561227,511.522244431519,959.648109243697,1014.51901565996,1391.08163265306,1329.16815742397,175409.199384786,87070.5165135228,65436.8080565311,142657.675190478,422,182.784916361714,235,85.8244302664771,125,47.0402358283823,197,76,"2019-06-12","2015-08-03",46,0,"20190613_184703_003209.its",100.293,31.1041559355018,179.0408975917,2.47663865519468
 "quechua 1005 20190614_080536_008293","quechua","quechua 1005",57600000,103.3125,400,0.805944643510439,0.855038759689922,1422.35,522.730625,87.71125,435.019375,1123.73251748252,1089.45823927765,1288.06539509537,1223.36358136721,160693.75,30164.375,29545,126388.75,408,143,120,27.6875,135,22.9375,316,152,"2019-06-12","2015-08-11",46,0,"20190614_080536_008293.its",78.595,38.75,138.6875,2.47663865519468
 "quechua 1005 20190615_074056_003209","quechua","quechua 1005",34103749,213.548369711494,594,0.805189088672922,0.829241071428571,4105.04,1128.79367016219,130.167390101305,998.626280060881,1149.68058968059,1046.87555953447,1344.41064638783,1368.1512605042,197574.993881171,123437.92466922,37323.9903917895,292166.471199398,583,171.852074093086,404,117.910790394335,99,27.762343664915,599,139,"2019-06-14","2015-08-11",46,-11154062,"20190615_074056_003209_1.its",85.467,43.9130607019187,160.768248675534,2.47663865519468
 "quechua 1061 20190616_220731_009107","quechua","quechua 1061",55485312,154.8085374378,233,0.639144656364324,0.725037257824143,2036.8,783.878803817486,82.4709068951437,701.407896922342,1018.9507154213,1088.45650500385,1328.58044164038,1321.73931265717,166336.777560159,183474.069678116,27325.7182008817,204616.529866499,251,163.243202092835,284,168.563529029088,48,20.5676053511243,371,45,"2019-06-14","2017-09-05",21,0,"20190616_220731_009107.its",92.158,20.4378412795084,129.893835687542,0.344421920991757
-"quechua 1050 20190616_221024_003209","quechua","quechua 1050",50124437,251.948964534006,417,0.708131605518256,0.778452601003433,1975.81,1247.62929506819,86.5848328630604,1161.04446220513,1271.34509690483,1091.0175879397,1260.98360655738,1361.3141391106,315657.291073414,187119.508195174,27622.454891613,342981.687754418,533,248.286080500016,336,171.509158297379,68,21.9054829483671,441,127,"2019-06-15","2014-08-02",58,0,"20190616_221024_003209.its",99.22,66.0755551229433,216.756549305481,3.50010268761209
+"quechua 1050 20190616_221024_003209","quechua","quechua 1050",50124437,251.948964534006,417,0.708131605518256,0.778452601003433,1975.81,1247.62929506819,86.5848328630604,1161.04446220513,1271.34509690483,1091.0175879397,1260.98360655738,1361.3141391106,315657.291073414,187119.508195174,27622.454891613,342981.687754418,533,248.286080500016,336,171.509158297379,68,21.9054829483671,441,127,"2019-06-15","2014-08-02",58,0,"20190616_221024_003209.its",99.22,66.0755551229433,216.756549305481,3.50010268761208
 "quechua 1051 20190616_221255_009814","quechua","quechua 1051",55827437,198.41856612547,560,0.646852645222571,0.713615870153291,2415.18,1044.35552002862,82.1415462794754,962.213973749144,1095.65868263473,1126.01179506082,1422.91666666667,1357.55931101722,353971.112806056,196991.52586926,24223.5730793087,269364.971922318,559,323.066953619956,420,174.946236561066,60,17.0238873763809,449,110,"2019-06-15","2016-11-25",30,0,"20190616_221255_009814.its",98.878,58.4873706453692,259.87222017733,1.11201994530481
-"quechua 1050 20190617_190808_008712","quechua","quechua 1050",24052750,NA,384,0.727735339943485,0.787920384351407,3015,1753.57428984212,191.968070179086,1561.60621966303,1148.90261627907,1040.47261009667,1360.31802120141,1401.94156456173,236613.443369261,144983.338703475,57618.8585504776,445259.357038177,416,205.947344898193,233,139.34373408446,83,42.356903056823,510,147,"2019-06-16","2014-08-02",58,0,"20190617_190808_008712.its",105.53,64.9572294228311,178.557545395017,3.50010268761209
+"quechua 1050 20190617_190808_008712","quechua","quechua 1050",24052750,NA,384,0.727735339943485,0.787920384351407,3015,1753.57428984212,191.968070179086,1561.60621966303,1148.90261627907,1040.47261009667,1360.31802120141,1401.94156456173,236613.443369261,144983.338703475,57618.8585504776,445259.357038177,416,205.947344898193,233,139.34373408446,83,42.356903056823,510,147,"2019-06-16","2014-08-02",58,0,"20190617_190808_008712.its",105.53,64.9572294228311,178.557545395017,3.50010268761208
 "quechua 1051 20190617_191424_008293","quechua","quechua 1051",55100312,219.788229148321,431,0.713557724641583,0.764087591240876,2905.52,1273.02204749766,141.121814337458,1131.9002331602,1007.39198497182,1265.05392912173,1519.6674584323,1444.23602853746,210223.782398909,160924.968991101,41800.2714757768,317426.079184452,527,208.681214001111,398,127.207991127165,88,27.5061963351496,513,126,"2019-06-16","2016-11-25",30,0,"20190617_191424_008293.its",100.055,51.2882758268229,174.641479344073,1.11201994530481
 "quechua 1061 20190617_192007_009144","quechua","quechua 1061",47137749,131.20694414152,528,0.804322429127997,0.853028798411122,2140.4,697.396984315055,125.486687962126,571.910296352929,1114.33519944017,1059.37033968517,1766.61807580175,1227.91036088475,243226.972929912,97653.7084959233,46277.5598385065,161110.366131399,615,218.270923373961,230,92.1808973101367,111,26.1955656813396,418,89,"2019-06-16","2017-09-05",21,-25586937,"20190617_192007_009144_1.its",79.105,31.6179714054653,200.476267969436,0.344421920991757
 "quechua 1051 20190619_091926_003209","quechua","quechua 1051",57600000,114.3125,489,0.756769352532772,0.785685071574642,3033.07,722.77375,227.273125,495.500625,1027.74739583333,1074.83560545309,1513.17010309278,1269.51886276654,147995.625,83770,73388.75,145121.875,587,144,480,77.9375,355,48.5,459,120,"2019-06-17","2016-11-25",30,0,"20190619_091926_003209.its",106.995,36.25,121.3125,1.11201994530481
-"quechua 1050 20190619_092822_009812","quechua","quechua 1050",23208250,127.506382428662,375,0.650564286467672,0.706651506537806,1694.34,976.188553639331,394.176208891235,582.012344748096,1018.83582089552,1046.09296482412,1428.68468468468,1297.3600973236,264715.349067681,129164.585869249,122995.572695055,165421.69271703,507,259.821399717773,222,123.473333836028,172,86.0900757273814,203,103,"2019-06-17","2014-08-02",58,0,"20190619_092822_009812.its",NA,44.8288862796635,193.586332446436,3.50010268761209
+"quechua 1050 20190619_092822_009812","quechua","quechua 1050",23208250,127.506382428662,375,0.650564286467672,0.706651506537806,1694.34,976.188553639331,394.176208891235,582.012344748096,1018.83582089552,1046.09296482412,1428.68468468468,1297.3600973236,264715.349067681,129164.585869249,122995.572695055,165421.69271703,507,259.821399717773,222,123.473333836028,172,86.0900757273814,203,103,"2019-06-17","2014-08-02",58,0,"20190619_092822_009812.its",NA,44.8288862796635,193.586332446436,3.50010268761208
 "quechua 1071 20190619_190755_009144","quechua","quechua 1071",53749312,112.321437714403,492,0.844629958863252,0.845499328257949,2463.38,754.514067082384,265.469072422732,489.044994659653,1023.94866732478,1029.65277777778,1708.08196721311,1208.2587954681,138946.373862423,69515.3828201559,69785.9723302133,135713.365038049,508,135.696620637674,171,67.5134223113405,234,40.8563369146009,288,96,"2019-06-18","2012-12-08",78,0,"20190619_190755_009144.its",NA,33.3548455466742,129.467703698235,5.20587607497442
 "quechua 1072 20190619_191256_009816","quechua","quechua 1072",45202625,67.6951836314816,257,0.484197466668491,0.585291887793783,1813.92,544.058226706967,219.960765552886,324.097461154081,1074.59570957096,1217.20491803279,1895.82716049383,1306.37647058824,103725.746015856,118266.671459899,61149.4575812799,88435.3950683174,331,96.525367719242,364,97.162498859303,72,32.2547639655883,266,59,"2019-06-18","2017-10-19",19,0,"20190619_191256_009816.its",90.168,12.8222641937277,64.3502451461613,0.173844582255523
 "quechua 1071 20190620_182729_009107","quechua","quechua 1071",39971250,237.320574162679,372,0.75334841916427,0.79126664602044,2372.39,1342.57967914438,322.094005066141,1020.48567407824,1077.71994627267,1062.82282282282,1357.87175989086,1193.77229601518,289058.260624824,191254.264002252,89643.2310723332,283306.726709823,430,268.21277793414,378,179.949338587109,137,66.0174500422178,443,106,"2019-06-19","2012-12-08",78,-35893625,"20190620_182729_009107_1.its",NA,64.6664790318041,240.743034055728,5.20587607497442

File diff suppressed because it is too large
+ 1243 - 1243
data_output/lena_metrics_scaled.csv


+ 1 - 1
input/el1000-metrics

@@ -1 +1 @@
-Subproject commit 88f47a72ceb47aaba075131383f29f0200c1c8fa
+Subproject commit c61d982bf9c7b88394959b6fa1efb3aba58aeb0f

+ 1 - 1
input/laac-metrics

@@ -1 +1 @@
-Subproject commit b84fc00bbc9fd111d08949de4fb231df1c4cc314
+Subproject commit 431b54f0e59b56290fdabe59a5ec626545733be6