class: center, middle, inverse, title-slide .title[ # Reviewer들을 위한 의학통계 ] .author[ ### 김진섭 ] .institute[ ### 차라투(주) ] --- layout: true <div class="my-footer"><span><a href="https://www.zarathu.com">Zarathu Co.,Ltd</a>                             <a href="https://github.com/jinseob2kim">김진섭</a></span></div> --- # Executive summary **Table 1** - 연속변수 2그룹: 정규분포 **t-test**, 아니면 **Wilcox-test** - 연속변수 3그룹이상: 정규분포 **ANOVA**, 아니면 **Kruskal–Wallis ANOVA** - 범주형 변수: 샘플수 충분하면 **Chisq-test**, 아니면 **Fisher-test** **회귀분석** - **Univariate, multivariate** 같이 보여주기, **Subgroup** 분석 추천 - **Stepwise selection 비추천**: 예측모형 목적 아님, 임상맥락 고려X **생존분석** - Kaplan-meier 그림선 겹치면 안됨: **Time stratification** 필요 - 보정할 변수가 Index time 이후면 안됨: **Time-dependent covariate** 필요 - Propensity score 매칭 후 pair 고려한 **stratified cox 는 필수아님** **국민건강영양조사** - **표본추출정보를 고려**한 통계분석: Survey table1/GLM/Cox --- class: center, middle # 소개 --- # 맞춤형 통계웹 <center> <img src="https://jinseob2kim.github.io/lecture-general/korea-preventive/ss.png" width=70%></a> </center> --- # [공개 통계웹](http://app.zarathu.com) <center> <img src="openstat.jpg" width=70%></a> </center> --- # 주요 계약 - 대한심혈관중재학회 [COBIS III 레지스트리](https://clinicaltrials.gov/ct2/show/NCT03068494) 분석: [추가계약](http://pf.kakao.com/_XsuxgC/48388190) - 서울성모병원 [COREA-AMI II 레지스트리](https://clinicaltrials.gov/ct2/show/NCT02806102) 분석: [10개 연구 계약](http://pf.kakao.com/_XsuxgC/48043955) - 삼성서울병원 [공통데이터모델(CDM)](http://www.feedernet.org/html/?pmode=cdmdrn) 분석: [심평원 코로나데이터](https://hira-covid19.net/) 분석 중 - 강동성심병원 CDM 분석지원: 공단표본데이터 분석 중 - 경기도감염병관리지원단 코로나 대시보드 with Shinykorea: [최종보고](https://shinykorea.github.io/corona-activityrecord) - 삼성서울병원 이식외과 육종(sarcoma) 데이터 분석: [5개 연구 계약](http://pf.kakao.com/_XsuxgC/51701089) - 해운대백병원 정신질환 네트워크분석: [논문 5편](http://pf.kakao.com/_XsuxgC/52664370) 게재 - 성균관의대 환경역학연구실 [미세먼지 대시보드](http://pf.kakao.com/_XsuxgC/43627405) - [삼성서울병원 정신과, 응급의학과, 임상역학센터 통계자문계약](http://pf.kakao.com/_XsuxgC/55192190) - [서울대병원 순환기내과 통계자문계약](http://pf.kakao.com/_XsuxgC/55577702) --- # 주요 논문 성과 .large[ SCI 논문 200건 지원 ] <center> <img src="paper.png" width=80%></a> </center> --- # R&D, 지원사업 .large[ - 창업도약패키지 - 과기정통부 R&D: 공개SW 통계패키지 개발 - 심평원 CDM 변환용역 ] --- # R&D: stargarten .large[ 총괄책임자 - with 파이디지털헬스케어, 앤틀러 ] <center> <img src="https://jinseob2kim.github.io/lecture-general/APPFGH2022/statgarten.png " width=80%></a> </center> --- class: center, middle # 의학통계 Tip --- # 연구의 흐름? .large[ - **Table 1**으로 데이터를 보여주고 - **단변량(univariate)** 분석으로 가설검정 - **다변량(multivariate)** or 소그룹(subgroup) 분석: 다른 변수들의 효과를 보정. ] --- class: center, middle # 연속 변수의 그룹 비교 --- # 2그룹: t-test .large[ 2 그룹 **평균** 비교 - 각 그룹의 평균과 표준편차 필요. https://www.evanmiller.org/ab-testing/t-test.html 에서 바로 가능. ] ---
--- ```r nev.ttest <- t.test(tChol ~ sex, data = data.t, var.equal = F) nev.ttest ``` ``` ## ## Welch Two Sample t-test ## ## data: tChol by sex ## t = -2.1123, df = 27.643, p-value = 0.04383 ## alternative hypothesis: true difference in means between group Female and group Male is not equal to 0 ## 95 percent confidence interval: ## -42.9640545 -0.6470566 ## sample estimates: ## mean in group Female mean in group Male ## 128.9167 150.7222 ``` .large[ 여자의 평균 콜레스테롤 값은 128.9, 남자는 150.7 이고 `\(p\)`-value는 0.044 ] - `var.equal = F`는 등분산 가정 없이 분석하겠다는 뜻. 등분산 가정이란 두 그룹의 분산이 같다고 가정하는 것인데, 계산이 좀 더 쉽다는 이점이 있으나 아무 근거 없이 분산이 같다고 가정하는 것은 위험한 가정이다. --- ```r ev.ttest <- t.test(tChol ~ sex, data = data.t, var.equal = T) ev.ttest ``` ``` ## ## Two Sample t-test ## ## data: tChol by sex ## t = -1.9863, df = 28, p-value = 0.05687 ## alternative hypothesis: true difference in means between group Female and group Male is not equal to 0 ## 95 percent confidence interval: ## -44.2931564 0.6820453 ## sample estimates: ## mean in group Female mean in group Male ## 128.9167 150.7222 ``` 앞서는 **Welch t-test** 였는데 이름이 바뀐 것을 확인할 수 있고 `\(p\)`-value도 0.057로 다름. - 특별한 경우가 아니고서야 위험한 등분산가정을 할 필요가 없음. - **R** 에서 디폴트도 `F` 임. - 2그룹에서 ANOVA 하면 (등분산 가정한) t-test와 동일. : 등분산 가정없는 ANOVA 도 있음. --- <img src="index_files/figure-html/unnamed-chunk-4-1.png" style="display: block; margin: auto;" /> --- <img src="index_files/figure-html/unnamed-chunk-5-1.png" style="display: block; margin: auto;" /> --- <img src="index_files/figure-html/unnamed-chunk-6-1.png" style="display: block; margin: auto;" /> --- # 2그룹: wilcox-test .large[ 정규분포 못믿을때: 2 그룹 **중위값** 비교 - 값 자체가 아닌 순위정보만 이용 - **비모수검정** - **Median [IQR(25%-75% quantile)]** 로 표시 ] -- .large[ - 정규분포 따르는지 아닌지 테스트하는 정규성검정은 불필요. - 임상적으로 판단하는것이 좋다. 키나 몸무게는 정규분포, CRP나 자녀수는 정규분포 안함. ] - [정규분포 참고자료](https://jinseob2kim.github.io/Normal_distribution.html) --- ```r res.wilcox <- wilcox.test(tChol ~ sex, data = data.t) res.wilcox ``` ``` ## ## Wilcoxon rank sum test with continuity correction ## ## data: tChol by sex ## W = 63, p-value = 0.05953 ## alternative hypothesis: true location shift is not equal to 0 ``` --- <img src="index_files/figure-html/unnamed-chunk-8-1.png" style="display: block; margin: auto;" /> --- # 3그룹 이상: 1 way ANOVA .large[ 3 그룹 이상의 평균 비교 - 2그룹씩 짝을 지어서 **t-test**를 반복할 수도 있으나, Table 1은 보통 하나의 `\(P\)`-value만 제시함. - 전체적으로 **튀는 것이 하나라도 있는가?**를 테스트하는 **ANOVA**. - 어떤 그룹이 차이나는지는 관심없음. ] -- - 사후(post-hoc) 분석을 이용, 어떤 것이 튀는지를 알아볼 수도 있다. - 보통 우리가 쓰는 **ANOVA**는 비교할 모든 그룹에서 분산이 같다는 등분산 가정 하에 분석을 수행하며, 실제로 2 그룹일 때 **ANOVA**를 수행하면 등분산 가정 하에 수행한 **t-test**와 동일한 결과를 얻는다. 물론 등분산 가정없는 generalized ANOVA 도 있고 본사는 이것을 디폴트로 사용한다. ---
--- ```r res.aov1 <- oneway.test(tChol ~ group, data = data.aov, var.equal = F) res.aov1 ``` ``` ## ## One-way analysis of means (not assuming equal variances) ## ## data: tChol and group ## F = 0.16299, num df = 2.000, denom df = 14.992, p-value = 0.8511 ``` ```r res.aov2 <- oneway.test(tChol ~ group, data = data.aov, var.equal = T) res.aov2 ``` ``` ## ## One-way analysis of means ## ## data: tChol and group ## F = 0.28648, num df = 2, denom df = 27, p-value = 0.7532 ``` .large[ > 등분산 가정없는 `\(p\)`-value인 0.851를 이용하며, 의미는 "**3 그룹에서 총콜레스테롤 값이 비슷하다**(다른 것이 있다고 할 수 없다)" 이다. ] --- <img src="index_files/figure-html/unnamed-chunk-11-1.png" style="display: block; margin: auto;" /> --- <img src="index_files/figure-html/unnamed-chunk-12-1.png" style="display: block; margin: auto;" /> --- # 3그룹이상: Kruskal–Wallis ANOVA .large[ 정규분포 못믿을때: 3 그룹 **중위값** 비교 - 값 자체가 아닌 순위정보만 이용 - **비모수검정** - **Median [IQR(25%-75% quantile)]** 로 표시 ] --- ```r res.kruskal <- kruskal.test(tChol ~ group, data = data.aov) res.kruskal ``` ``` ## ## Kruskal-Wallis rank sum test ## ## data: tChol by group ## Kruskal-Wallis chi-squared = 0.11726, df = 2, p-value = 0.9431 ``` .large[ > `\(p\)`-value는 0.943. ] --- <img src="index_files/figure-html/unnamed-chunk-14-1.png" style="display: block; margin: auto;" /> --- class: center, middle # 범주형 변수의 그룹 비교 ### 그룹 수나 정규분포를 고려할 필요가 없어 연속 변수일 때보다 훨씬 간단하며 딱 하나, **샘플 수**가 충분한지만 확인하면 된다. --- # 샘플 수 충분: Chi-square test .large[ **Chi-square test**는 두 범주형 변수가 관계가 있는지 없는지를 파악하는 테스트. ] - 세 범주형 변수일 때도 이용할 수 있으나 본 강의에서는 생략한다. ---
--- ```r tb.chi <- table(data.chi) tb.chi ``` ``` ## DM_medi ## HTN_medi 0 1 ## 0 15 13 ## 1 14 8 ``` 언뜻 봐서는 관계가 있는지 아닌지 잘 모르겠다. **Chi-square test**를 해보자. -- ```r res.chi <- chisq.test(tb.chi) res.chi ``` ``` ## ## Pearson's Chi-squared test with Yates' continuity correction ## ## data: tb.chi ## X-squared = 0.18246, df = 1, p-value = 0.6693 ``` > `\(p\)`-value는 0.669, **혈압약 복용과 당뇨약 복용은 유의한 관계가 없다**고 말할 수 있다. --- # 샘플 수 부족: Fisher's exact test .large[ 분석할 테이블에서 **샘플 수가 너무 작은 항이 있으면** **chi-square test** 가 부정확해진다. 이 때는 **fisher's exact test**를 쓴다. - 현 상황보다 더 극한 상황이 나올 확률을 [직접 계산](https://techntalk.tistory.com/entry/%ED%94%BC%EC%85%94%EC%9D%98-%EC%A0%95%ED%99%95%EB%8F%84-%EA%B2%80%EC%A0%95Fishers-Exact-Probability-Test)함. ] ---
--- 아까와 마찬가지로 테이블로 두 약물 복용상태를 비교하면 아래와 같다. ```r tb.fisher <- table(data.fisher) tb.fisher ``` ``` ## DM_medi ## HTN_medi 0 1 ## 0 31 8 ## 1 9 2 ``` -- 혈압약과 당뇨약을 모두 복용한 사람이 2명으로 좀 작아보이지만 무시하고 **chi-square test**를 수행하면 결과는 나오나 `Warning` 메시지가 뜬다. ```r chisq.test(tb.fisher) ``` ``` ## Warning in chisq.test(tb.fisher): Chi-squared approximation may be incorrect ``` ``` ## ## Pearson's Chi-squared test with Yates' continuity correction ## ## data: tb.fisher ## X-squared = 4.5971e-31, df = 1, p-value = 1 ``` **두 약을 모두 복용한 사람이 2명뿐**, 분석할 테이블에서 샘플 수가 너무 작은 항이 있으면 **chi-square test**의 계산이 부정확해진다. --- **fisher's exact test** 를 해 보자. ```r res.fisher <- fisher.test(tb.fisher) res.fisher ``` ``` ## ## Fisher's Exact Test for Count Data ## ## data: tb.fisher ## p-value = 1 ## alternative hypothesis: true odds ratio is not equal to 1 ## 95 percent confidence interval: ## 0.07627205 5.55561549 ## sample estimates: ## odds ratio ## 0.8636115 ``` .large[ > `\(p\)`-value는 1, 마찬가지로 혈압약 복용과 당뇨약 복용은 유의한 관계가 없다고 할 수 있다. ] -- 의문: **무조건 fisher's test만 하면 간단한데** **chi-square test**는 왜 하나? - 샘플 수가 작을 때는 **fisher's test**만 하는 것이 실제로 더 간단하고 방법론적으로도 아무 문제가 없다. 그러나 샘플 수나 그룹 수가 늘어날수록 **fisher's test**는 계산량이 급격하게 증가한다. **chi-square test**를 먼저 수행하는 것을 권유한다. --- class: center, middle # 연속변수의 짝지은 그룹비교 ### Paired t-test --- # 2그룹 : Paired t-test 각 사람의 혈압을 한 번은 사람이 직접, 한 번은 자동혈압계로 측정했다고 하자. 이 때 직접 잰 혈압과 자동혈압계의 측정값을 비교한다면 **t-test**로 충분할까? - t-test는 혈압 재는 방법마다 **평균을 먼저 구한 후** 그것이 같은지를 테스트하므로 **짝지은 정보를 활용하지 못한다.** - 각 사람마다 두 혈압값의 **차이를 먼저 구한 후** 평균이 0인지를 테스트하면, **짝지은 정보를 활용**하면서 계산도 더 간단한 방법이 된다. -- .large[ - **차이값을 먼저 구한 후** 그 평균이 0인지를 테스트하는 방법이 **paired t-test** ] ---
--- 그냥 t-test 로 비교해보자. ```r pt.ttest <- t.test(data.pt$SBP_hand, data.pt$SBP_machine) pt.ttest ``` ``` ## ## Welch Two Sample t-test ## ## data: data.pt$SBP_hand and data.pt$SBP_machine ## t = -0.45768, df = 57.863, p-value = 0.6489 ## alternative hypothesis: true difference in means is not equal to 0 ## 95 percent confidence interval: ## -3.224307 2.024307 ## sample estimates: ## mean of x mean of y ## 125.0 125.6 ``` 각 방법의 **평균을 먼저 구한 후 차이를 비교** 했고, `\(p\)`-value는 0.649이다. 이제 **paired t-test**를 수행하자. --- ```r pt.ttest.pair <- t.test(data.pt$SBP_hand, data.pt$SBP_machine, paired = TRUE) pt.ttest.pair ``` ``` ## ## Paired t-test ## ## data: data.pt$SBP_hand and data.pt$SBP_machine ## t = -0.46171, df = 29, p-value = 0.6477 ## alternative hypothesis: true mean difference is not equal to 0 ## 95 percent confidence interval: ## -3.257804 2.057804 ## sample estimates: ## mean difference ## -0.6 ``` 이번에는 **사람마다 차이값을 먼저 구한 후 그것이 0인지 테스트** 했고, `\(p\)`-value는 0.648이다. --- <img src="index_files/figure-html/unnamed-chunk-25-1.png" style="display: block; margin: auto;" /> --- **Paired t-test**의 비모수버전은 **wilcoxon-signed rank test** 이며 아래와 같이 실행한다. ```r pt.wilcox.pair <- wilcox.test(data.pt$SBP_hand, data.pt$SBP_machine, paired = T) pt.wilcox.pair ``` ``` ## ## Wilcoxon signed rank test with continuity correction ## ## data: data.pt$SBP_hand and data.pt$SBP_machine ## V = 214, p-value = 0.9482 ## alternative hypothesis: true location shift is not equal to 0 ``` - 본 강의에서는 다루지 않겠지만 짝지은 3개 이상의 그룹은 [**repeated measure ANOVA**](https://statistics.laerd.com/statistical-guides/repeated-measures-anova-statistical-guide.php) 를 이용한다. --- <img src="index_files/figure-html/unnamed-chunk-27-1.png" style="display: block; margin: auto;" /> --- class: center, middle # 범주형 변수의 짝지은 그룹비교 ### Mcnemar test, Symmetry test for a paired contingency table --- # 2그룹: Mcnemar test .large[ 약 복용 전후로 복통증상 발생에 차이가 있는지 알아본다고 하자. ] ---
--- 이 데이터를 2 by 2 테이블로 정리하면 아래와 같다. ```r table.mc <- table(data.mc) table.mc ``` ``` ## Pain_after ## Pain_before 0 1 ## 0 8 8 ## 1 9 5 ``` -- 먼저 앞서 배운 **Chi-sqaure test** 를 이용한 결과를 보자. ```r mc.chi <- chisq.test(table.mc) mc.chi ``` ``` ## ## Pearson's Chi-squared test with Yates' continuity correction ## ## data: table.mc ## X-squared = 0.17514, df = 1, p-value = 0.6756 ``` 이것은 약 복용 전 복통 증상과 복용 후의 복통 증상이 얼마나 관계가 있는지 알아보는 테스트로 **짝지은 정보를 활용하지 않는다**. --- 짝지은 정보를 활용하는 **mcnemar test**를 수행하자. ```r mc.mcnemar <- mcnemar.test(table.mc) mc.mcnemar ``` ``` ## ## McNemar's Chi-squared test with continuity correction ## ## data: table.mc ## McNemar's chi-squared = 0, df = 1, p-value = 1 ``` .large[ > **Mcnemar test**는 약 복용후 증상발생이 달라진 사람 즉, **discordant pair**만 분석에 이용한다. 따라서 **condordant pair** 가 어떻든지 통계결과는 동일하게 나온다. ] --- # 3그룹: symmetry test .large[ Symmetry test for a paired contingency table* - Mcnemar test의 일반화, 3그룹 이상에서도 가능. ] http://rcompanion.org/handbook/H_05.html ``` ## Yes.after No.after Maybe.after ## Yes.before 6 0 1 ## No.before 5 3 7 ## Maybe.before 11 1 12 ``` --- `nominalSymmetryTest` 함수를 쓴다. ```r ## Symmetry test nominalSymmetryTest(AndersonRainGarden) ``` ``` ## $Global.test.for.symmetry ## Dimensions p.value ## 1 3 x 3 0.000476 ## ## $Pairwise.symmetry.tests ## Comparison p.value p.adjust ## 1 Yes.before/Yes.after : No.before/No.after 0.0736 0.0771 ## 2 Yes.before/Yes.after : Maybe.before/Maybe.after 0.00937 0.0281 ## 3 No.before/No.after : Maybe.before/Maybe.after 0.0771 0.0771 ## ## $p.adjustment ## Method ## 1 fdr ## ## $statistical.method ## Method ## 1 McNemar test ``` --- class: center, middle # 회귀분석 --- # Example data <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":[""],"name":["_rn_"],"type":[""],"align":["left"]},{"label":["id"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["study"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["rx"],"name":[3],"type":["fct"],"align":["left"]},{"label":["sex"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["age"],"name":[5],"type":["dbl"],"align":["right"]},{"label":["obstruct"],"name":[6],"type":["dbl"],"align":["right"]},{"label":["perfor"],"name":[7],"type":["dbl"],"align":["right"]},{"label":["adhere"],"name":[8],"type":["dbl"],"align":["right"]},{"label":["nodes"],"name":[9],"type":["dbl"],"align":["right"]},{"label":["status"],"name":[10],"type":["dbl"],"align":["right"]},{"label":["differ"],"name":[11],"type":["dbl"],"align":["right"]},{"label":["extent"],"name":[12],"type":["dbl"],"align":["right"]},{"label":["surg"],"name":[13],"type":["dbl"],"align":["right"]},{"label":["node4"],"name":[14],"type":["dbl"],"align":["right"]},{"label":["time"],"name":[15],"type":["dbl"],"align":["right"]},{"label":["etype"],"name":[16],"type":["dbl"],"align":["right"]}],"data":[{"1":"1","2":"1","3":"Lev+5FU","4":"1","5":"43","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1521","16":"2","_rn_":"1"},{"1":"1","2":"1","3":"Lev+5FU","4":"1","5":"43","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"968","16":"1","_rn_":"2"},{"1":"2","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3087","16":"2","_rn_":"3"},{"1":"2","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3087","16":"1","_rn_":"4"},{"1":"3","2":"1","3":"Obs","4":"0","5":"71","6":"0","7":"0","8":"1","9":"7","10":"1","11":"2","12":"2","13":"0","14":"1","15":"963","16":"2","_rn_":"5"},{"1":"3","2":"1","3":"Obs","4":"0","5":"71","6":"0","7":"0","8":"1","9":"7","10":"1","11":"2","12":"2","13":"0","14":"1","15":"542","16":"1","_rn_":"6"},{"1":"4","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"1","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"293","16":"2","_rn_":"7"},{"1":"4","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"1","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"245","16":"1","_rn_":"8"},{"1":"5","2":"1","3":"Obs","4":"1","5":"69","6":"0","7":"0","8":"0","9":"22","10":"1","11":"2","12":"3","13":"1","14":"1","15":"659","16":"2","_rn_":"9"},{"1":"5","2":"1","3":"Obs","4":"1","5":"69","6":"0","7":"0","8":"0","9":"22","10":"1","11":"2","12":"3","13":"1","14":"1","15":"523","16":"1","_rn_":"10"},{"1":"6","2":"1","3":"Lev+5FU","4":"0","5":"57","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1767","16":"2","_rn_":"11"},{"1":"6","2":"1","3":"Lev+5FU","4":"0","5":"57","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"904","16":"1","_rn_":"12"},{"1":"7","2":"1","3":"Lev","4":"1","5":"77","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"420","16":"2","_rn_":"13"},{"1":"7","2":"1","3":"Lev","4":"1","5":"77","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"229","16":"1","_rn_":"14"},{"1":"8","2":"1","3":"Obs","4":"1","5":"54","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3192","16":"2","_rn_":"15"},{"1":"8","2":"1","3":"Obs","4":"1","5":"54","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3192","16":"1","_rn_":"16"},{"1":"9","2":"1","3":"Lev","4":"1","5":"46","6":"0","7":"0","8":"1","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3173","16":"2","_rn_":"17"},{"1":"9","2":"1","3":"Lev","4":"1","5":"46","6":"0","7":"0","8":"1","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3173","16":"1","_rn_":"18"},{"1":"10","2":"1","3":"Lev+5FU","4":"0","5":"68","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"3308","16":"2","_rn_":"19"},{"1":"10","2":"1","3":"Lev+5FU","4":"0","5":"68","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"3308","16":"1","_rn_":"20"},{"1":"11","2":"1","3":"Lev","4":"0","5":"47","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2908","16":"2","_rn_":"21"},{"1":"11","2":"1","3":"Lev","4":"0","5":"47","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2908","16":"1","_rn_":"22"},{"1":"12","2":"1","3":"Lev+5FU","4":"1","5":"52","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"1","14":"0","15":"3309","16":"2","_rn_":"23"},{"1":"12","2":"1","3":"Lev+5FU","4":"1","5":"52","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"1","14":"0","15":"3309","16":"1","_rn_":"24"},{"1":"13","2":"1","3":"Obs","4":"1","5":"64","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2085","16":"2","_rn_":"25"},{"1":"13","2":"1","3":"Obs","4":"1","5":"64","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1130","16":"1","_rn_":"26"},{"1":"14","2":"1","3":"Lev","4":"1","5":"68","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2910","16":"2","_rn_":"27"},{"1":"14","2":"1","3":"Lev","4":"1","5":"68","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2231","16":"1","_rn_":"28"},{"1":"15","2":"1","3":"Obs","4":"1","5":"46","6":"1","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2754","16":"2","_rn_":"29"},{"1":"15","2":"1","3":"Obs","4":"1","5":"46","6":"1","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2754","16":"1","_rn_":"30"},{"1":"16","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"3214","16":"2","_rn_":"31"},{"1":"16","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1323","16":"1","_rn_":"32"},{"1":"17","2":"1","3":"Lev","4":"1","5":"62","6":"1","7":"0","8":"1","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"406","16":"2","_rn_":"33"},{"1":"17","2":"1","3":"Lev","4":"1","5":"62","6":"1","7":"0","8":"1","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"258","16":"1","_rn_":"34"},{"1":"18","2":"1","3":"Lev","4":"1","5":"79","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"522","16":"2","_rn_":"35"},{"1":"18","2":"1","3":"Lev","4":"1","5":"79","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"389","16":"1","_rn_":"36"},{"1":"19","2":"1","3":"Lev+5FU","4":"0","5":"34","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"2","13":"0","14":"0","15":"887","16":"2","_rn_":"37"},{"1":"19","2":"1","3":"Lev+5FU","4":"0","5":"34","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"2","13":"0","14":"0","15":"604","16":"1","_rn_":"38"},{"1":"20","2":"1","3":"Lev","4":"0","5":"50","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3329","16":"2","_rn_":"39"},{"1":"20","2":"1","3":"Lev","4":"0","5":"50","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3329","16":"1","_rn_":"40"},{"1":"21","2":"1","3":"Obs","4":"1","5":"64","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2789","16":"2","_rn_":"41"},{"1":"21","2":"1","3":"Obs","4":"1","5":"64","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2789","16":"1","_rn_":"42"},{"1":"22","2":"1","3":"Lev","4":"1","5":"56","6":"1","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"739","16":"2","_rn_":"43"},{"1":"22","2":"1","3":"Lev","4":"1","5":"56","6":"1","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"527","16":"1","_rn_":"44"},{"1":"23","2":"1","3":"Lev","4":"0","5":"61","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"709","16":"2","_rn_":"45"},{"1":"23","2":"1","3":"Lev","4":"0","5":"61","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"348","16":"1","_rn_":"46"},{"1":"24","2":"1","3":"Lev+5FU","4":"0","5":"50","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2969","16":"2","_rn_":"47"},{"1":"24","2":"1","3":"Lev+5FU","4":"0","5":"50","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2969","16":"1","_rn_":"48"},{"1":"25","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2889","16":"2","_rn_":"49"},{"1":"25","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2889","16":"1","_rn_":"50"},{"1":"26","2":"1","3":"Obs","4":"1","5":"73","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1772","16":"2","_rn_":"51"},{"1":"26","2":"1","3":"Obs","4":"1","5":"73","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1759","16":"1","_rn_":"52"},{"1":"27","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"1","9":"13","10":"1","11":"2","12":"3","13":"0","14":"1","15":"384","16":"2","_rn_":"53"},{"1":"27","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"1","9":"13","10":"1","11":"2","12":"3","13":"0","14":"1","15":"121","16":"1","_rn_":"54"},{"1":"28","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"968","16":"2","_rn_":"55"},{"1":"28","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"290","16":"1","_rn_":"56"},{"1":"29","2":"1","3":"Obs","4":"0","5":"56","6":"1","7":"0","8":"0","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"218","16":"2","_rn_":"57"},{"1":"29","2":"1","3":"Obs","4":"0","5":"56","6":"1","7":"0","8":"0","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"157","16":"1","_rn_":"58"},{"1":"30","2":"1","3":"Lev","4":"1","5":"80","6":"0","7":"0","8":"0","9":"1","10":"1","11":"3","12":"3","13":"0","14":"0","15":"133","16":"2","_rn_":"59"},{"1":"30","2":"1","3":"Lev","4":"1","5":"80","6":"0","7":"0","8":"0","9":"1","10":"1","11":"3","12":"3","13":"0","14":"0","15":"62","16":"1","_rn_":"60"},{"1":"31","2":"1","3":"Lev+5FU","4":"0","5":"64","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"1","13":"0","14":"0","15":"3238","16":"2","_rn_":"61"},{"1":"31","2":"1","3":"Lev+5FU","4":"0","5":"64","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"1","13":"0","14":"0","15":"3238","16":"1","_rn_":"62"},{"1":"32","2":"1","3":"Lev+5FU","4":"0","5":"33","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3019","16":"2","_rn_":"63"},{"1":"32","2":"1","3":"Lev+5FU","4":"0","5":"33","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3019","16":"1","_rn_":"64"},{"1":"33","2":"1","3":"Obs","4":"0","5":"49","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1745","16":"2","_rn_":"65"},{"1":"33","2":"1","3":"Obs","4":"0","5":"49","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"461","16":"1","_rn_":"66"},{"1":"34","2":"1","3":"Obs","4":"1","5":"47","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2527","16":"2","_rn_":"67"},{"1":"34","2":"1","3":"Obs","4":"1","5":"47","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1749","16":"1","_rn_":"68"},{"1":"35","2":"1","3":"Lev+5FU","4":"0","5":"56","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1387","16":"2","_rn_":"69"},{"1":"35","2":"1","3":"Lev+5FU","4":"0","5":"56","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"593","16":"1","_rn_":"70"},{"1":"36","2":"1","3":"Lev+5FU","4":"0","5":"72","6":"0","7":"0","8":"1","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"3024","16":"2","_rn_":"71"},{"1":"36","2":"1","3":"Lev+5FU","4":"0","5":"72","6":"0","7":"0","8":"1","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"3024","16":"1","_rn_":"72"},{"1":"37","2":"1","3":"Obs","4":"1","5":"79","6":"0","7":"0","8":"0","9":"19","10":"1","11":"2","12":"3","13":"0","14":"1","15":"570","16":"2","_rn_":"73"},{"1":"37","2":"1","3":"Obs","4":"1","5":"79","6":"0","7":"0","8":"0","9":"19","10":"1","11":"2","12":"3","13":"0","14":"1","15":"43","16":"1","_rn_":"74"},{"1":"38","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2815","16":"2","_rn_":"75"},{"1":"38","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2815","16":"1","_rn_":"76"},{"1":"39","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2901","16":"2","_rn_":"77"},{"1":"39","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2901","16":"1","_rn_":"78"},{"1":"40","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"553","16":"2","_rn_":"79"},{"1":"40","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"348","16":"1","_rn_":"80"},{"1":"41","2":"1","3":"Lev+5FU","4":"1","5":"75","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"905","16":"2","_rn_":"81"},{"1":"41","2":"1","3":"Lev+5FU","4":"1","5":"75","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"510","16":"1","_rn_":"82"},{"1":"42","2":"1","3":"Obs","4":"0","5":"39","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"1","14":"0","15":"3030","16":"2","_rn_":"83"},{"1":"42","2":"1","3":"Obs","4":"0","5":"39","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"1","14":"0","15":"3030","16":"1","_rn_":"84"},{"1":"43","2":"1","3":"Obs","4":"1","5":"71","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"2","13":"1","14":"0","15":"685","16":"2","_rn_":"85"},{"1":"43","2":"1","3":"Obs","4":"1","5":"71","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"2","13":"1","14":"0","15":"489","16":"1","_rn_":"86"},{"1":"44","2":"1","3":"Lev","4":"0","5":"58","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2740","16":"2","_rn_":"87"},{"1":"44","2":"1","3":"Lev","4":"0","5":"58","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2740","16":"1","_rn_":"88"},{"1":"45","2":"1","3":"Lev+5FU","4":"1","5":"40","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2899","16":"2","_rn_":"89"},{"1":"45","2":"1","3":"Lev+5FU","4":"1","5":"40","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2899","16":"1","_rn_":"90"},{"1":"46","2":"1","3":"Obs","4":"0","5":"63","6":"0","7":"1","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2598","16":"2","_rn_":"91"},{"1":"46","2":"1","3":"Obs","4":"0","5":"63","6":"0","7":"1","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2598","16":"1","_rn_":"92"},{"1":"47","2":"1","3":"Lev+5FU","4":"0","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"1","13":"0","14":"0","15":"2840","16":"2","_rn_":"93"},{"1":"47","2":"1","3":"Lev+5FU","4":"0","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"1","13":"0","14":"0","15":"2840","16":"1","_rn_":"94"},{"1":"48","2":"1","3":"Lev","4":"0","5":"59","6":"1","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2802","16":"2","_rn_":"95"},{"1":"48","2":"1","3":"Lev","4":"0","5":"59","6":"1","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2802","16":"1","_rn_":"96"},{"1":"49","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2781","16":"2","_rn_":"97"},{"1":"49","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2781","16":"1","_rn_":"98"},{"1":"50","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"833","16":"2","_rn_":"99"},{"1":"50","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"136","16":"1","_rn_":"100"},{"1":"51","2":"1","3":"Obs","4":"0","5":"68","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1290","16":"2","_rn_":"101"},{"1":"51","2":"1","3":"Obs","4":"0","5":"68","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"632","16":"1","_rn_":"102"},{"1":"52","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1620","16":"2","_rn_":"103"},{"1":"52","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1233","16":"1","_rn_":"104"},{"1":"53","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2765","16":"2","_rn_":"105"},{"1":"53","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2765","16":"1","_rn_":"106"},{"1":"54","2":"1","3":"Lev","4":"0","5":"45","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2708","16":"2","_rn_":"107"},{"1":"54","2":"1","3":"Lev","4":"0","5":"45","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2708","16":"1","_rn_":"108"},{"1":"55","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2737","16":"2","_rn_":"109"},{"1":"55","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2737","16":"1","_rn_":"110"},{"1":"56","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"1178","16":"2","_rn_":"111"},{"1":"56","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"352","16":"1","_rn_":"112"},{"1":"57","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2765","16":"2","_rn_":"113"},{"1":"57","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"250","16":"1","_rn_":"114"},{"1":"58","2":"1","3":"Lev+5FU","4":"0","5":"63","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2883","16":"2","_rn_":"115"},{"1":"58","2":"1","3":"Lev+5FU","4":"0","5":"63","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2883","16":"1","_rn_":"116"},{"1":"59","2":"1","3":"Obs","4":"0","5":"65","6":"0","7":"0","8":"0","9":"6","10":"0","11":"3","12":"3","13":"1","14":"1","15":"2679","16":"2","_rn_":"117"},{"1":"59","2":"1","3":"Obs","4":"0","5":"65","6":"0","7":"0","8":"0","9":"6","10":"0","11":"3","12":"3","13":"1","14":"1","15":"2679","16":"1","_rn_":"118"},{"1":"60","2":"1","3":"Obs","4":"0","5":"57","6":"1","7":"0","8":"0","9":"4","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2925","16":"2","_rn_":"119"},{"1":"60","2":"1","3":"Obs","4":"0","5":"57","6":"1","7":"0","8":"0","9":"4","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2925","16":"1","_rn_":"120"},{"1":"61","2":"1","3":"Lev","4":"1","5":"80","6":"0","7":"1","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"472","16":"2","_rn_":"121"},{"1":"61","2":"1","3":"Lev","4":"1","5":"80","6":"0","7":"1","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"176","16":"1","_rn_":"122"},{"1":"62","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"2","13":"1","14":"0","15":"2772","16":"2","_rn_":"123"},{"1":"62","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"2","13":"1","14":"0","15":"2772","16":"1","_rn_":"124"},{"1":"63","2":"1","3":"Obs","4":"0","5":"53","6":"0","7":"0","8":"0","9":"15","10":"1","11":"3","12":"3","13":"0","14":"1","15":"474","16":"2","_rn_":"125"},{"1":"63","2":"1","3":"Obs","4":"0","5":"53","6":"0","7":"0","8":"0","9":"15","10":"1","11":"3","12":"3","13":"0","14":"1","15":"173","16":"1","_rn_":"126"},{"1":"64","2":"1","3":"Lev","4":"0","5":"53","6":"1","7":"0","8":"0","9":"1","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2739","16":"2","_rn_":"127"},{"1":"64","2":"1","3":"Lev","4":"0","5":"53","6":"1","7":"0","8":"0","9":"1","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2739","16":"1","_rn_":"128"},{"1":"65","2":"1","3":"Obs","4":"0","5":"71","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"365","16":"2","_rn_":"129"},{"1":"65","2":"1","3":"Obs","4":"0","5":"71","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"72","16":"1","_rn_":"130"},{"1":"66","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2653","16":"2","_rn_":"131"},{"1":"66","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2653","16":"1","_rn_":"132"},{"1":"67","2":"1","3":"Lev+5FU","4":"1","5":"49","6":"0","7":"0","8":"0","9":"6","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2726","16":"2","_rn_":"133"},{"1":"67","2":"1","3":"Lev+5FU","4":"1","5":"49","6":"0","7":"0","8":"0","9":"6","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2726","16":"1","_rn_":"134"},{"1":"68","2":"1","3":"Obs","4":"1","5":"60","6":"0","7":"0","8":"0","9":"10","10":"1","11":"2","12":"3","13":"0","14":"1","15":"774","16":"2","_rn_":"135"},{"1":"68","2":"1","3":"Obs","4":"1","5":"60","6":"0","7":"0","8":"0","9":"10","10":"1","11":"2","12":"3","13":"0","14":"1","15":"435","16":"1","_rn_":"136"},{"1":"69","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"1","13":"0","14":"0","15":"3078","16":"2","_rn_":"137"},{"1":"69","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"1","13":"0","14":"0","15":"3078","16":"1","_rn_":"138"},{"1":"70","2":"1","3":"Obs","4":"0","5":"40","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2133","16":"2","_rn_":"139"},{"1":"70","2":"1","3":"Obs","4":"0","5":"40","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1236","16":"1","_rn_":"140"},{"1":"71","2":"1","3":"Lev+5FU","4":"0","5":"55","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2127","16":"2","_rn_":"141"},{"1":"71","2":"1","3":"Lev+5FU","4":"0","5":"55","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1786","16":"1","_rn_":"142"},{"1":"72","2":"1","3":"Lev+5FU","4":"0","5":"56","6":"0","7":"0","8":"0","9":"15","10":"1","11":"2","12":"3","13":"0","14":"1","15":"400","16":"2","_rn_":"143"},{"1":"72","2":"1","3":"Lev+5FU","4":"0","5":"56","6":"0","7":"0","8":"0","9":"15","10":"1","11":"2","12":"3","13":"0","14":"1","15":"322","16":"1","_rn_":"144"},{"1":"73","2":"1","3":"Lev+5FU","4":"1","5":"54","6":"0","7":"0","8":"0","9":"9","10":"0","11":"2","12":"3","13":"0","14":"1","15":"3185","16":"2","_rn_":"145"},{"1":"73","2":"1","3":"Lev+5FU","4":"1","5":"54","6":"0","7":"0","8":"0","9":"9","10":"0","11":"2","12":"3","13":"0","14":"1","15":"3185","16":"1","_rn_":"146"},{"1":"74","2":"1","3":"Obs","4":"0","5":"49","6":"1","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"1237","16":"2","_rn_":"147"},{"1":"74","2":"1","3":"Obs","4":"0","5":"49","6":"1","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"581","16":"1","_rn_":"148"},{"1":"75","2":"1","3":"Lev","4":"0","5":"71","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1219","16":"2","_rn_":"149"},{"1":"75","2":"1","3":"Lev","4":"0","5":"71","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"891","16":"1","_rn_":"150"},{"1":"76","2":"1","3":"Obs","4":"0","5":"67","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3017","16":"2","_rn_":"151"},{"1":"76","2":"1","3":"Obs","4":"0","5":"67","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"3017","16":"1","_rn_":"152"},{"1":"77","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"806","16":"2","_rn_":"153"},{"1":"77","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"505","16":"1","_rn_":"154"},{"1":"78","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2985","16":"2","_rn_":"155"},{"1":"78","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2985","16":"1","_rn_":"156"},{"1":"79","2":"1","3":"Lev","4":"1","5":"50","6":"1","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2969","16":"2","_rn_":"157"},{"1":"79","2":"1","3":"Lev","4":"1","5":"50","6":"1","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1895","16":"1","_rn_":"158"},{"1":"80","2":"1","3":"Lev+5FU","4":"0","5":"45","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"2","13":"0","14":"1","15":"1995","16":"2","_rn_":"159"},{"1":"80","2":"1","3":"Lev+5FU","4":"0","5":"45","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"2","13":"0","14":"1","15":"1488","16":"1","_rn_":"160"},{"1":"81","2":"1","3":"Lev","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2958","16":"2","_rn_":"161"},{"1":"81","2":"1","3":"Lev","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2958","16":"1","_rn_":"162"},{"1":"82","2":"1","3":"Obs","4":"0","5":"46","6":"0","7":"0","8":"0","9":"1","10":"1","11":"3","12":"3","13":"0","14":"0","15":"1133","16":"2","_rn_":"163"},{"1":"82","2":"1","3":"Obs","4":"0","5":"46","6":"0","7":"0","8":"0","9":"1","10":"1","11":"3","12":"3","13":"0","14":"0","15":"702","16":"1","_rn_":"164"},{"1":"83","2":"1","3":"Lev","4":"1","5":"70","6":"0","7":"0","8":"0","9":"3","10":"1","11":"NA","12":"2","13":"0","14":"0","15":"1548","16":"2","_rn_":"165"},{"1":"83","2":"1","3":"Lev","4":"1","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"NA","12":"2","13":"0","14":"0","15":"1548","16":"1","_rn_":"166"},{"1":"84","2":"1","3":"Lev","4":"1","5":"63","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"3085","16":"2","_rn_":"167"},{"1":"84","2":"1","3":"Lev","4":"1","5":"63","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"3085","16":"1","_rn_":"168"},{"1":"85","2":"1","3":"Lev+5FU","4":"1","5":"45","6":"0","7":"0","8":"0","9":"8","10":"1","11":"3","12":"3","13":"0","14":"1","15":"736","16":"2","_rn_":"169"},{"1":"85","2":"1","3":"Lev+5FU","4":"1","5":"45","6":"0","7":"0","8":"0","9":"8","10":"1","11":"3","12":"3","13":"0","14":"1","15":"256","16":"1","_rn_":"170"},{"1":"86","2":"1","3":"Lev","4":"0","5":"49","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2789","16":"2","_rn_":"171"},{"1":"86","2":"1","3":"Lev","4":"0","5":"49","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2789","16":"1","_rn_":"172"},{"1":"87","2":"1","3":"Lev","4":"0","5":"62","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"3325","16":"2","_rn_":"173"},{"1":"87","2":"1","3":"Lev","4":"0","5":"62","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"3325","16":"1","_rn_":"174"},{"1":"88","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"381","16":"2","_rn_":"175"},{"1":"88","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"127","16":"1","_rn_":"176"},{"1":"89","2":"1","3":"Lev+5FU","4":"0","5":"80","6":"0","7":"0","8":"0","9":"4","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2724","16":"2","_rn_":"177"},{"1":"89","2":"1","3":"Lev+5FU","4":"0","5":"80","6":"0","7":"0","8":"0","9":"4","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2724","16":"1","_rn_":"178"},{"1":"90","2":"1","3":"Lev","4":"1","5":"73","6":"1","7":"0","8":"0","9":"4","10":"1","11":"NA","12":"3","13":"0","14":"0","15":"997","16":"2","_rn_":"179"},{"1":"90","2":"1","3":"Lev","4":"1","5":"73","6":"1","7":"0","8":"0","9":"4","10":"1","11":"NA","12":"3","13":"0","14":"0","15":"797","16":"1","_rn_":"180"},{"1":"91","2":"1","3":"Obs","4":"1","5":"46","6":"0","7":"0","8":"0","9":"11","10":"1","11":"2","12":"3","13":"0","14":"1","15":"413","16":"2","_rn_":"181"},{"1":"91","2":"1","3":"Obs","4":"1","5":"46","6":"0","7":"0","8":"0","9":"11","10":"1","11":"2","12":"3","13":"0","14":"1","15":"304","16":"1","_rn_":"182"},{"1":"92","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"708","16":"2","_rn_":"183"},{"1":"92","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"498","16":"1","_rn_":"184"},{"1":"93","2":"1","3":"Lev","4":"1","5":"45","6":"0","7":"0","8":"0","9":"9","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2765","16":"2","_rn_":"185"},{"1":"93","2":"1","3":"Lev","4":"1","5":"45","6":"0","7":"0","8":"0","9":"9","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2765","16":"1","_rn_":"186"},{"1":"94","2":"1","3":"Lev+5FU","4":"0","5":"26","6":"0","7":"0","8":"1","9":"NA","10":"0","11":"2","12":"4","13":"1","14":"1","15":"2869","16":"2","_rn_":"187"},{"1":"94","2":"1","3":"Lev+5FU","4":"0","5":"26","6":"0","7":"0","8":"1","9":"NA","10":"0","11":"2","12":"4","13":"1","14":"1","15":"2869","16":"1","_rn_":"188"},{"1":"95","2":"1","3":"Lev+5FU","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2918","16":"2","_rn_":"189"},{"1":"95","2":"1","3":"Lev+5FU","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2918","16":"1","_rn_":"190"},{"1":"96","2":"1","3":"Lev","4":"1","5":"67","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"4","13":"1","14":"0","15":"2458","16":"2","_rn_":"191"},{"1":"96","2":"1","3":"Lev","4":"1","5":"67","6":"0","7":"0","8":"1","9":"2","10":"0","11":"2","12":"4","13":"1","14":"0","15":"2458","16":"1","_rn_":"192"},{"1":"97","2":"1","3":"Obs","4":"0","5":"65","6":"0","7":"0","8":"0","9":"20","10":"1","11":"2","12":"4","13":"0","14":"1","15":"459","16":"2","_rn_":"193"},{"1":"97","2":"1","3":"Obs","4":"0","5":"65","6":"0","7":"0","8":"0","9":"20","10":"1","11":"2","12":"4","13":"0","14":"1","15":"185","16":"1","_rn_":"194"},{"1":"98","2":"1","3":"Lev+5FU","4":"1","5":"74","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2318","16":"2","_rn_":"195"},{"1":"98","2":"1","3":"Lev+5FU","4":"1","5":"74","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2318","16":"1","_rn_":"196"},{"1":"99","2":"1","3":"Lev","4":"1","5":"71","6":"0","7":"0","8":"1","9":"NA","10":"1","11":"2","12":"4","13":"0","14":"1","15":"569","16":"2","_rn_":"197"},{"1":"99","2":"1","3":"Lev","4":"1","5":"71","6":"0","7":"0","8":"1","9":"NA","10":"1","11":"2","12":"4","13":"0","14":"1","15":"219","16":"1","_rn_":"198"},{"1":"100","2":"1","3":"Obs","4":"0","5":"58","6":"0","7":"0","8":"1","9":"8","10":"1","11":"2","12":"2","13":"0","14":"1","15":"2077","16":"2","_rn_":"199"},{"1":"100","2":"1","3":"Obs","4":"0","5":"58","6":"0","7":"0","8":"1","9":"8","10":"1","11":"2","12":"2","13":"0","14":"1","15":"1446","16":"1","_rn_":"200"},{"1":"101","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1216","16":"2","_rn_":"201"},{"1":"101","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"349","16":"1","_rn_":"202"},{"1":"102","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"171","16":"2","_rn_":"203"},{"1":"102","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"147","16":"1","_rn_":"204"},{"1":"103","2":"1","3":"Lev+5FU","4":"1","5":"49","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"712","16":"2","_rn_":"205"},{"1":"103","2":"1","3":"Lev+5FU","4":"1","5":"49","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"448","16":"1","_rn_":"206"},{"1":"104","2":"1","3":"Lev+5FU","4":"0","5":"50","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"614","16":"2","_rn_":"207"},{"1":"104","2":"1","3":"Lev+5FU","4":"0","5":"50","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"260","16":"1","_rn_":"208"},{"1":"105","2":"1","3":"Obs","4":"0","5":"75","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2849","16":"2","_rn_":"209"},{"1":"105","2":"1","3":"Obs","4":"0","5":"75","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1057","16":"1","_rn_":"210"},{"1":"106","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"0","14":"0","15":"1530","16":"2","_rn_":"211"},{"1":"106","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"0","14":"0","15":"835","16":"1","_rn_":"212"},{"1":"107","2":"1","3":"Lev","4":"0","5":"60","6":"0","7":"0","8":"1","9":"10","10":"1","11":"2","12":"3","13":"1","14":"1","15":"402","16":"2","_rn_":"213"},{"1":"107","2":"1","3":"Lev","4":"0","5":"60","6":"0","7":"0","8":"1","9":"10","10":"1","11":"2","12":"3","13":"1","14":"1","15":"204","16":"1","_rn_":"214"},{"1":"108","2":"1","3":"Lev+5FU","4":"0","5":"65","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1511","16":"2","_rn_":"215"},{"1":"108","2":"1","3":"Lev+5FU","4":"0","5":"65","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"853","16":"1","_rn_":"216"},{"1":"109","2":"1","3":"Lev","4":"0","5":"74","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2828","16":"2","_rn_":"217"},{"1":"109","2":"1","3":"Lev","4":"0","5":"74","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2828","16":"1","_rn_":"218"},{"1":"110","2":"1","3":"Lev+5FU","4":"0","5":"52","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"1","14":"0","15":"23","16":"2","_rn_":"219"},{"1":"110","2":"1","3":"Lev+5FU","4":"0","5":"52","6":"0","7":"0","8":"0","9":"3","10":"0","11":"3","12":"3","13":"1","14":"0","15":"23","16":"1","_rn_":"220"},{"1":"111","2":"1","3":"Lev+5FU","4":"1","5":"64","6":"0","7":"0","8":"1","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2941","16":"2","_rn_":"221"},{"1":"111","2":"1","3":"Lev+5FU","4":"1","5":"64","6":"0","7":"0","8":"1","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2941","16":"1","_rn_":"222"},{"1":"112","2":"1","3":"Lev","4":"1","5":"47","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"755","16":"2","_rn_":"223"},{"1":"112","2":"1","3":"Lev","4":"1","5":"47","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"548","16":"1","_rn_":"224"},{"1":"113","2":"1","3":"Obs","4":"0","5":"45","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2815","16":"2","_rn_":"225"},{"1":"113","2":"1","3":"Obs","4":"0","5":"45","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2815","16":"1","_rn_":"226"},{"1":"114","2":"1","3":"Obs","4":"1","5":"61","6":"1","7":"0","8":"1","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"761","16":"2","_rn_":"227"},{"1":"114","2":"1","3":"Obs","4":"1","5":"61","6":"1","7":"0","8":"1","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"185","16":"1","_rn_":"228"},{"1":"115","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"1839","16":"2","_rn_":"229"},{"1":"115","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"638","16":"1","_rn_":"230"},{"1":"116","2":"1","3":"Obs","4":"1","5":"60","6":"1","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"2351","16":"2","_rn_":"231"},{"1":"116","2":"1","3":"Obs","4":"1","5":"60","6":"1","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"912","16":"1","_rn_":"232"},{"1":"117","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2760","16":"2","_rn_":"233"},{"1":"117","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2760","16":"1","_rn_":"234"},{"1":"118","2":"1","3":"Lev","4":"0","5":"51","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2951","16":"2","_rn_":"235"},{"1":"118","2":"1","3":"Lev","4":"0","5":"51","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2951","16":"1","_rn_":"236"},{"1":"119","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2820","16":"2","_rn_":"237"},{"1":"119","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2820","16":"1","_rn_":"238"},{"1":"120","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1327","16":"2","_rn_":"239"},{"1":"120","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"593","16":"1","_rn_":"240"},{"1":"121","2":"1","3":"Lev+5FU","4":"0","5":"52","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2678","16":"2","_rn_":"241"},{"1":"121","2":"1","3":"Lev+5FU","4":"0","5":"52","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2678","16":"1","_rn_":"242"},{"1":"122","2":"1","3":"Lev","4":"0","5":"65","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"226","16":"2","_rn_":"243"},{"1":"122","2":"1","3":"Lev","4":"0","5":"65","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"176","16":"1","_rn_":"244"},{"1":"123","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2913","16":"2","_rn_":"245"},{"1":"123","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2913","16":"1","_rn_":"246"},{"1":"124","2":"1","3":"Obs","4":"1","5":"55","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2862","16":"2","_rn_":"247"},{"1":"124","2":"1","3":"Obs","4":"1","5":"55","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2862","16":"1","_rn_":"248"},{"1":"125","2":"1","3":"Lev+5FU","4":"1","5":"71","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"454","16":"2","_rn_":"249"},{"1":"125","2":"1","3":"Lev+5FU","4":"1","5":"71","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"454","16":"1","_rn_":"250"},{"1":"126","2":"1","3":"Obs","4":"1","5":"30","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2743","16":"2","_rn_":"251"},{"1":"126","2":"1","3":"Obs","4":"1","5":"30","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2743","16":"1","_rn_":"252"},{"1":"127","2":"1","3":"Obs","4":"0","5":"40","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1679","16":"2","_rn_":"253"},{"1":"127","2":"1","3":"Obs","4":"0","5":"40","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1020","16":"1","_rn_":"254"},{"1":"128","2":"1","3":"Obs","4":"1","5":"31","6":"1","7":"0","8":"0","9":"11","10":"1","11":"3","12":"3","13":"0","14":"1","15":"924","16":"2","_rn_":"255"},{"1":"128","2":"1","3":"Obs","4":"1","5":"31","6":"1","7":"0","8":"0","9":"11","10":"1","11":"3","12":"3","13":"0","14":"1","15":"245","16":"1","_rn_":"256"},{"1":"129","2":"1","3":"Obs","4":"1","5":"53","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"2","13":"0","14":"0","15":"721","16":"2","_rn_":"257"},{"1":"129","2":"1","3":"Obs","4":"1","5":"53","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"2","13":"0","14":"0","15":"543","16":"1","_rn_":"258"},{"1":"130","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"709","16":"2","_rn_":"259"},{"1":"130","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"263","16":"1","_rn_":"260"},{"1":"131","2":"1","3":"Lev+5FU","4":"0","5":"58","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"961","16":"2","_rn_":"261"},{"1":"131","2":"1","3":"Lev+5FU","4":"0","5":"58","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"711","16":"1","_rn_":"262"},{"1":"132","2":"1","3":"Lev+5FU","4":"0","5":"79","6":"1","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"326","16":"2","_rn_":"263"},{"1":"132","2":"1","3":"Lev+5FU","4":"0","5":"79","6":"1","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"326","16":"1","_rn_":"264"},{"1":"133","2":"1","3":"Lev","4":"0","5":"55","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"2","13":"1","14":"0","15":"2703","16":"2","_rn_":"265"},{"1":"133","2":"1","3":"Lev","4":"0","5":"55","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"2","13":"1","14":"0","15":"2703","16":"1","_rn_":"266"},{"1":"134","2":"1","3":"Obs","4":"0","5":"63","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"289","16":"2","_rn_":"267"},{"1":"134","2":"1","3":"Obs","4":"0","5":"63","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"86","16":"1","_rn_":"268"},{"1":"135","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2905","16":"2","_rn_":"269"},{"1":"135","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2905","16":"1","_rn_":"270"},{"1":"136","2":"1","3":"Lev","4":"1","5":"42","6":"1","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"206","16":"2","_rn_":"271"},{"1":"136","2":"1","3":"Lev","4":"1","5":"42","6":"1","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"80","16":"1","_rn_":"272"},{"1":"137","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2618","16":"2","_rn_":"273"},{"1":"137","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2618","16":"1","_rn_":"274"},{"1":"138","2":"1","3":"Lev","4":"0","5":"64","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"283","16":"2","_rn_":"275"},{"1":"138","2":"1","3":"Lev","4":"0","5":"64","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"98","16":"1","_rn_":"276"},{"1":"139","2":"1","3":"Lev","4":"1","5":"55","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2718","16":"2","_rn_":"277"},{"1":"139","2":"1","3":"Lev","4":"1","5":"55","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2018","16":"1","_rn_":"278"},{"1":"140","2":"1","3":"Obs","4":"0","5":"25","6":"1","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2826","16":"2","_rn_":"279"},{"1":"140","2":"1","3":"Obs","4":"0","5":"25","6":"1","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"101","16":"1","_rn_":"280"},{"1":"141","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2916","16":"2","_rn_":"281"},{"1":"141","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2916","16":"1","_rn_":"282"},{"1":"142","2":"1","3":"Lev","4":"1","5":"28","6":"0","7":"0","8":"0","9":"9","10":"1","11":"3","12":"3","13":"0","14":"1","15":"499","16":"2","_rn_":"283"},{"1":"142","2":"1","3":"Lev","4":"1","5":"28","6":"0","7":"0","8":"0","9":"9","10":"1","11":"3","12":"3","13":"0","14":"1","15":"246","16":"1","_rn_":"284"},{"1":"143","2":"1","3":"Lev+5FU","4":"0","5":"49","6":"0","7":"0","8":"0","9":"NA","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2950","16":"2","_rn_":"285"},{"1":"143","2":"1","3":"Lev+5FU","4":"0","5":"49","6":"0","7":"0","8":"0","9":"NA","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2950","16":"1","_rn_":"286"},{"1":"144","2":"1","3":"Obs","4":"0","5":"52","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2899","16":"2","_rn_":"287"},{"1":"144","2":"1","3":"Obs","4":"0","5":"52","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2899","16":"1","_rn_":"288"},{"1":"145","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"1","14":"1","15":"673","16":"2","_rn_":"289"},{"1":"145","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"1","14":"1","15":"98","16":"1","_rn_":"290"},{"1":"146","2":"1","3":"Obs","4":"0","5":"33","6":"1","7":"0","8":"1","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"3000","16":"2","_rn_":"291"},{"1":"146","2":"1","3":"Obs","4":"0","5":"33","6":"1","7":"0","8":"1","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"3000","16":"1","_rn_":"292"},{"1":"147","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2284","16":"2","_rn_":"293"},{"1":"147","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1475","16":"1","_rn_":"294"},{"1":"148","2":"1","3":"Lev","4":"1","5":"38","6":"0","7":"0","8":"0","9":"2","10":"1","11":"1","12":"3","13":"0","14":"0","15":"362","16":"2","_rn_":"295"},{"1":"148","2":"1","3":"Lev","4":"1","5":"38","6":"0","7":"0","8":"0","9":"2","10":"1","11":"1","12":"3","13":"0","14":"0","15":"191","16":"1","_rn_":"296"},{"1":"149","2":"1","3":"Lev","4":"0","5":"53","6":"1","7":"1","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2152","16":"2","_rn_":"297"},{"1":"149","2":"1","3":"Lev","4":"0","5":"53","6":"1","7":"1","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"335","16":"1","_rn_":"298"},{"1":"150","2":"1","3":"Obs","4":"0","5":"72","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2562","16":"2","_rn_":"299"},{"1":"150","2":"1","3":"Obs","4":"0","5":"72","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2562","16":"1","_rn_":"300"},{"1":"151","2":"1","3":"Lev","4":"1","5":"46","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2730","16":"2","_rn_":"301"},{"1":"151","2":"1","3":"Lev","4":"1","5":"46","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2730","16":"1","_rn_":"302"},{"1":"152","2":"1","3":"Lev+5FU","4":"0","5":"69","6":"0","7":"0","8":"0","9":"13","10":"1","11":"2","12":"3","13":"0","14":"1","15":"802","16":"2","_rn_":"303"},{"1":"152","2":"1","3":"Lev+5FU","4":"0","5":"69","6":"0","7":"0","8":"0","9":"13","10":"1","11":"2","12":"3","13":"0","14":"1","15":"443","16":"1","_rn_":"304"},{"1":"153","2":"1","3":"Obs","4":"1","5":"43","6":"1","7":"0","8":"0","9":"0","10":"1","11":"3","12":"3","13":"1","14":"0","15":"1166","16":"2","_rn_":"305"},{"1":"153","2":"1","3":"Obs","4":"1","5":"43","6":"1","7":"0","8":"0","9":"0","10":"1","11":"3","12":"3","13":"1","14":"0","15":"772","16":"1","_rn_":"306"},{"1":"154","2":"1","3":"Lev+5FU","4":"1","5":"72","6":"1","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1193","16":"2","_rn_":"307"},{"1":"154","2":"1","3":"Lev+5FU","4":"1","5":"72","6":"1","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"918","16":"1","_rn_":"308"},{"1":"155","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"45","16":"2","_rn_":"309"},{"1":"155","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"45","16":"1","_rn_":"310"},{"1":"156","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2577","16":"2","_rn_":"311"},{"1":"156","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2577","16":"1","_rn_":"312"},{"1":"157","2":"1","3":"Obs","4":"0","5":"52","6":"0","7":"1","8":"0","9":"6","10":"1","11":"1","12":"3","13":"0","14":"1","15":"1136","16":"2","_rn_":"313"},{"1":"157","2":"1","3":"Obs","4":"0","5":"52","6":"0","7":"1","8":"0","9":"6","10":"1","11":"1","12":"3","13":"0","14":"1","15":"547","16":"1","_rn_":"314"},{"1":"158","2":"1","3":"Lev","4":"0","5":"73","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2497","16":"2","_rn_":"315"},{"1":"158","2":"1","3":"Lev","4":"0","5":"73","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1211","16":"1","_rn_":"316"},{"1":"159","2":"1","3":"Lev+5FU","4":"1","5":"66","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2648","16":"2","_rn_":"317"},{"1":"159","2":"1","3":"Lev+5FU","4":"1","5":"66","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2648","16":"1","_rn_":"318"},{"1":"160","2":"1","3":"Obs","4":"0","5":"75","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2458","16":"2","_rn_":"319"},{"1":"160","2":"1","3":"Obs","4":"0","5":"75","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2458","16":"1","_rn_":"320"},{"1":"161","2":"1","3":"Lev","4":"1","5":"43","6":"1","7":"0","8":"0","9":"6","10":"1","11":"NA","12":"3","13":"0","14":"1","15":"1135","16":"2","_rn_":"321"},{"1":"161","2":"1","3":"Lev","4":"1","5":"43","6":"1","7":"0","8":"0","9":"6","10":"1","11":"NA","12":"3","13":"0","14":"1","15":"653","16":"1","_rn_":"322"},{"1":"162","2":"1","3":"Lev+5FU","4":"0","5":"57","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"580","16":"2","_rn_":"323"},{"1":"162","2":"1","3":"Lev+5FU","4":"0","5":"57","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"485","16":"1","_rn_":"324"},{"1":"163","2":"1","3":"Obs","4":"1","5":"74","6":"1","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"485","16":"2","_rn_":"325"},{"1":"163","2":"1","3":"Obs","4":"1","5":"74","6":"1","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"1","14":"1","15":"485","16":"1","_rn_":"326"},{"1":"164","2":"1","3":"Lev","4":"0","5":"67","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2656","16":"2","_rn_":"327"},{"1":"164","2":"1","3":"Lev","4":"0","5":"67","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2656","16":"1","_rn_":"328"},{"1":"165","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"806","16":"2","_rn_":"329"},{"1":"165","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"526","16":"1","_rn_":"330"},{"1":"166","2":"1","3":"Obs","4":"1","5":"57","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2435","16":"2","_rn_":"331"},{"1":"166","2":"1","3":"Obs","4":"1","5":"57","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2435","16":"1","_rn_":"332"},{"1":"167","2":"1","3":"Lev+5FU","4":"0","5":"81","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1439","16":"2","_rn_":"333"},{"1":"167","2":"1","3":"Lev+5FU","4":"0","5":"81","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"392","16":"1","_rn_":"334"},{"1":"168","2":"1","3":"Obs","4":"1","5":"50","6":"0","7":"0","8":"0","9":"4","10":"1","11":"3","12":"3","13":"1","14":"0","15":"717","16":"2","_rn_":"335"},{"1":"168","2":"1","3":"Obs","4":"1","5":"50","6":"0","7":"0","8":"0","9":"4","10":"1","11":"3","12":"3","13":"1","14":"0","15":"173","16":"1","_rn_":"336"},{"1":"169","2":"1","3":"Lev","4":"1","5":"62","6":"1","7":"1","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2568","16":"2","_rn_":"337"},{"1":"169","2":"1","3":"Lev","4":"1","5":"62","6":"1","7":"1","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2568","16":"1","_rn_":"338"},{"1":"170","2":"1","3":"Lev+5FU","4":"0","5":"48","6":"0","7":"0","8":"0","9":"4","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2631","16":"2","_rn_":"339"},{"1":"170","2":"1","3":"Lev+5FU","4":"0","5":"48","6":"0","7":"0","8":"0","9":"4","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2631","16":"1","_rn_":"340"},{"1":"171","2":"1","3":"Lev+5FU","4":"1","5":"45","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"1474","16":"2","_rn_":"341"},{"1":"171","2":"1","3":"Lev+5FU","4":"1","5":"45","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"1474","16":"1","_rn_":"342"},{"1":"172","2":"1","3":"Lev","4":"1","5":"46","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2593","16":"2","_rn_":"343"},{"1":"172","2":"1","3":"Lev","4":"1","5":"46","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"668","16":"1","_rn_":"344"},{"1":"173","2":"1","3":"Lev+5FU","4":"0","5":"72","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1550","16":"2","_rn_":"345"},{"1":"173","2":"1","3":"Lev+5FU","4":"0","5":"72","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"1550","16":"1","_rn_":"346"},{"1":"174","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"670","16":"2","_rn_":"347"},{"1":"174","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"165","16":"1","_rn_":"348"},{"1":"175","2":"1","3":"Lev","4":"1","5":"67","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"430","16":"2","_rn_":"349"},{"1":"175","2":"1","3":"Lev","4":"1","5":"67","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"121","16":"1","_rn_":"350"},{"1":"176","2":"1","3":"Lev+5FU","4":"0","5":"41","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2821","16":"2","_rn_":"351"},{"1":"176","2":"1","3":"Lev+5FU","4":"0","5":"41","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2821","16":"1","_rn_":"352"},{"1":"177","2":"1","3":"Lev+5FU","4":"1","5":"56","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2672","16":"2","_rn_":"353"},{"1":"177","2":"1","3":"Lev+5FU","4":"1","5":"56","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2672","16":"1","_rn_":"354"},{"1":"178","2":"1","3":"Lev+5FU","4":"1","5":"50","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2699","16":"2","_rn_":"355"},{"1":"178","2":"1","3":"Lev+5FU","4":"1","5":"50","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2699","16":"1","_rn_":"356"},{"1":"179","2":"1","3":"Lev+5FU","4":"0","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"2","13":"0","14":"0","15":"2927","16":"2","_rn_":"357"},{"1":"179","2":"1","3":"Lev+5FU","4":"0","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"2","13":"0","14":"0","15":"2927","16":"1","_rn_":"358"},{"1":"180","2":"1","3":"Lev+5FU","4":"1","5":"74","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"993","16":"2","_rn_":"359"},{"1":"180","2":"1","3":"Lev+5FU","4":"1","5":"74","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"622","16":"1","_rn_":"360"},{"1":"181","2":"1","3":"Obs","4":"0","5":"74","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2580","16":"2","_rn_":"361"},{"1":"181","2":"1","3":"Obs","4":"0","5":"74","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2580","16":"1","_rn_":"362"},{"1":"182","2":"1","3":"Obs","4":"0","5":"58","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2621","16":"2","_rn_":"363"},{"1":"182","2":"1","3":"Obs","4":"0","5":"58","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2621","16":"1","_rn_":"364"},{"1":"183","2":"1","3":"Lev","4":"0","5":"56","6":"0","7":"0","8":"0","9":"4","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2779","16":"2","_rn_":"365"},{"1":"183","2":"1","3":"Lev","4":"0","5":"56","6":"0","7":"0","8":"0","9":"4","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2779","16":"1","_rn_":"366"},{"1":"184","2":"1","3":"Obs","4":"0","5":"75","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2794","16":"2","_rn_":"367"},{"1":"184","2":"1","3":"Obs","4":"0","5":"75","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2794","16":"1","_rn_":"368"},{"1":"185","2":"1","3":"Lev+5FU","4":"1","5":"67","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2656","16":"2","_rn_":"369"},{"1":"185","2":"1","3":"Lev+5FU","4":"1","5":"67","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2656","16":"1","_rn_":"370"},{"1":"186","2":"1","3":"Lev","4":"0","5":"58","6":"0","7":"0","8":"0","9":"6","10":"0","11":"1","12":"3","13":"1","14":"1","15":"2513","16":"2","_rn_":"371"},{"1":"186","2":"1","3":"Lev","4":"0","5":"58","6":"0","7":"0","8":"0","9":"6","10":"0","11":"1","12":"3","13":"1","14":"1","15":"2513","16":"1","_rn_":"372"},{"1":"187","2":"1","3":"Lev+5FU","4":"0","5":"58","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2488","16":"2","_rn_":"373"},{"1":"187","2":"1","3":"Lev+5FU","4":"0","5":"58","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2488","16":"1","_rn_":"374"},{"1":"188","2":"1","3":"Lev","4":"1","5":"41","6":"0","7":"0","8":"0","9":"33","10":"1","11":"3","12":"3","13":"0","14":"1","15":"1112","16":"2","_rn_":"375"},{"1":"188","2":"1","3":"Lev","4":"1","5":"41","6":"0","7":"0","8":"0","9":"33","10":"1","11":"3","12":"3","13":"0","14":"1","15":"900","16":"1","_rn_":"376"},{"1":"189","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"NA","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2618","16":"2","_rn_":"377"},{"1":"189","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"NA","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2618","16":"1","_rn_":"378"},{"1":"190","2":"1","3":"Lev","4":"1","5":"48","6":"0","7":"0","8":"1","9":"2","10":"1","11":"NA","12":"3","13":"0","14":"0","15":"795","16":"2","_rn_":"379"},{"1":"190","2":"1","3":"Lev","4":"1","5":"48","6":"0","7":"0","8":"1","9":"2","10":"1","11":"NA","12":"3","13":"0","14":"0","15":"380","16":"1","_rn_":"380"},{"1":"191","2":"1","3":"Lev+5FU","4":"0","5":"69","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"363","16":"2","_rn_":"381"},{"1":"191","2":"1","3":"Lev+5FU","4":"0","5":"69","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"157","16":"1","_rn_":"382"},{"1":"192","2":"1","3":"Obs","4":"1","5":"57","6":"1","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"949","16":"2","_rn_":"383"},{"1":"192","2":"1","3":"Obs","4":"1","5":"57","6":"1","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"360","16":"1","_rn_":"384"},{"1":"193","2":"1","3":"Lev+5FU","4":"0","5":"45","6":"1","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"127","16":"2","_rn_":"385"},{"1":"193","2":"1","3":"Lev+5FU","4":"0","5":"45","6":"1","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"68","16":"1","_rn_":"386"},{"1":"194","2":"1","3":"Lev+5FU","4":"0","5":"76","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2871","16":"2","_rn_":"387"},{"1":"194","2":"1","3":"Lev+5FU","4":"0","5":"76","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2871","16":"1","_rn_":"388"},{"1":"195","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"1","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2558","16":"2","_rn_":"389"},{"1":"195","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"1","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2558","16":"1","_rn_":"390"},{"1":"196","2":"1","3":"Obs","4":"0","5":"66","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2083","16":"2","_rn_":"391"},{"1":"196","2":"1","3":"Obs","4":"0","5":"66","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1981","16":"1","_rn_":"392"},{"1":"197","2":"1","3":"Obs","4":"0","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"2","13":"0","14":"0","15":"2747","16":"2","_rn_":"393"},{"1":"197","2":"1","3":"Obs","4":"0","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"2","13":"0","14":"0","15":"2747","16":"1","_rn_":"394"},{"1":"198","2":"1","3":"Lev","4":"1","5":"69","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"1105","16":"2","_rn_":"395"},{"1":"198","2":"1","3":"Lev","4":"1","5":"69","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"931","16":"1","_rn_":"396"},{"1":"199","2":"1","3":"Lev+5FU","4":"0","5":"32","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"3","12":"3","13":"1","14":"1","15":"490","16":"2","_rn_":"397"},{"1":"199","2":"1","3":"Lev+5FU","4":"0","5":"32","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"3","12":"3","13":"1","14":"1","15":"183","16":"1","_rn_":"398"},{"1":"200","2":"1","3":"Obs","4":"0","5":"56","6":"0","7":"0","8":"0","9":"1","10":"0","11":"NA","12":"2","13":"1","14":"0","15":"2507","16":"2","_rn_":"399"},{"1":"200","2":"1","3":"Obs","4":"0","5":"56","6":"0","7":"0","8":"0","9":"1","10":"0","11":"NA","12":"2","13":"1","14":"0","15":"2507","16":"1","_rn_":"400"},{"1":"201","2":"1","3":"Lev","4":"1","5":"71","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"1","14":"0","15":"961","16":"2","_rn_":"401"},{"1":"201","2":"1","3":"Lev","4":"1","5":"71","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"1","14":"0","15":"356","16":"1","_rn_":"402"},{"1":"202","2":"1","3":"Lev","4":"1","5":"75","6":"0","7":"0","8":"0","9":"8","10":"1","11":"NA","12":"3","13":"1","14":"1","15":"1879","16":"2","_rn_":"403"},{"1":"202","2":"1","3":"Lev","4":"1","5":"75","6":"0","7":"0","8":"0","9":"8","10":"1","11":"NA","12":"3","13":"1","14":"1","15":"341","16":"1","_rn_":"404"},{"1":"203","2":"1","3":"Lev+5FU","4":"1","5":"58","6":"0","7":"0","8":"0","9":"7","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2592","16":"2","_rn_":"405"},{"1":"203","2":"1","3":"Lev+5FU","4":"1","5":"58","6":"0","7":"0","8":"0","9":"7","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2592","16":"1","_rn_":"406"},{"1":"204","2":"1","3":"Obs","4":"0","5":"40","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2552","16":"2","_rn_":"407"},{"1":"204","2":"1","3":"Obs","4":"0","5":"40","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"230","16":"1","_rn_":"408"},{"1":"205","2":"1","3":"Lev+5FU","4":"0","5":"39","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"1","13":"0","14":"0","15":"2474","16":"2","_rn_":"409"},{"1":"205","2":"1","3":"Lev+5FU","4":"0","5":"39","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"1","13":"0","14":"0","15":"2474","16":"1","_rn_":"410"},{"1":"206","2":"1","3":"Lev","4":"0","5":"42","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2349","16":"2","_rn_":"411"},{"1":"206","2":"1","3":"Lev","4":"0","5":"42","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2349","16":"1","_rn_":"412"},{"1":"207","2":"1","3":"Lev+5FU","4":"0","5":"53","6":"0","7":"0","8":"0","9":"4","10":"0","11":"1","12":"1","13":"0","14":"0","15":"2835","16":"2","_rn_":"413"},{"1":"207","2":"1","3":"Lev+5FU","4":"0","5":"53","6":"0","7":"0","8":"0","9":"4","10":"1","11":"1","12":"1","13":"0","14":"0","15":"1037","16":"1","_rn_":"414"},{"1":"208","2":"1","3":"Obs","4":"1","5":"43","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2761","16":"2","_rn_":"415"},{"1":"208","2":"1","3":"Obs","4":"1","5":"43","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2761","16":"1","_rn_":"416"},{"1":"209","2":"1","3":"Obs","4":"0","5":"51","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"411","16":"2","_rn_":"417"},{"1":"209","2":"1","3":"Obs","4":"0","5":"51","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"279","16":"1","_rn_":"418"},{"1":"210","2":"1","3":"Lev","4":"1","5":"77","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2720","16":"2","_rn_":"419"},{"1":"210","2":"1","3":"Lev","4":"1","5":"77","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2720","16":"1","_rn_":"420"},{"1":"211","2":"1","3":"Lev","4":"1","5":"67","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2495","16":"2","_rn_":"421"},{"1":"211","2":"1","3":"Lev","4":"1","5":"67","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2495","16":"1","_rn_":"422"},{"1":"212","2":"1","3":"Obs","4":"1","5":"41","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"462","16":"2","_rn_":"423"},{"1":"212","2":"1","3":"Obs","4":"1","5":"41","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"45","16":"1","_rn_":"424"},{"1":"213","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"1","7":"1","8":"1","9":"2","10":"0","11":"3","12":"4","13":"1","14":"0","15":"2497","16":"2","_rn_":"425"},{"1":"213","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"1","7":"1","8":"1","9":"2","10":"0","11":"3","12":"4","13":"1","14":"0","15":"2497","16":"1","_rn_":"426"},{"1":"214","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"1","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2343","16":"2","_rn_":"427"},{"1":"214","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"1","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2343","16":"1","_rn_":"428"},{"1":"215","2":"1","3":"Lev+5FU","4":"0","5":"63","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2630","16":"2","_rn_":"429"},{"1":"215","2":"1","3":"Lev+5FU","4":"0","5":"63","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2630","16":"1","_rn_":"430"},{"1":"216","2":"1","3":"Lev+5FU","4":"0","5":"58","6":"1","7":"0","8":"0","9":"8","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2461","16":"2","_rn_":"431"},{"1":"216","2":"1","3":"Lev+5FU","4":"0","5":"58","6":"1","7":"0","8":"0","9":"8","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2461","16":"1","_rn_":"432"},{"1":"217","2":"1","3":"Lev+5FU","4":"0","5":"67","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2747","16":"2","_rn_":"433"},{"1":"217","2":"1","3":"Lev+5FU","4":"0","5":"67","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2747","16":"1","_rn_":"434"},{"1":"218","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"1","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"2482","16":"2","_rn_":"435"},{"1":"218","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"1","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1876","16":"1","_rn_":"436"},{"1":"219","2":"1","3":"Lev","4":"1","5":"63","6":"1","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"580","16":"2","_rn_":"437"},{"1":"219","2":"1","3":"Lev","4":"1","5":"63","6":"1","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"230","16":"1","_rn_":"438"},{"1":"220","2":"1","3":"Lev","4":"1","5":"77","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1215","16":"2","_rn_":"439"},{"1":"220","2":"1","3":"Lev","4":"1","5":"77","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1013","16":"1","_rn_":"440"},{"1":"221","2":"1","3":"Lev","4":"1","5":"43","6":"1","7":"1","8":"1","9":"4","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2525","16":"2","_rn_":"441"},{"1":"221","2":"1","3":"Lev","4":"1","5":"43","6":"1","7":"1","8":"1","9":"4","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2525","16":"1","_rn_":"442"},{"1":"222","2":"1","3":"Lev+5FU","4":"0","5":"78","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2842","16":"2","_rn_":"443"},{"1":"222","2":"1","3":"Lev+5FU","4":"0","5":"78","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2842","16":"1","_rn_":"444"},{"1":"223","2":"1","3":"Obs","4":"0","5":"51","6":"0","7":"0","8":"1","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1272","16":"2","_rn_":"445"},{"1":"223","2":"1","3":"Obs","4":"0","5":"51","6":"0","7":"0","8":"1","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"229","16":"1","_rn_":"446"},{"1":"224","2":"1","3":"Obs","4":"1","5":"67","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"438","16":"2","_rn_":"447"},{"1":"224","2":"1","3":"Obs","4":"1","5":"67","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"228","16":"1","_rn_":"448"},{"1":"225","2":"1","3":"Lev","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2423","16":"2","_rn_":"449"},{"1":"225","2":"1","3":"Lev","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2423","16":"1","_rn_":"450"},{"1":"226","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"4","13":"1","14":"0","15":"599","16":"2","_rn_":"451"},{"1":"226","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"4","13":"1","14":"0","15":"599","16":"1","_rn_":"452"},{"1":"227","2":"1","3":"Obs","4":"0","5":"75","6":"1","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2706","16":"2","_rn_":"453"},{"1":"227","2":"1","3":"Obs","4":"0","5":"75","6":"1","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"726","16":"1","_rn_":"454"},{"1":"228","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2683","16":"2","_rn_":"455"},{"1":"228","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1976","16":"1","_rn_":"456"},{"1":"229","2":"1","3":"Lev","4":"1","5":"48","6":"1","7":"1","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2723","16":"2","_rn_":"457"},{"1":"229","2":"1","3":"Lev","4":"1","5":"48","6":"1","7":"1","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1026","16":"1","_rn_":"458"},{"1":"230","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"4","13":"0","14":"0","15":"1230","16":"2","_rn_":"459"},{"1":"230","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"4","13":"0","14":"0","15":"480","16":"1","_rn_":"460"},{"1":"231","2":"1","3":"Obs","4":"0","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2731","16":"2","_rn_":"461"},{"1":"231","2":"1","3":"Obs","4":"0","5":"60","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2035","16":"1","_rn_":"462"},{"1":"232","2":"1","3":"Obs","4":"1","5":"42","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2313","16":"2","_rn_":"463"},{"1":"232","2":"1","3":"Obs","4":"1","5":"42","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2313","16":"1","_rn_":"464"},{"1":"233","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2484","16":"2","_rn_":"465"},{"1":"233","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2484","16":"1","_rn_":"466"},{"1":"234","2":"1","3":"Lev+5FU","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2754","16":"2","_rn_":"467"},{"1":"234","2":"1","3":"Lev+5FU","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2754","16":"1","_rn_":"468"},{"1":"235","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"2","13":"0","14":"0","15":"2725","16":"2","_rn_":"469"},{"1":"235","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2725","16":"1","_rn_":"470"},{"1":"236","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1295","16":"2","_rn_":"471"},{"1":"236","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"264","16":"1","_rn_":"472"},{"1":"237","2":"1","3":"Lev+5FU","4":"0","5":"75","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2506","16":"2","_rn_":"473"},{"1":"237","2":"1","3":"Lev+5FU","4":"0","5":"75","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2506","16":"1","_rn_":"474"},{"1":"238","2":"1","3":"Lev+5FU","4":"0","5":"73","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2713","16":"2","_rn_":"475"},{"1":"238","2":"1","3":"Lev+5FU","4":"0","5":"73","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2713","16":"1","_rn_":"476"},{"1":"239","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2695","16":"2","_rn_":"477"},{"1":"239","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2695","16":"1","_rn_":"478"},{"1":"240","2":"1","3":"Lev+5FU","4":"0","5":"68","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1276","16":"2","_rn_":"479"},{"1":"240","2":"1","3":"Lev+5FU","4":"0","5":"68","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1024","16":"1","_rn_":"480"},{"1":"241","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2600","16":"2","_rn_":"481"},{"1":"241","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2600","16":"1","_rn_":"482"},{"1":"242","2":"1","3":"Lev+5FU","4":"1","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2352","16":"2","_rn_":"483"},{"1":"242","2":"1","3":"Lev+5FU","4":"1","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2352","16":"1","_rn_":"484"},{"1":"243","2":"1","3":"Lev+5FU","4":"0","5":"56","6":"0","7":"1","8":"1","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2775","16":"2","_rn_":"485"},{"1":"243","2":"1","3":"Lev+5FU","4":"0","5":"56","6":"0","7":"1","8":"1","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"649","16":"1","_rn_":"486"},{"1":"244","2":"1","3":"Lev","4":"0","5":"55","6":"1","7":"0","8":"0","9":"2","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2442","16":"2","_rn_":"487"},{"1":"244","2":"1","3":"Lev","4":"0","5":"55","6":"1","7":"0","8":"0","9":"2","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2442","16":"1","_rn_":"488"},{"1":"245","2":"1","3":"Obs","4":"0","5":"60","6":"1","7":"0","8":"1","9":"4","10":"1","11":"3","12":"3","13":"0","14":"0","15":"437","16":"2","_rn_":"489"},{"1":"245","2":"1","3":"Obs","4":"0","5":"60","6":"1","7":"0","8":"1","9":"4","10":"1","11":"3","12":"3","13":"0","14":"0","15":"36","16":"1","_rn_":"490"},{"1":"246","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1709","16":"2","_rn_":"491"},{"1":"246","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1561","16":"1","_rn_":"492"},{"1":"247","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"1","7":"0","8":"0","9":"11","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1607","16":"2","_rn_":"493"},{"1":"247","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"1","7":"0","8":"0","9":"11","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1607","16":"1","_rn_":"494"},{"1":"248","2":"1","3":"Lev+5FU","4":"0","5":"62","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1637","16":"2","_rn_":"495"},{"1":"248","2":"1","3":"Lev+5FU","4":"0","5":"62","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"805","16":"1","_rn_":"496"},{"1":"249","2":"1","3":"Lev","4":"0","5":"76","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"1117","16":"2","_rn_":"497"},{"1":"249","2":"1","3":"Lev","4":"0","5":"76","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"654","16":"1","_rn_":"498"},{"1":"250","2":"1","3":"Lev+5FU","4":"1","5":"72","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2732","16":"2","_rn_":"499"},{"1":"250","2":"1","3":"Lev+5FU","4":"1","5":"72","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2732","16":"1","_rn_":"500"},{"1":"251","2":"1","3":"Lev","4":"1","5":"57","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"222","16":"2","_rn_":"501"},{"1":"251","2":"1","3":"Lev","4":"1","5":"57","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"196","16":"1","_rn_":"502"},{"1":"252","2":"1","3":"Obs","4":"0","5":"39","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2688","16":"2","_rn_":"503"},{"1":"252","2":"1","3":"Obs","4":"0","5":"39","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"4","13":"0","14":"0","15":"139","16":"1","_rn_":"504"},{"1":"253","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2520","16":"2","_rn_":"505"},{"1":"253","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2520","16":"1","_rn_":"506"},{"1":"254","2":"1","3":"Obs","4":"0","5":"62","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"595","16":"2","_rn_":"507"},{"1":"254","2":"1","3":"Obs","4":"0","5":"62","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"221","16":"1","_rn_":"508"},{"1":"255","2":"1","3":"Lev","4":"1","5":"70","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"343","16":"2","_rn_":"509"},{"1":"255","2":"1","3":"Lev","4":"1","5":"70","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"183","16":"1","_rn_":"510"},{"1":"256","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"0","15":"874","16":"2","_rn_":"511"},{"1":"256","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"0","15":"496","16":"1","_rn_":"512"},{"1":"257","2":"1","3":"Lev","4":"0","5":"57","6":"1","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"232","16":"2","_rn_":"513"},{"1":"257","2":"1","3":"Lev","4":"0","5":"57","6":"1","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"77","16":"1","_rn_":"514"},{"1":"258","2":"1","3":"Lev","4":"1","5":"65","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2558","16":"2","_rn_":"515"},{"1":"258","2":"1","3":"Lev","4":"1","5":"65","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2558","16":"1","_rn_":"516"},{"1":"259","2":"1","3":"Lev","4":"0","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2711","16":"2","_rn_":"517"},{"1":"259","2":"1","3":"Lev","4":"0","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2711","16":"1","_rn_":"518"},{"1":"260","2":"1","3":"Obs","4":"0","5":"71","6":"0","7":"0","8":"0","9":"15","10":"1","11":"2","12":"3","13":"0","14":"1","15":"113","16":"2","_rn_":"519"},{"1":"260","2":"1","3":"Obs","4":"0","5":"71","6":"0","7":"0","8":"0","9":"15","10":"1","11":"2","12":"3","13":"0","14":"1","15":"79","16":"1","_rn_":"520"},{"1":"261","2":"1","3":"Lev","4":"0","5":"70","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"643","16":"2","_rn_":"521"},{"1":"261","2":"1","3":"Lev","4":"0","5":"70","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"290","16":"1","_rn_":"522"},{"1":"262","2":"1","3":"Obs","4":"0","5":"36","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2413","16":"2","_rn_":"523"},{"1":"262","2":"1","3":"Obs","4":"0","5":"36","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2413","16":"1","_rn_":"524"},{"1":"263","2":"1","3":"Lev","4":"1","5":"48","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2509","16":"2","_rn_":"525"},{"1":"263","2":"1","3":"Lev","4":"1","5":"48","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2509","16":"1","_rn_":"526"},{"1":"264","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2356","16":"2","_rn_":"527"},{"1":"264","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2356","16":"1","_rn_":"528"},{"1":"265","2":"1","3":"Lev+5FU","4":"1","5":"54","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1279","16":"2","_rn_":"529"},{"1":"265","2":"1","3":"Lev+5FU","4":"1","5":"54","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1025","16":"1","_rn_":"530"},{"1":"266","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"938","16":"2","_rn_":"531"},{"1":"266","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"0","14":"0","15":"938","16":"1","_rn_":"532"},{"1":"267","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2761","16":"2","_rn_":"533"},{"1":"267","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2761","16":"1","_rn_":"534"},{"1":"268","2":"1","3":"Lev","4":"1","5":"59","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2386","16":"2","_rn_":"535"},{"1":"268","2":"1","3":"Lev","4":"1","5":"59","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2012","16":"1","_rn_":"536"},{"1":"269","2":"1","3":"Obs","4":"0","5":"67","6":"0","7":"0","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"1","15":"433","16":"2","_rn_":"537"},{"1":"269","2":"1","3":"Obs","4":"0","5":"67","6":"0","7":"0","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"1","15":"80","16":"1","_rn_":"538"},{"1":"270","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"1","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2445","16":"2","_rn_":"539"},{"1":"270","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"1","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2445","16":"1","_rn_":"540"},{"1":"271","2":"1","3":"Lev","4":"0","5":"70","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2280","16":"2","_rn_":"541"},{"1":"271","2":"1","3":"Lev","4":"0","5":"70","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2280","16":"1","_rn_":"542"},{"1":"272","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"311","16":"2","_rn_":"543"},{"1":"272","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"291","16":"1","_rn_":"544"},{"1":"273","2":"1","3":"Lev+5FU","4":"1","5":"60","6":"1","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"977","16":"2","_rn_":"545"},{"1":"273","2":"1","3":"Lev+5FU","4":"1","5":"60","6":"1","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"422","16":"1","_rn_":"546"},{"1":"274","2":"1","3":"Obs","4":"0","5":"67","6":"1","7":"0","8":"0","9":"12","10":"1","11":"1","12":"3","13":"0","14":"1","15":"833","16":"2","_rn_":"547"},{"1":"274","2":"1","3":"Obs","4":"0","5":"67","6":"1","7":"0","8":"0","9":"12","10":"1","11":"1","12":"3","13":"0","14":"1","15":"561","16":"1","_rn_":"548"},{"1":"275","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"582","16":"2","_rn_":"549"},{"1":"275","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"262","16":"1","_rn_":"550"},{"1":"276","2":"1","3":"Lev+5FU","4":"0","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2541","16":"2","_rn_":"551"},{"1":"276","2":"1","3":"Lev+5FU","4":"0","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2541","16":"1","_rn_":"552"},{"1":"277","2":"1","3":"Obs","4":"1","5":"74","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"238","16":"2","_rn_":"553"},{"1":"277","2":"1","3":"Obs","4":"1","5":"74","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"238","16":"1","_rn_":"554"},{"1":"278","2":"1","3":"Obs","4":"0","5":"56","6":"1","7":"0","8":"0","9":"6","10":"1","11":"2","12":"4","13":"0","14":"1","15":"2257","16":"2","_rn_":"555"},{"1":"278","2":"1","3":"Obs","4":"0","5":"56","6":"1","7":"0","8":"0","9":"6","10":"0","11":"2","12":"4","13":"0","14":"1","15":"2257","16":"1","_rn_":"556"},{"1":"279","2":"1","3":"Lev","4":"0","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2501","16":"2","_rn_":"557"},{"1":"279","2":"1","3":"Lev","4":"0","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2501","16":"1","_rn_":"558"},{"1":"280","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1798","16":"2","_rn_":"559"},{"1":"280","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1122","16":"1","_rn_":"560"},{"1":"281","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"883","16":"2","_rn_":"561"},{"1":"281","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"803","16":"1","_rn_":"562"},{"1":"282","2":"1","3":"Lev","4":"0","5":"70","6":"0","7":"0","8":"1","9":"4","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2548","16":"2","_rn_":"563"},{"1":"282","2":"1","3":"Lev","4":"0","5":"70","6":"0","7":"0","8":"1","9":"4","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2548","16":"1","_rn_":"564"},{"1":"283","2":"1","3":"Lev+5FU","4":"0","5":"48","6":"0","7":"0","8":"0","9":"9","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2527","16":"2","_rn_":"565"},{"1":"283","2":"1","3":"Lev+5FU","4":"0","5":"48","6":"0","7":"0","8":"0","9":"9","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2527","16":"1","_rn_":"566"},{"1":"284","2":"1","3":"Lev","4":"1","5":"45","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2263","16":"2","_rn_":"567"},{"1":"284","2":"1","3":"Lev","4":"1","5":"45","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2263","16":"1","_rn_":"568"},{"1":"285","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"706","16":"2","_rn_":"569"},{"1":"285","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"185","16":"1","_rn_":"570"},{"1":"286","2":"1","3":"Lev","4":"0","5":"57","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2588","16":"2","_rn_":"571"},{"1":"286","2":"1","3":"Lev","4":"0","5":"57","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2588","16":"1","_rn_":"572"},{"1":"287","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"2","13":"1","14":"0","15":"2542","16":"2","_rn_":"573"},{"1":"287","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"2","13":"1","14":"0","15":"2074","16":"1","_rn_":"574"},{"1":"288","2":"1","3":"Lev+5FU","4":"1","5":"39","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1279","16":"2","_rn_":"575"},{"1":"288","2":"1","3":"Lev+5FU","4":"1","5":"39","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1279","16":"1","_rn_":"576"},{"1":"289","2":"1","3":"Obs","4":"1","5":"46","6":"0","7":"0","8":"1","9":"1","10":"1","11":"3","12":"4","13":"0","14":"0","15":"1304","16":"2","_rn_":"577"},{"1":"289","2":"1","3":"Obs","4":"1","5":"46","6":"0","7":"0","8":"1","9":"1","10":"1","11":"3","12":"4","13":"0","14":"0","15":"437","16":"1","_rn_":"578"},{"1":"290","2":"1","3":"Obs","4":"0","5":"77","6":"1","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2324","16":"2","_rn_":"579"},{"1":"290","2":"1","3":"Obs","4":"0","5":"77","6":"1","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2324","16":"1","_rn_":"580"},{"1":"291","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2488","16":"2","_rn_":"581"},{"1":"291","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2488","16":"1","_rn_":"582"},{"1":"292","2":"1","3":"Lev","4":"0","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2628","16":"2","_rn_":"583"},{"1":"292","2":"1","3":"Lev","4":"0","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2628","16":"1","_rn_":"584"},{"1":"293","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"8","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2800","16":"2","_rn_":"585"},{"1":"293","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"1","14":"1","15":"2288","16":"1","_rn_":"586"},{"1":"294","2":"1","3":"Lev+5FU","4":"1","5":"68","6":"0","7":"0","8":"0","9":"2","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2456","16":"2","_rn_":"587"},{"1":"294","2":"1","3":"Lev+5FU","4":"1","5":"68","6":"0","7":"0","8":"0","9":"2","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2456","16":"1","_rn_":"588"},{"1":"295","2":"1","3":"Obs","4":"0","5":"57","6":"0","7":"1","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2503","16":"2","_rn_":"589"},{"1":"295","2":"1","3":"Obs","4":"0","5":"57","6":"0","7":"1","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2503","16":"1","_rn_":"590"},{"1":"296","2":"1","3":"Lev+5FU","4":"0","5":"44","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1446","16":"2","_rn_":"591"},{"1":"296","2":"1","3":"Lev+5FU","4":"0","5":"44","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"431","16":"1","_rn_":"592"},{"1":"297","2":"1","3":"Lev+5FU","4":"1","5":"56","6":"0","7":"0","8":"1","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"641","16":"2","_rn_":"593"},{"1":"297","2":"1","3":"Lev+5FU","4":"1","5":"56","6":"0","7":"0","8":"1","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"497","16":"1","_rn_":"594"},{"1":"298","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1788","16":"2","_rn_":"595"},{"1":"298","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1042","16":"1","_rn_":"596"},{"1":"299","2":"1","3":"Lev+5FU","4":"1","5":"62","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"2","13":"0","14":"1","15":"2304","16":"2","_rn_":"597"},{"1":"299","2":"1","3":"Lev+5FU","4":"1","5":"62","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"2","13":"0","14":"1","15":"2304","16":"1","_rn_":"598"},{"1":"300","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"944","16":"2","_rn_":"599"},{"1":"300","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"697","16":"1","_rn_":"600"},{"1":"301","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2679","16":"2","_rn_":"601"},{"1":"301","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2679","16":"1","_rn_":"602"},{"1":"302","2":"1","3":"Lev","4":"0","5":"44","6":"1","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"559","16":"2","_rn_":"603"},{"1":"302","2":"1","3":"Lev","4":"0","5":"44","6":"1","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"286","16":"1","_rn_":"604"},{"1":"303","2":"1","3":"Lev","4":"0","5":"52","6":"0","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2663","16":"2","_rn_":"605"},{"1":"303","2":"1","3":"Lev","4":"0","5":"52","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"1","14":"1","15":"578","16":"1","_rn_":"606"},{"1":"304","2":"1","3":"Lev","4":"1","5":"51","6":"1","7":"0","8":"0","9":"1","10":"1","11":"3","12":"3","13":"0","14":"1","15":"647","16":"2","_rn_":"607"},{"1":"304","2":"1","3":"Lev","4":"1","5":"51","6":"1","7":"0","8":"0","9":"1","10":"1","11":"3","12":"3","13":"0","14":"1","15":"279","16":"1","_rn_":"608"},{"1":"305","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"0","9":"9","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2697","16":"2","_rn_":"609"},{"1":"305","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"0","9":"9","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2697","16":"1","_rn_":"610"},{"1":"306","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2538","16":"2","_rn_":"611"},{"1":"306","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2538","16":"1","_rn_":"612"},{"1":"307","2":"1","3":"Obs","4":"0","5":"57","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2219","16":"2","_rn_":"613"},{"1":"307","2":"1","3":"Obs","4":"0","5":"57","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2219","16":"1","_rn_":"614"},{"1":"308","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2487","16":"2","_rn_":"615"},{"1":"308","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"303","16":"1","_rn_":"616"},{"1":"309","2":"1","3":"Lev","4":"0","5":"73","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2709","16":"2","_rn_":"617"},{"1":"309","2":"1","3":"Lev","4":"0","5":"73","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2709","16":"1","_rn_":"618"},{"1":"310","2":"1","3":"Obs","4":"0","5":"69","6":"0","7":"0","8":"0","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"840","16":"2","_rn_":"619"},{"1":"310","2":"1","3":"Obs","4":"0","5":"69","6":"0","7":"0","8":"0","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"700","16":"1","_rn_":"620"},{"1":"311","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2267","16":"2","_rn_":"621"},{"1":"311","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2267","16":"1","_rn_":"622"},{"1":"312","2":"1","3":"Lev","4":"1","5":"75","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2444","16":"2","_rn_":"623"},{"1":"312","2":"1","3":"Lev","4":"1","5":"75","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2444","16":"1","_rn_":"624"},{"1":"313","2":"1","3":"Lev","4":"0","5":"64","6":"0","7":"0","8":"0","9":"5","10":"0","11":"1","12":"3","13":"0","14":"1","15":"2393","16":"2","_rn_":"625"},{"1":"313","2":"1","3":"Lev","4":"0","5":"64","6":"0","7":"0","8":"0","9":"5","10":"0","11":"1","12":"3","13":"0","14":"1","15":"2393","16":"1","_rn_":"626"},{"1":"314","2":"1","3":"Obs","4":"0","5":"56","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"1","13":"0","14":"0","15":"2237","16":"2","_rn_":"627"},{"1":"314","2":"1","3":"Obs","4":"0","5":"56","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"1","13":"0","14":"0","15":"2237","16":"1","_rn_":"628"},{"1":"315","2":"1","3":"Lev","4":"1","5":"69","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2915","16":"2","_rn_":"629"},{"1":"315","2":"1","3":"Lev","4":"1","5":"69","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2915","16":"1","_rn_":"630"},{"1":"316","2":"1","3":"Lev","4":"0","5":"64","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2467","16":"2","_rn_":"631"},{"1":"316","2":"1","3":"Lev","4":"0","5":"64","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"325","16":"1","_rn_":"632"},{"1":"317","2":"1","3":"Lev","4":"0","5":"74","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1092","16":"2","_rn_":"633"},{"1":"317","2":"1","3":"Lev","4":"0","5":"74","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"218","16":"1","_rn_":"634"},{"1":"318","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2726","16":"2","_rn_":"635"},{"1":"318","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2726","16":"1","_rn_":"636"},{"1":"319","2":"1","3":"Lev","4":"1","5":"58","6":"1","7":"0","8":"0","9":"9","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2764","16":"2","_rn_":"637"},{"1":"319","2":"1","3":"Lev","4":"1","5":"58","6":"1","7":"0","8":"0","9":"9","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2764","16":"1","_rn_":"638"},{"1":"320","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"1","9":"15","10":"0","11":"3","12":"4","13":"0","14":"1","15":"2592","16":"2","_rn_":"639"},{"1":"320","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"1","9":"15","10":"0","11":"3","12":"4","13":"0","14":"1","15":"2592","16":"1","_rn_":"640"},{"1":"321","2":"1","3":"Obs","4":"0","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"2","13":"0","14":"0","15":"2730","16":"2","_rn_":"641"},{"1":"321","2":"1","3":"Obs","4":"0","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"2","13":"0","14":"0","15":"2730","16":"1","_rn_":"642"},{"1":"322","2":"1","3":"Obs","4":"0","5":"74","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"2","13":"0","14":"0","15":"2287","16":"2","_rn_":"643"},{"1":"322","2":"1","3":"Obs","4":"0","5":"74","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"2","13":"0","14":"0","15":"1274","16":"1","_rn_":"644"},{"1":"323","2":"1","3":"Lev+5FU","4":"1","5":"64","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2117","16":"2","_rn_":"645"},{"1":"323","2":"1","3":"Lev+5FU","4":"1","5":"64","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2117","16":"1","_rn_":"646"},{"1":"324","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"20","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1668","16":"2","_rn_":"647"},{"1":"324","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"20","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1668","16":"1","_rn_":"648"},{"1":"325","2":"1","3":"Obs","4":"0","5":"66","6":"0","7":"0","8":"1","9":"1","10":"1","11":"NA","12":"4","13":"0","14":"0","15":"528","16":"2","_rn_":"649"},{"1":"325","2":"1","3":"Obs","4":"0","5":"66","6":"0","7":"0","8":"1","9":"1","10":"1","11":"NA","12":"4","13":"0","14":"0","15":"118","16":"1","_rn_":"650"},{"1":"326","2":"1","3":"Obs","4":"0","5":"53","6":"1","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2651","16":"2","_rn_":"651"},{"1":"326","2":"1","3":"Obs","4":"0","5":"53","6":"1","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2651","16":"1","_rn_":"652"},{"1":"327","2":"1","3":"Lev","4":"0","5":"76","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2676","16":"2","_rn_":"653"},{"1":"327","2":"1","3":"Lev","4":"0","5":"76","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2676","16":"1","_rn_":"654"},{"1":"328","2":"1","3":"Lev","4":"0","5":"75","6":"1","7":"0","8":"1","9":"3","10":"1","11":"2","12":"2","13":"1","14":"0","15":"1885","16":"2","_rn_":"655"},{"1":"328","2":"1","3":"Lev","4":"0","5":"75","6":"1","7":"0","8":"1","9":"3","10":"1","11":"2","12":"2","13":"1","14":"0","15":"1471","16":"1","_rn_":"656"},{"1":"329","2":"1","3":"Lev+5FU","4":"1","5":"64","6":"0","7":"0","8":"0","9":"3","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2350","16":"2","_rn_":"657"},{"1":"329","2":"1","3":"Lev+5FU","4":"1","5":"64","6":"0","7":"0","8":"0","9":"3","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2350","16":"1","_rn_":"658"},{"1":"330","2":"1","3":"Lev","4":"1","5":"65","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"1","14":"1","15":"475","16":"2","_rn_":"659"},{"1":"330","2":"1","3":"Lev","4":"1","5":"65","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"1","14":"1","15":"216","16":"1","_rn_":"660"},{"1":"331","2":"1","3":"Obs","4":"0","5":"57","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1246","16":"2","_rn_":"661"},{"1":"331","2":"1","3":"Obs","4":"0","5":"57","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"384","16":"1","_rn_":"662"},{"1":"332","2":"1","3":"Lev","4":"1","5":"65","6":"0","7":"0","8":"1","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2204","16":"2","_rn_":"663"},{"1":"332","2":"1","3":"Lev","4":"1","5":"65","6":"0","7":"0","8":"1","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2204","16":"1","_rn_":"664"},{"1":"333","2":"1","3":"Obs","4":"1","5":"53","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2716","16":"2","_rn_":"665"},{"1":"333","2":"1","3":"Obs","4":"1","5":"53","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2716","16":"1","_rn_":"666"},{"1":"334","2":"1","3":"Lev","4":"1","5":"74","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"797","16":"2","_rn_":"667"},{"1":"334","2":"1","3":"Lev","4":"1","5":"74","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"28","16":"1","_rn_":"668"},{"1":"335","2":"1","3":"Lev+5FU","4":"1","5":"74","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2527","16":"2","_rn_":"669"},{"1":"335","2":"1","3":"Lev+5FU","4":"1","5":"74","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2527","16":"1","_rn_":"670"},{"1":"336","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"1","9":"1","10":"1","11":"3","12":"3","13":"0","14":"0","15":"2021","16":"2","_rn_":"671"},{"1":"336","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"1","9":"1","10":"1","11":"3","12":"3","13":"0","14":"0","15":"1142","16":"1","_rn_":"672"},{"1":"337","2":"1","3":"Lev+5FU","4":"0","5":"48","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"498","16":"2","_rn_":"673"},{"1":"337","2":"1","3":"Lev+5FU","4":"0","5":"48","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"215","16":"1","_rn_":"674"},{"1":"338","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"3","12":"3","13":"0","14":"1","15":"885","16":"2","_rn_":"675"},{"1":"338","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"3","12":"3","13":"0","14":"1","15":"174","16":"1","_rn_":"676"},{"1":"339","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"802","16":"2","_rn_":"677"},{"1":"339","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"657","16":"1","_rn_":"678"},{"1":"340","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2674","16":"2","_rn_":"679"},{"1":"340","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2674","16":"1","_rn_":"680"},{"1":"341","2":"1","3":"Obs","4":"0","5":"54","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"743","16":"2","_rn_":"681"},{"1":"341","2":"1","3":"Obs","4":"0","5":"54","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"143","16":"1","_rn_":"682"},{"1":"342","2":"1","3":"Lev+5FU","4":"1","5":"80","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2517","16":"2","_rn_":"683"},{"1":"342","2":"1","3":"Lev+5FU","4":"1","5":"80","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2517","16":"1","_rn_":"684"},{"1":"343","2":"1","3":"Lev","4":"1","5":"70","6":"0","7":"0","8":"1","9":"8","10":"1","11":"2","12":"3","13":"1","14":"1","15":"349","16":"2","_rn_":"685"},{"1":"343","2":"1","3":"Lev","4":"1","5":"70","6":"0","7":"0","8":"1","9":"8","10":"1","11":"2","12":"3","13":"1","14":"1","15":"105","16":"1","_rn_":"686"},{"1":"344","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2723","16":"2","_rn_":"687"},{"1":"344","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2723","16":"1","_rn_":"688"},{"1":"345","2":"1","3":"Obs","4":"1","5":"70","6":"0","7":"0","8":"0","9":"1","10":"1","11":"3","12":"3","13":"1","14":"0","15":"775","16":"2","_rn_":"689"},{"1":"345","2":"1","3":"Obs","4":"1","5":"70","6":"0","7":"0","8":"0","9":"1","10":"1","11":"3","12":"3","13":"1","14":"0","15":"308","16":"1","_rn_":"690"},{"1":"346","2":"1","3":"Obs","4":"1","5":"71","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2326","16":"2","_rn_":"691"},{"1":"346","2":"1","3":"Obs","4":"1","5":"71","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2326","16":"1","_rn_":"692"},{"1":"347","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1134","16":"2","_rn_":"693"},{"1":"347","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"855","16":"1","_rn_":"694"},{"1":"348","2":"1","3":"Lev","4":"1","5":"47","6":"0","7":"0","8":"0","9":"2","10":"1","11":"NA","12":"3","13":"1","14":"0","15":"602","16":"2","_rn_":"695"},{"1":"348","2":"1","3":"Lev","4":"1","5":"47","6":"0","7":"0","8":"0","9":"2","10":"1","11":"NA","12":"3","13":"1","14":"0","15":"330","16":"1","_rn_":"696"},{"1":"349","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2547","16":"2","_rn_":"697"},{"1":"349","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2547","16":"1","_rn_":"698"},{"1":"350","2":"1","3":"Lev","4":"0","5":"69","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"940","16":"2","_rn_":"699"},{"1":"350","2":"1","3":"Lev","4":"0","5":"69","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"370","16":"1","_rn_":"700"},{"1":"351","2":"1","3":"Lev+5FU","4":"0","5":"73","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2496","16":"2","_rn_":"701"},{"1":"351","2":"1","3":"Lev+5FU","4":"0","5":"73","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2496","16":"1","_rn_":"702"},{"1":"352","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2628","16":"2","_rn_":"703"},{"1":"352","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2628","16":"1","_rn_":"704"},{"1":"353","2":"1","3":"Lev+5FU","4":"0","5":"55","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2353","16":"2","_rn_":"705"},{"1":"353","2":"1","3":"Lev+5FU","4":"0","5":"55","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2353","16":"1","_rn_":"706"},{"1":"354","2":"1","3":"Obs","4":"1","5":"45","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2184","16":"2","_rn_":"707"},{"1":"354","2":"1","3":"Obs","4":"1","5":"45","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2184","16":"1","_rn_":"708"},{"1":"355","2":"1","3":"Lev+5FU","4":"0","5":"78","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2219","16":"2","_rn_":"709"},{"1":"355","2":"1","3":"Lev+5FU","4":"0","5":"78","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2219","16":"1","_rn_":"710"},{"1":"356","2":"1","3":"Lev","4":"1","5":"80","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"191","16":"2","_rn_":"711"},{"1":"356","2":"1","3":"Lev","4":"1","5":"80","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"179","16":"1","_rn_":"712"},{"1":"357","2":"1","3":"Obs","4":"1","5":"55","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"421","16":"2","_rn_":"713"},{"1":"357","2":"1","3":"Obs","4":"1","5":"55","6":"0","7":"0","8":"0","9":"8","10":"0","11":"2","12":"3","13":"0","14":"1","15":"421","16":"1","_rn_":"714"},{"1":"358","2":"1","3":"Lev+5FU","4":"0","5":"64","6":"1","7":"0","8":"0","9":"NA","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2362","16":"2","_rn_":"715"},{"1":"358","2":"1","3":"Lev+5FU","4":"0","5":"64","6":"1","7":"0","8":"0","9":"NA","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2362","16":"1","_rn_":"716"},{"1":"359","2":"1","3":"Lev","4":"0","5":"60","6":"0","7":"1","8":"0","9":"10","10":"1","11":"2","12":"3","13":"1","14":"1","15":"952","16":"2","_rn_":"717"},{"1":"359","2":"1","3":"Lev","4":"0","5":"60","6":"0","7":"1","8":"0","9":"10","10":"1","11":"2","12":"3","13":"1","14":"1","15":"146","16":"1","_rn_":"718"},{"1":"360","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"911","16":"2","_rn_":"719"},{"1":"360","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"261","16":"1","_rn_":"720"},{"1":"361","2":"1","3":"Lev","4":"0","5":"61","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1851","16":"2","_rn_":"721"},{"1":"361","2":"1","3":"Lev","4":"0","5":"61","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"440","16":"1","_rn_":"722"},{"1":"362","2":"1","3":"Obs","4":"1","5":"64","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2423","16":"2","_rn_":"723"},{"1":"362","2":"1","3":"Obs","4":"1","5":"64","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2423","16":"1","_rn_":"724"},{"1":"363","2":"1","3":"Obs","4":"0","5":"48","6":"0","7":"0","8":"1","9":"1","10":"1","11":"3","12":"3","13":"1","14":"0","15":"464","16":"2","_rn_":"725"},{"1":"363","2":"1","3":"Obs","4":"0","5":"48","6":"0","7":"0","8":"1","9":"1","10":"1","11":"3","12":"3","13":"1","14":"0","15":"189","16":"1","_rn_":"726"},{"1":"364","2":"1","3":"Lev","4":"1","5":"76","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"443","16":"2","_rn_":"727"},{"1":"364","2":"1","3":"Lev","4":"1","5":"76","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"191","16":"1","_rn_":"728"},{"1":"365","2":"1","3":"Lev+5FU","4":"0","5":"76","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"3","12":"3","13":"0","14":"1","15":"186","16":"2","_rn_":"729"},{"1":"365","2":"1","3":"Lev+5FU","4":"0","5":"76","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"3","12":"3","13":"0","14":"1","15":"186","16":"1","_rn_":"730"},{"1":"366","2":"1","3":"Lev","4":"0","5":"50","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2545","16":"2","_rn_":"731"},{"1":"366","2":"1","3":"Lev","4":"0","5":"50","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2545","16":"1","_rn_":"732"},{"1":"367","2":"1","3":"Lev","4":"1","5":"56","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"4","13":"0","14":"0","15":"356","16":"2","_rn_":"733"},{"1":"367","2":"1","3":"Lev","4":"1","5":"56","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"4","13":"0","14":"0","15":"119","16":"1","_rn_":"734"},{"1":"368","2":"1","3":"Lev+5FU","4":"0","5":"42","6":"0","7":"0","8":"0","9":"10","10":"1","11":"3","12":"3","13":"1","14":"1","15":"484","16":"2","_rn_":"735"},{"1":"368","2":"1","3":"Lev+5FU","4":"0","5":"42","6":"0","7":"0","8":"0","9":"10","10":"1","11":"3","12":"3","13":"1","14":"1","15":"315","16":"1","_rn_":"736"},{"1":"369","2":"1","3":"Lev","4":"0","5":"72","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"382","16":"2","_rn_":"737"},{"1":"369","2":"1","3":"Lev","4":"0","5":"72","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"174","16":"1","_rn_":"738"},{"1":"370","2":"1","3":"Obs","4":"0","5":"68","6":"0","7":"0","8":"1","9":"9","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1021","16":"2","_rn_":"739"},{"1":"370","2":"1","3":"Obs","4":"0","5":"68","6":"0","7":"0","8":"1","9":"9","10":"1","11":"2","12":"3","13":"1","14":"1","15":"735","16":"1","_rn_":"740"},{"1":"371","2":"1","3":"Lev","4":"1","5":"49","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2472","16":"2","_rn_":"741"},{"1":"371","2":"1","3":"Lev","4":"1","5":"49","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2472","16":"1","_rn_":"742"},{"1":"372","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"12","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2352","16":"2","_rn_":"743"},{"1":"372","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"12","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2352","16":"1","_rn_":"744"},{"1":"373","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"2","13":"0","14":"0","15":"2486","16":"2","_rn_":"745"},{"1":"373","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"2","13":"0","14":"0","15":"2486","16":"1","_rn_":"746"},{"1":"374","2":"1","3":"Lev+5FU","4":"1","5":"50","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"4","13":"0","14":"0","15":"324","16":"2","_rn_":"747"},{"1":"374","2":"1","3":"Lev+5FU","4":"1","5":"50","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"4","13":"0","14":"0","15":"154","16":"1","_rn_":"748"},{"1":"375","2":"1","3":"Obs","4":"1","5":"74","6":"0","7":"0","8":"1","9":"3","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2517","16":"2","_rn_":"749"},{"1":"375","2":"1","3":"Obs","4":"1","5":"74","6":"0","7":"0","8":"1","9":"3","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2517","16":"1","_rn_":"750"},{"1":"376","2":"1","3":"Lev","4":"0","5":"37","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2613","16":"2","_rn_":"751"},{"1":"376","2":"1","3":"Lev","4":"0","5":"37","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2613","16":"1","_rn_":"752"},{"1":"377","2":"1","3":"Lev+5FU","4":"0","5":"75","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2450","16":"2","_rn_":"753"},{"1":"377","2":"1","3":"Lev+5FU","4":"0","5":"75","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2450","16":"1","_rn_":"754"},{"1":"378","2":"1","3":"Obs","4":"0","5":"56","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"770","16":"2","_rn_":"755"},{"1":"378","2":"1","3":"Obs","4":"0","5":"56","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"315","16":"1","_rn_":"756"},{"1":"379","2":"1","3":"Lev+5FU","4":"1","5":"74","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2490","16":"2","_rn_":"757"},{"1":"379","2":"1","3":"Lev+5FU","4":"1","5":"74","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2490","16":"1","_rn_":"758"},{"1":"380","2":"1","3":"Obs","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1548","16":"2","_rn_":"759"},{"1":"380","2":"1","3":"Obs","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"534","16":"1","_rn_":"760"},{"1":"381","2":"1","3":"Lev","4":"1","5":"56","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2449","16":"2","_rn_":"761"},{"1":"381","2":"1","3":"Lev","4":"1","5":"56","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2449","16":"1","_rn_":"762"},{"1":"382","2":"1","3":"Lev+5FU","4":"1","5":"42","6":"0","7":"0","8":"0","9":"13","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2299","16":"2","_rn_":"763"},{"1":"382","2":"1","3":"Lev+5FU","4":"1","5":"42","6":"0","7":"0","8":"0","9":"13","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2299","16":"1","_rn_":"764"},{"1":"383","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1252","16":"2","_rn_":"765"},{"1":"383","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"2","12":"3","13":"0","14":"1","15":"675","16":"1","_rn_":"766"},{"1":"384","2":"1","3":"Lev","4":"0","5":"62","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"730","16":"2","_rn_":"767"},{"1":"384","2":"1","3":"Lev","4":"0","5":"62","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"560","16":"1","_rn_":"768"},{"1":"385","2":"1","3":"Lev+5FU","4":"0","5":"33","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2460","16":"2","_rn_":"769"},{"1":"385","2":"1","3":"Lev+5FU","4":"0","5":"33","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2460","16":"1","_rn_":"770"},{"1":"386","2":"1","3":"Obs","4":"0","5":"50","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"499","16":"2","_rn_":"771"},{"1":"386","2":"1","3":"Obs","4":"0","5":"50","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"374","16":"1","_rn_":"772"},{"1":"387","2":"1","3":"Lev","4":"1","5":"73","6":"0","7":"0","8":"0","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"129","16":"2","_rn_":"773"},{"1":"387","2":"1","3":"Lev","4":"1","5":"73","6":"0","7":"0","8":"0","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"113","16":"1","_rn_":"774"},{"1":"388","2":"1","3":"Lev+5FU","4":"0","5":"61","6":"0","7":"0","8":"0","9":"9","10":"1","11":"3","12":"3","13":"1","14":"1","15":"52","16":"2","_rn_":"775"},{"1":"388","2":"1","3":"Lev+5FU","4":"0","5":"61","6":"0","7":"0","8":"0","9":"9","10":"1","11":"3","12":"3","13":"1","14":"1","15":"49","16":"1","_rn_":"776"},{"1":"389","2":"1","3":"Obs","4":"1","5":"70","6":"1","7":"1","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2171","16":"2","_rn_":"777"},{"1":"389","2":"1","3":"Obs","4":"1","5":"70","6":"1","7":"1","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"493","16":"1","_rn_":"778"},{"1":"390","2":"1","3":"Lev","4":"0","5":"38","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1178","16":"2","_rn_":"779"},{"1":"390","2":"1","3":"Lev","4":"0","5":"38","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"511","16":"1","_rn_":"780"},{"1":"391","2":"1","3":"Obs","4":"0","5":"64","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1915","16":"2","_rn_":"781"},{"1":"391","2":"1","3":"Obs","4":"0","5":"64","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"871","16":"1","_rn_":"782"},{"1":"392","2":"1","3":"Lev","4":"0","5":"39","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2572","16":"2","_rn_":"783"},{"1":"392","2":"1","3":"Lev","4":"0","5":"39","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2572","16":"1","_rn_":"784"},{"1":"393","2":"1","3":"Lev+5FU","4":"0","5":"47","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2590","16":"2","_rn_":"785"},{"1":"393","2":"1","3":"Lev+5FU","4":"0","5":"47","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2590","16":"1","_rn_":"786"},{"1":"394","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"1","9":"13","10":"1","11":"3","12":"3","13":"0","14":"1","15":"215","16":"2","_rn_":"787"},{"1":"394","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"1","9":"13","10":"1","11":"3","12":"3","13":"0","14":"1","15":"88","16":"1","_rn_":"788"},{"1":"395","2":"1","3":"Obs","4":"1","5":"65","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2325","16":"2","_rn_":"789"},{"1":"395","2":"1","3":"Obs","4":"1","5":"65","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2325","16":"1","_rn_":"790"},{"1":"396","2":"1","3":"Lev","4":"0","5":"43","6":"1","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"1","15":"961","16":"2","_rn_":"791"},{"1":"396","2":"1","3":"Lev","4":"0","5":"43","6":"1","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"1","15":"116","16":"1","_rn_":"792"},{"1":"397","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2691","16":"2","_rn_":"793"},{"1":"397","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2691","16":"1","_rn_":"794"},{"1":"398","2":"1","3":"Obs","4":"1","5":"33","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2574","16":"2","_rn_":"795"},{"1":"398","2":"1","3":"Obs","4":"1","5":"33","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2574","16":"1","_rn_":"796"},{"1":"399","2":"1","3":"Lev+5FU","4":"1","5":"66","6":"0","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2540","16":"2","_rn_":"797"},{"1":"399","2":"1","3":"Lev+5FU","4":"1","5":"66","6":"0","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2540","16":"1","_rn_":"798"},{"1":"400","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2364","16":"2","_rn_":"799"},{"1":"400","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2364","16":"1","_rn_":"800"},{"1":"401","2":"1","3":"Lev+5FU","4":"1","5":"54","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2472","16":"2","_rn_":"801"},{"1":"401","2":"1","3":"Lev+5FU","4":"1","5":"54","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2472","16":"1","_rn_":"802"},{"1":"402","2":"1","3":"Obs","4":"1","5":"44","6":"0","7":"0","8":"0","9":"14","10":"1","11":"2","12":"3","13":"0","14":"1","15":"409","16":"2","_rn_":"803"},{"1":"402","2":"1","3":"Obs","4":"1","5":"44","6":"0","7":"0","8":"0","9":"14","10":"1","11":"2","12":"3","13":"0","14":"1","15":"237","16":"1","_rn_":"804"},{"1":"403","2":"1","3":"Obs","4":"1","5":"75","6":"1","7":"0","8":"0","9":"27","10":"1","11":"2","12":"2","13":"0","14":"1","15":"961","16":"2","_rn_":"805"},{"1":"403","2":"1","3":"Obs","4":"1","5":"75","6":"1","7":"0","8":"0","9":"27","10":"1","11":"2","12":"2","13":"0","14":"1","15":"276","16":"1","_rn_":"806"},{"1":"404","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2449","16":"2","_rn_":"807"},{"1":"404","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2449","16":"1","_rn_":"808"},{"1":"405","2":"1","3":"Lev","4":"1","5":"48","6":"0","7":"0","8":"0","9":"6","10":"0","11":"1","12":"2","13":"1","14":"1","15":"2520","16":"2","_rn_":"809"},{"1":"405","2":"1","3":"Lev","4":"1","5":"48","6":"0","7":"0","8":"0","9":"6","10":"0","11":"1","12":"2","13":"1","14":"1","15":"2520","16":"1","_rn_":"810"},{"1":"406","2":"1","3":"Lev+5FU","4":"0","5":"64","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"916","16":"2","_rn_":"811"},{"1":"406","2":"1","3":"Lev+5FU","4":"0","5":"64","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"336","16":"1","_rn_":"812"},{"1":"407","2":"1","3":"Lev","4":"1","5":"49","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2227","16":"2","_rn_":"813"},{"1":"407","2":"1","3":"Lev","4":"1","5":"49","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2227","16":"1","_rn_":"814"},{"1":"408","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2394","16":"2","_rn_":"815"},{"1":"408","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2394","16":"1","_rn_":"816"},{"1":"409","2":"1","3":"Lev+5FU","4":"1","5":"60","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2029","16":"2","_rn_":"817"},{"1":"409","2":"1","3":"Lev+5FU","4":"1","5":"60","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2029","16":"1","_rn_":"818"},{"1":"410","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2487","16":"2","_rn_":"819"},{"1":"410","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2487","16":"1","_rn_":"820"},{"1":"411","2":"1","3":"Lev+5FU","4":"1","5":"79","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"2","13":"0","14":"0","15":"2052","16":"2","_rn_":"821"},{"1":"411","2":"1","3":"Lev+5FU","4":"1","5":"79","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2052","16":"1","_rn_":"822"},{"1":"412","2":"1","3":"Lev","4":"1","5":"57","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2690","16":"2","_rn_":"823"},{"1":"412","2":"1","3":"Lev","4":"1","5":"57","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2690","16":"1","_rn_":"824"},{"1":"413","2":"1","3":"Obs","4":"0","5":"22","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2234","16":"2","_rn_":"825"},{"1":"413","2":"1","3":"Obs","4":"0","5":"22","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2234","16":"1","_rn_":"826"},{"1":"414","2":"1","3":"Obs","4":"1","5":"59","6":"1","7":"0","8":"0","9":"4","10":"1","11":"1","12":"3","13":"0","14":"0","15":"537","16":"2","_rn_":"827"},{"1":"414","2":"1","3":"Obs","4":"1","5":"59","6":"1","7":"0","8":"0","9":"4","10":"1","11":"1","12":"3","13":"0","14":"0","15":"238","16":"1","_rn_":"828"},{"1":"415","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2277","16":"2","_rn_":"829"},{"1":"415","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2277","16":"1","_rn_":"830"},{"1":"416","2":"1","3":"Lev","4":"1","5":"54","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"4","13":"0","14":"0","15":"729","16":"2","_rn_":"831"},{"1":"416","2":"1","3":"Lev","4":"1","5":"54","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"4","13":"0","14":"0","15":"474","16":"1","_rn_":"832"},{"1":"417","2":"1","3":"Obs","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2194","16":"2","_rn_":"833"},{"1":"417","2":"1","3":"Obs","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2194","16":"1","_rn_":"834"},{"1":"418","2":"1","3":"Obs","4":"0","5":"36","6":"1","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2551","16":"2","_rn_":"835"},{"1":"418","2":"1","3":"Obs","4":"0","5":"36","6":"1","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2551","16":"1","_rn_":"836"},{"1":"419","2":"1","3":"Obs","4":"1","5":"52","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1692","16":"2","_rn_":"837"},{"1":"419","2":"1","3":"Obs","4":"1","5":"52","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1353","16":"1","_rn_":"838"},{"1":"420","2":"1","3":"Obs","4":"0","5":"61","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"758","16":"2","_rn_":"839"},{"1":"420","2":"1","3":"Obs","4":"0","5":"61","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"256","16":"1","_rn_":"840"},{"1":"421","2":"1","3":"Lev","4":"0","5":"76","6":"0","7":"0","8":"0","9":"2","10":"1","11":"1","12":"3","13":"0","14":"0","15":"2079","16":"2","_rn_":"841"},{"1":"421","2":"1","3":"Lev","4":"0","5":"76","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2079","16":"1","_rn_":"842"},{"1":"422","2":"1","3":"Lev","4":"0","5":"58","6":"0","7":"0","8":"1","9":"6","10":"1","11":"1","12":"3","13":"0","14":"1","15":"720","16":"2","_rn_":"843"},{"1":"422","2":"1","3":"Lev","4":"0","5":"58","6":"0","7":"0","8":"1","9":"6","10":"1","11":"1","12":"3","13":"0","14":"1","15":"439","16":"1","_rn_":"844"},{"1":"423","2":"1","3":"Lev","4":"1","5":"52","6":"0","7":"0","8":"0","9":"5","10":"0","11":"1","12":"3","13":"0","14":"1","15":"2380","16":"2","_rn_":"845"},{"1":"423","2":"1","3":"Lev","4":"1","5":"52","6":"0","7":"0","8":"0","9":"5","10":"0","11":"1","12":"3","13":"0","14":"1","15":"2380","16":"1","_rn_":"846"},{"1":"424","2":"1","3":"Obs","4":"1","5":"72","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"845","16":"2","_rn_":"847"},{"1":"424","2":"1","3":"Obs","4":"1","5":"72","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"845","16":"1","_rn_":"848"},{"1":"425","2":"1","3":"Lev","4":"1","5":"74","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2416","16":"2","_rn_":"849"},{"1":"425","2":"1","3":"Lev","4":"1","5":"74","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2416","16":"1","_rn_":"850"},{"1":"426","2":"1","3":"Obs","4":"1","5":"62","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"2","13":"1","14":"1","15":"863","16":"2","_rn_":"851"},{"1":"426","2":"1","3":"Obs","4":"1","5":"62","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"2","13":"1","14":"1","15":"532","16":"1","_rn_":"852"},{"1":"427","2":"1","3":"Obs","4":"0","5":"46","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1363","16":"2","_rn_":"853"},{"1":"427","2":"1","3":"Obs","4":"0","5":"46","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1363","16":"1","_rn_":"854"},{"1":"428","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2528","16":"2","_rn_":"855"},{"1":"428","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2528","16":"1","_rn_":"856"},{"1":"429","2":"1","3":"Lev+5FU","4":"1","5":"52","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1145","16":"2","_rn_":"857"},{"1":"429","2":"1","3":"Lev+5FU","4":"1","5":"52","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"617","16":"1","_rn_":"858"},{"1":"430","2":"1","3":"Lev+5FU","4":"0","5":"38","6":"0","7":"0","8":"0","9":"24","10":"1","11":"NA","12":"3","13":"0","14":"1","15":"499","16":"2","_rn_":"859"},{"1":"430","2":"1","3":"Lev+5FU","4":"0","5":"38","6":"0","7":"0","8":"0","9":"24","10":"1","11":"NA","12":"3","13":"0","14":"1","15":"365","16":"1","_rn_":"860"},{"1":"431","2":"1","3":"Obs","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"242","16":"2","_rn_":"861"},{"1":"431","2":"1","3":"Obs","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"165","16":"1","_rn_":"862"},{"1":"432","2":"1","3":"Obs","4":"0","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2294","16":"2","_rn_":"863"},{"1":"432","2":"1","3":"Obs","4":"0","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2294","16":"1","_rn_":"864"},{"1":"433","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"1","9":"2","10":"1","11":"1","12":"3","13":"0","14":"0","15":"858","16":"2","_rn_":"865"},{"1":"433","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"1","9":"2","10":"1","11":"1","12":"3","13":"0","14":"0","15":"593","16":"1","_rn_":"866"},{"1":"434","2":"1","3":"Lev","4":"0","5":"53","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"122","16":"2","_rn_":"867"},{"1":"434","2":"1","3":"Lev","4":"0","5":"53","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"72","16":"1","_rn_":"868"},{"1":"435","2":"1","3":"Lev+5FU","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2682","16":"2","_rn_":"869"},{"1":"435","2":"1","3":"Lev+5FU","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2682","16":"1","_rn_":"870"},{"1":"436","2":"1","3":"Obs","4":"1","5":"64","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1818","16":"2","_rn_":"871"},{"1":"436","2":"1","3":"Obs","4":"1","5":"64","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1818","16":"1","_rn_":"872"},{"1":"437","2":"1","3":"Obs","4":"1","5":"68","6":"1","7":"0","8":"1","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2532","16":"2","_rn_":"873"},{"1":"437","2":"1","3":"Obs","4":"1","5":"68","6":"1","7":"0","8":"1","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2532","16":"1","_rn_":"874"},{"1":"438","2":"1","3":"Obs","4":"1","5":"62","6":"0","7":"0","8":"1","9":"6","10":"1","11":"2","12":"4","13":"0","14":"1","15":"331","16":"2","_rn_":"875"},{"1":"438","2":"1","3":"Obs","4":"1","5":"62","6":"0","7":"0","8":"1","9":"6","10":"1","11":"2","12":"4","13":"0","14":"1","15":"257","16":"1","_rn_":"876"},{"1":"439","2":"1","3":"Obs","4":"1","5":"70","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"1048","16":"2","_rn_":"877"},{"1":"439","2":"1","3":"Obs","4":"1","5":"70","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"748","16":"1","_rn_":"878"},{"1":"440","2":"1","3":"Lev+5FU","4":"1","5":"57","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2513","16":"2","_rn_":"879"},{"1":"440","2":"1","3":"Lev+5FU","4":"1","5":"57","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2513","16":"1","_rn_":"880"},{"1":"441","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"4","13":"0","14":"0","15":"340","16":"2","_rn_":"881"},{"1":"441","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"4","13":"0","14":"0","15":"340","16":"1","_rn_":"882"},{"1":"442","2":"1","3":"Lev","4":"0","5":"59","6":"0","7":"0","8":"0","9":"11","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1850","16":"2","_rn_":"883"},{"1":"442","2":"1","3":"Lev","4":"0","5":"59","6":"0","7":"0","8":"0","9":"11","10":"1","11":"2","12":"3","13":"0","14":"1","15":"615","16":"1","_rn_":"884"},{"1":"443","2":"1","3":"Lev","4":"1","5":"75","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2332","16":"2","_rn_":"885"},{"1":"443","2":"1","3":"Lev","4":"1","5":"75","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2332","16":"1","_rn_":"886"},{"1":"444","2":"1","3":"Lev+5FU","4":"1","5":"77","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2279","16":"2","_rn_":"887"},{"1":"444","2":"1","3":"Lev+5FU","4":"1","5":"77","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2279","16":"1","_rn_":"888"},{"1":"445","2":"1","3":"Lev","4":"1","5":"57","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1041","16":"2","_rn_":"889"},{"1":"445","2":"1","3":"Lev","4":"1","5":"57","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"454","16":"1","_rn_":"890"},{"1":"446","2":"1","3":"Obs","4":"1","5":"72","6":"0","7":"0","8":"0","9":"2","10":"1","11":"1","12":"2","13":"1","14":"0","15":"1790","16":"2","_rn_":"891"},{"1":"446","2":"1","3":"Obs","4":"1","5":"72","6":"0","7":"0","8":"0","9":"2","10":"1","11":"1","12":"2","13":"1","14":"0","15":"1106","16":"1","_rn_":"892"},{"1":"447","2":"1","3":"Lev+5FU","4":"0","5":"64","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"304","16":"2","_rn_":"893"},{"1":"447","2":"1","3":"Lev+5FU","4":"0","5":"64","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"161","16":"1","_rn_":"894"},{"1":"448","2":"1","3":"Lev+5FU","4":"1","5":"33","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2517","16":"2","_rn_":"895"},{"1":"448","2":"1","3":"Lev+5FU","4":"1","5":"33","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2517","16":"1","_rn_":"896"},{"1":"449","2":"1","3":"Lev+5FU","4":"0","5":"62","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2156","16":"2","_rn_":"897"},{"1":"449","2":"1","3":"Lev+5FU","4":"0","5":"62","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2028","16":"1","_rn_":"898"},{"1":"450","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1388","16":"2","_rn_":"899"},{"1":"450","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"936","16":"1","_rn_":"900"},{"1":"451","2":"1","3":"Lev","4":"0","5":"55","6":"1","7":"0","8":"0","9":"4","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2544","16":"2","_rn_":"901"},{"1":"451","2":"1","3":"Lev","4":"0","5":"55","6":"1","7":"0","8":"0","9":"4","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2544","16":"1","_rn_":"902"},{"1":"452","2":"1","3":"Obs","4":"1","5":"32","6":"1","7":"0","8":"1","9":"11","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1852","16":"2","_rn_":"903"},{"1":"452","2":"1","3":"Obs","4":"1","5":"32","6":"1","7":"0","8":"1","9":"11","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1852","16":"1","_rn_":"904"},{"1":"453","2":"1","3":"Obs","4":"0","5":"64","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2122","16":"2","_rn_":"905"},{"1":"453","2":"1","3":"Obs","4":"0","5":"64","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2122","16":"1","_rn_":"906"},{"1":"454","2":"1","3":"Obs","4":"0","5":"48","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2577","16":"2","_rn_":"907"},{"1":"454","2":"1","3":"Obs","4":"0","5":"48","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2577","16":"1","_rn_":"908"},{"1":"455","2":"1","3":"Lev","4":"1","5":"68","6":"0","7":"0","8":"1","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2023","16":"2","_rn_":"909"},{"1":"455","2":"1","3":"Lev","4":"1","5":"68","6":"0","7":"0","8":"1","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"337","16":"1","_rn_":"910"},{"1":"456","2":"1","3":"Lev+5FU","4":"0","5":"59","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1201","16":"2","_rn_":"911"},{"1":"456","2":"1","3":"Lev+5FU","4":"0","5":"59","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"578","16":"1","_rn_":"912"},{"1":"457","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"1","9":"9","10":"1","11":"3","12":"3","13":"0","14":"1","15":"901","16":"2","_rn_":"913"},{"1":"457","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"1","9":"9","10":"1","11":"3","12":"3","13":"0","14":"1","15":"218","16":"1","_rn_":"914"},{"1":"458","2":"1","3":"Lev","4":"0","5":"50","6":"0","7":"0","8":"1","9":"1","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2385","16":"2","_rn_":"915"},{"1":"458","2":"1","3":"Lev","4":"0","5":"50","6":"0","7":"0","8":"1","9":"1","10":"1","11":"1","12":"3","13":"1","14":"0","15":"1589","16":"1","_rn_":"916"},{"1":"459","2":"1","3":"Obs","4":"0","5":"41","6":"1","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"663","16":"2","_rn_":"917"},{"1":"459","2":"1","3":"Obs","4":"0","5":"41","6":"1","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"103","16":"1","_rn_":"918"},{"1":"460","2":"1","3":"Lev","4":"0","5":"69","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2506","16":"2","_rn_":"919"},{"1":"460","2":"1","3":"Lev","4":"0","5":"69","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2506","16":"1","_rn_":"920"},{"1":"461","2":"1","3":"Lev+5FU","4":"1","5":"46","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"2","13":"0","14":"0","15":"2332","16":"2","_rn_":"921"},{"1":"461","2":"1","3":"Lev+5FU","4":"1","5":"46","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"2","13":"0","14":"0","15":"2332","16":"1","_rn_":"922"},{"1":"462","2":"1","3":"Obs","4":"1","5":"43","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2176","16":"2","_rn_":"923"},{"1":"462","2":"1","3":"Obs","4":"1","5":"43","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2176","16":"1","_rn_":"924"},{"1":"463","2":"1","3":"Lev+5FU","4":"1","5":"68","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"1","14":"0","15":"1212","16":"2","_rn_":"925"},{"1":"463","2":"1","3":"Lev+5FU","4":"1","5":"68","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"1","14":"0","15":"248","16":"1","_rn_":"926"},{"1":"464","2":"1","3":"Lev","4":"1","5":"73","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"890","16":"2","_rn_":"927"},{"1":"464","2":"1","3":"Lev","4":"1","5":"73","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"330","16":"1","_rn_":"928"},{"1":"465","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"1","9":"4","10":"1","11":"3","12":"4","13":"0","14":"0","15":"302","16":"2","_rn_":"929"},{"1":"465","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"1","9":"4","10":"1","11":"3","12":"4","13":"0","14":"0","15":"208","16":"1","_rn_":"930"},{"1":"466","2":"1","3":"Obs","4":"0","5":"60","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2396","16":"2","_rn_":"931"},{"1":"466","2":"1","3":"Obs","4":"0","5":"60","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2396","16":"1","_rn_":"932"},{"1":"467","2":"1","3":"Lev+5FU","4":"1","5":"74","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2481","16":"2","_rn_":"933"},{"1":"467","2":"1","3":"Lev+5FU","4":"1","5":"74","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2481","16":"1","_rn_":"934"},{"1":"468","2":"1","3":"Lev","4":"1","5":"68","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"316","16":"2","_rn_":"935"},{"1":"468","2":"1","3":"Lev","4":"1","5":"68","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"62","16":"1","_rn_":"936"},{"1":"469","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2245","16":"2","_rn_":"937"},{"1":"469","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2245","16":"1","_rn_":"938"},{"1":"470","2":"1","3":"Obs","4":"1","5":"71","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2447","16":"2","_rn_":"939"},{"1":"470","2":"1","3":"Obs","4":"1","5":"71","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2447","16":"1","_rn_":"940"},{"1":"471","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2213","16":"2","_rn_":"941"},{"1":"471","2":"1","3":"Obs","4":"1","5":"76","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2213","16":"1","_rn_":"942"},{"1":"472","2":"1","3":"Obs","4":"1","5":"57","6":"0","7":"0","8":"0","9":"8","10":"1","11":"3","12":"2","13":"0","14":"1","15":"1070","16":"2","_rn_":"943"},{"1":"472","2":"1","3":"Obs","4":"1","5":"57","6":"0","7":"0","8":"0","9":"8","10":"1","11":"3","12":"2","13":"0","14":"1","15":"273","16":"1","_rn_":"944"},{"1":"473","2":"1","3":"Lev","4":"0","5":"33","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"0","14":"1","15":"439","16":"2","_rn_":"945"},{"1":"473","2":"1","3":"Lev","4":"0","5":"33","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"0","14":"1","15":"235","16":"1","_rn_":"946"},{"1":"474","2":"1","3":"Lev","4":"1","5":"54","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"905","16":"2","_rn_":"947"},{"1":"474","2":"1","3":"Lev","4":"1","5":"54","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"583","16":"1","_rn_":"948"},{"1":"475","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"13","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1723","16":"2","_rn_":"949"},{"1":"475","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"13","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1089","16":"1","_rn_":"950"},{"1":"476","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"0","9":"6","10":"1","11":"3","12":"2","13":"1","14":"1","15":"241","16":"2","_rn_":"951"},{"1":"476","2":"1","3":"Obs","4":"0","5":"70","6":"0","7":"0","8":"0","9":"6","10":"1","11":"3","12":"2","13":"1","14":"1","15":"80","16":"1","_rn_":"952"},{"1":"477","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1314","16":"2","_rn_":"953"},{"1":"477","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1314","16":"1","_rn_":"954"},{"1":"478","2":"1","3":"Lev","4":"0","5":"45","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"438","16":"2","_rn_":"955"},{"1":"478","2":"1","3":"Lev","4":"0","5":"45","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"260","16":"1","_rn_":"956"},{"1":"479","2":"1","3":"Lev","4":"0","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1981","16":"2","_rn_":"957"},{"1":"479","2":"1","3":"Lev","4":"0","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1981","16":"1","_rn_":"958"},{"1":"480","2":"1","3":"Obs","4":"0","5":"74","6":"0","7":"0","8":"1","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2195","16":"2","_rn_":"959"},{"1":"480","2":"1","3":"Obs","4":"0","5":"74","6":"0","7":"0","8":"1","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2195","16":"1","_rn_":"960"},{"1":"481","2":"1","3":"Obs","4":"1","5":"47","6":"1","7":"1","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1101","16":"2","_rn_":"961"},{"1":"481","2":"1","3":"Obs","4":"1","5":"47","6":"1","7":"1","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"625","16":"1","_rn_":"962"},{"1":"482","2":"1","3":"Lev+5FU","4":"0","5":"58","6":"1","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"79","16":"2","_rn_":"963"},{"1":"482","2":"1","3":"Lev+5FU","4":"0","5":"58","6":"1","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"40","16":"1","_rn_":"964"},{"1":"483","2":"1","3":"Obs","4":"1","5":"73","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"976","16":"2","_rn_":"965"},{"1":"483","2":"1","3":"Obs","4":"1","5":"73","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"215","16":"1","_rn_":"966"},{"1":"484","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"17","10":"1","11":"2","12":"3","13":"1","14":"1","15":"664","16":"2","_rn_":"967"},{"1":"484","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"17","10":"1","11":"2","12":"3","13":"1","14":"1","15":"613","16":"1","_rn_":"968"},{"1":"485","2":"1","3":"Obs","4":"0","5":"44","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2299","16":"2","_rn_":"969"},{"1":"485","2":"1","3":"Obs","4":"0","5":"44","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1535","16":"1","_rn_":"970"},{"1":"486","2":"1","3":"Lev+5FU","4":"1","5":"56","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"1","15":"279","16":"2","_rn_":"971"},{"1":"486","2":"1","3":"Lev+5FU","4":"1","5":"56","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"1","15":"252","16":"1","_rn_":"972"},{"1":"487","2":"1","3":"Lev","4":"0","5":"66","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1037","16":"2","_rn_":"973"},{"1":"487","2":"1","3":"Lev","4":"0","5":"66","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"663","16":"1","_rn_":"974"},{"1":"488","2":"1","3":"Obs","4":"0","5":"30","6":"0","7":"0","8":"0","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"692","16":"2","_rn_":"975"},{"1":"488","2":"1","3":"Obs","4":"0","5":"30","6":"0","7":"0","8":"0","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"362","16":"1","_rn_":"976"},{"1":"489","2":"1","3":"Lev+5FU","4":"0","5":"67","6":"0","7":"0","8":"1","9":"10","10":"1","11":"2","12":"3","13":"0","14":"1","15":"2174","16":"2","_rn_":"977"},{"1":"489","2":"1","3":"Lev+5FU","4":"0","5":"67","6":"0","7":"0","8":"1","9":"10","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2174","16":"1","_rn_":"978"},{"1":"490","2":"1","3":"Lev","4":"0","5":"74","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2144","16":"2","_rn_":"979"},{"1":"490","2":"1","3":"Lev","4":"0","5":"74","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2144","16":"1","_rn_":"980"},{"1":"491","2":"1","3":"Lev","4":"0","5":"74","6":"0","7":"0","8":"1","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2058","16":"2","_rn_":"981"},{"1":"491","2":"1","3":"Lev","4":"0","5":"74","6":"0","7":"0","8":"1","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2058","16":"1","_rn_":"982"},{"1":"492","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2485","16":"2","_rn_":"983"},{"1":"492","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2148","16":"1","_rn_":"984"},{"1":"493","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2410","16":"2","_rn_":"985"},{"1":"493","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2410","16":"1","_rn_":"986"},{"1":"494","2":"1","3":"Lev","4":"0","5":"54","6":"1","7":"0","8":"1","9":"2","10":"0","11":"3","12":"2","13":"0","14":"0","15":"2565","16":"2","_rn_":"987"},{"1":"494","2":"1","3":"Lev","4":"0","5":"54","6":"1","7":"0","8":"1","9":"2","10":"1","11":"3","12":"2","13":"0","14":"0","15":"352","16":"1","_rn_":"988"},{"1":"495","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"2","13":"0","14":"0","15":"884","16":"2","_rn_":"989"},{"1":"495","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"884","16":"1","_rn_":"990"},{"1":"496","2":"1","3":"Lev+5FU","4":"0","5":"45","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"389","16":"2","_rn_":"991"},{"1":"496","2":"1","3":"Lev+5FU","4":"0","5":"45","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"205","16":"1","_rn_":"992"},{"1":"497","2":"1","3":"Lev+5FU","4":"0","5":"81","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"692","16":"2","_rn_":"993"},{"1":"497","2":"1","3":"Lev+5FU","4":"0","5":"81","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"591","16":"1","_rn_":"994"},{"1":"498","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"642","16":"2","_rn_":"995"},{"1":"498","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"449","16":"1","_rn_":"996"},{"1":"499","2":"1","3":"Lev","4":"1","5":"71","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"846","16":"2","_rn_":"997"},{"1":"499","2":"1","3":"Lev","4":"1","5":"71","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"828","16":"1","_rn_":"998"},{"1":"500","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2203","16":"2","_rn_":"999"},{"1":"500","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2203","16":"1","_rn_":"1000"},{"1":"501","2":"1","3":"Lev+5FU","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2164","16":"2","_rn_":"1001"},{"1":"501","2":"1","3":"Lev+5FU","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2164","16":"1","_rn_":"1002"},{"1":"502","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1273","16":"2","_rn_":"1003"},{"1":"502","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"2","12":"3","13":"0","14":"1","15":"700","16":"1","_rn_":"1004"},{"1":"503","2":"1","3":"Obs","4":"1","5":"48","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"2","13":"1","14":"1","15":"2393","16":"2","_rn_":"1005"},{"1":"503","2":"1","3":"Obs","4":"1","5":"48","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"2","13":"1","14":"1","15":"2393","16":"1","_rn_":"1006"},{"1":"504","2":"1","3":"Lev+5FU","4":"0","5":"55","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"862","16":"2","_rn_":"1007"},{"1":"504","2":"1","3":"Lev+5FU","4":"0","5":"55","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"491","16":"1","_rn_":"1008"},{"1":"505","2":"1","3":"Lev+5FU","4":"0","5":"72","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"2","13":"0","14":"0","15":"2331","16":"2","_rn_":"1009"},{"1":"505","2":"1","3":"Lev+5FU","4":"0","5":"72","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"2","13":"0","14":"0","15":"2331","16":"1","_rn_":"1010"},{"1":"506","2":"1","3":"Lev","4":"1","5":"57","6":"0","7":"0","8":"0","9":"3","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2264","16":"2","_rn_":"1011"},{"1":"506","2":"1","3":"Lev","4":"1","5":"57","6":"0","7":"0","8":"0","9":"3","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2264","16":"1","_rn_":"1012"},{"1":"507","2":"1","3":"Lev+5FU","4":"1","5":"57","6":"0","7":"0","8":"0","9":"11","10":"1","11":"3","12":"3","13":"0","14":"1","15":"144","16":"2","_rn_":"1013"},{"1":"507","2":"1","3":"Lev+5FU","4":"1","5":"57","6":"0","7":"0","8":"0","9":"11","10":"1","11":"3","12":"3","13":"0","14":"1","15":"63","16":"1","_rn_":"1014"},{"1":"508","2":"1","3":"Obs","4":"1","5":"38","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2429","16":"2","_rn_":"1015"},{"1":"508","2":"1","3":"Obs","4":"1","5":"38","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2429","16":"1","_rn_":"1016"},{"1":"509","2":"1","3":"Lev","4":"1","5":"52","6":"1","7":"0","8":"0","9":"0","10":"1","11":"2","12":"3","13":"0","14":"0","15":"723","16":"2","_rn_":"1017"},{"1":"509","2":"1","3":"Lev","4":"1","5":"52","6":"1","7":"0","8":"0","9":"0","10":"1","11":"2","12":"3","13":"0","14":"0","15":"98","16":"1","_rn_":"1018"},{"1":"510","2":"1","3":"Obs","4":"1","5":"57","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2530","16":"2","_rn_":"1019"},{"1":"510","2":"1","3":"Obs","4":"1","5":"57","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"702","16":"1","_rn_":"1020"},{"1":"511","2":"1","3":"Lev","4":"0","5":"33","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1568","16":"2","_rn_":"1021"},{"1":"511","2":"1","3":"Lev","4":"0","5":"33","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"573","16":"1","_rn_":"1022"},{"1":"512","2":"1","3":"Obs","4":"0","5":"39","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2292","16":"2","_rn_":"1023"},{"1":"512","2":"1","3":"Obs","4":"0","5":"39","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2292","16":"1","_rn_":"1024"},{"1":"513","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2252","16":"2","_rn_":"1025"},{"1":"513","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2252","16":"1","_rn_":"1026"},{"1":"514","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2408","16":"2","_rn_":"1027"},{"1":"514","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2408","16":"1","_rn_":"1028"},{"1":"515","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2555","16":"2","_rn_":"1029"},{"1":"515","2":"1","3":"Lev","4":"1","5":"58","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2555","16":"1","_rn_":"1030"},{"1":"516","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"0","14":"1","15":"276","16":"2","_rn_":"1031"},{"1":"516","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"0","14":"1","15":"237","16":"1","_rn_":"1032"},{"1":"517","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"2","13":"1","14":"0","15":"1896","16":"2","_rn_":"1033"},{"1":"517","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"2","13":"1","14":"0","15":"1606","16":"1","_rn_":"1034"},{"1":"518","2":"1","3":"Lev+5FU","4":"0","5":"43","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2147","16":"2","_rn_":"1035"},{"1":"518","2":"1","3":"Lev+5FU","4":"0","5":"43","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2147","16":"1","_rn_":"1036"},{"1":"519","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2269","16":"2","_rn_":"1037"},{"1":"519","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2269","16":"1","_rn_":"1038"},{"1":"520","2":"1","3":"Obs","4":"0","5":"48","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2391","16":"2","_rn_":"1039"},{"1":"520","2":"1","3":"Obs","4":"0","5":"48","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2391","16":"1","_rn_":"1040"},{"1":"521","2":"1","3":"Lev+5FU","4":"1","5":"68","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1424","16":"2","_rn_":"1041"},{"1":"521","2":"1","3":"Lev+5FU","4":"1","5":"68","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"849","16":"1","_rn_":"1042"},{"1":"522","2":"1","3":"Obs","4":"0","5":"72","6":"0","7":"0","8":"0","9":"NA","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2257","16":"2","_rn_":"1043"},{"1":"522","2":"1","3":"Obs","4":"0","5":"72","6":"0","7":"0","8":"0","9":"NA","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2257","16":"1","_rn_":"1044"},{"1":"523","2":"1","3":"Lev+5FU","4":"0","5":"77","6":"0","7":"0","8":"0","9":"10","10":"0","11":"3","12":"4","13":"0","14":"1","15":"2381","16":"2","_rn_":"1045"},{"1":"523","2":"1","3":"Lev+5FU","4":"0","5":"77","6":"0","7":"0","8":"0","9":"10","10":"1","11":"3","12":"4","13":"0","14":"1","15":"408","16":"1","_rn_":"1046"},{"1":"524","2":"1","3":"Lev+5FU","4":"0","5":"68","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2103","16":"2","_rn_":"1047"},{"1":"524","2":"1","3":"Lev+5FU","4":"0","5":"68","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2103","16":"1","_rn_":"1048"},{"1":"525","2":"1","3":"Obs","4":"0","5":"44","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"4","13":"0","14":"0","15":"2210","16":"2","_rn_":"1049"},{"1":"525","2":"1","3":"Obs","4":"0","5":"44","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"4","13":"0","14":"0","15":"1466","16":"1","_rn_":"1050"},{"1":"526","2":"1","3":"Lev+5FU","4":"0","5":"63","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2530","16":"2","_rn_":"1051"},{"1":"526","2":"1","3":"Lev+5FU","4":"0","5":"63","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2530","16":"1","_rn_":"1052"},{"1":"527","2":"1","3":"Lev","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2386","16":"2","_rn_":"1053"},{"1":"527","2":"1","3":"Lev","4":"1","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2386","16":"1","_rn_":"1054"},{"1":"528","2":"1","3":"Lev","4":"1","5":"50","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"0","14":"0","15":"219","16":"2","_rn_":"1055"},{"1":"528","2":"1","3":"Lev","4":"1","5":"50","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"0","14":"0","15":"141","16":"1","_rn_":"1056"},{"1":"529","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"486","16":"2","_rn_":"1057"},{"1":"529","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"486","16":"1","_rn_":"1058"},{"1":"530","2":"1","3":"Lev+5FU","4":"1","5":"40","6":"0","7":"0","8":"0","9":"5","10":"1","11":"1","12":"3","13":"0","14":"1","15":"1246","16":"2","_rn_":"1059"},{"1":"530","2":"1","3":"Lev+5FU","4":"1","5":"40","6":"0","7":"0","8":"0","9":"5","10":"1","11":"1","12":"3","13":"0","14":"1","15":"701","16":"1","_rn_":"1060"},{"1":"531","2":"1","3":"Lev","4":"1","5":"49","6":"0","7":"0","8":"0","9":"10","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2138","16":"2","_rn_":"1061"},{"1":"531","2":"1","3":"Lev","4":"1","5":"49","6":"0","7":"0","8":"0","9":"10","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2138","16":"1","_rn_":"1062"},{"1":"532","2":"1","3":"Lev+5FU","4":"0","5":"56","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2439","16":"2","_rn_":"1063"},{"1":"532","2":"1","3":"Lev+5FU","4":"0","5":"56","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2439","16":"1","_rn_":"1064"},{"1":"533","2":"1","3":"Obs","4":"1","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2231","16":"2","_rn_":"1065"},{"1":"533","2":"1","3":"Obs","4":"1","5":"61","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2231","16":"1","_rn_":"1066"},{"1":"534","2":"1","3":"Obs","4":"1","5":"65","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"384","16":"2","_rn_":"1067"},{"1":"534","2":"1","3":"Obs","4":"1","5":"65","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"230","16":"1","_rn_":"1068"},{"1":"535","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2505","16":"2","_rn_":"1069"},{"1":"535","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2505","16":"1","_rn_":"1070"},{"1":"536","2":"1","3":"Lev","4":"0","5":"72","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"1","13":"0","14":"0","15":"1652","16":"2","_rn_":"1071"},{"1":"536","2":"1","3":"Lev","4":"0","5":"72","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"1","13":"0","14":"0","15":"169","16":"1","_rn_":"1072"},{"1":"537","2":"1","3":"Lev+5FU","4":"0","5":"68","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2441","16":"2","_rn_":"1073"},{"1":"537","2":"1","3":"Lev+5FU","4":"0","5":"68","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1329","16":"1","_rn_":"1074"},{"1":"538","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"687","16":"2","_rn_":"1075"},{"1":"538","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"208","16":"1","_rn_":"1076"},{"1":"539","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2179","16":"2","_rn_":"1077"},{"1":"539","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2179","16":"1","_rn_":"1078"},{"1":"540","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"1","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2189","16":"2","_rn_":"1079"},{"1":"540","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"1","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2189","16":"1","_rn_":"1080"},{"1":"541","2":"1","3":"Lev","4":"1","5":"49","6":"0","7":"0","8":"0","9":"8","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2472","16":"2","_rn_":"1081"},{"1":"541","2":"1","3":"Lev","4":"1","5":"49","6":"0","7":"0","8":"0","9":"8","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2472","16":"1","_rn_":"1082"},{"1":"542","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2111","16":"2","_rn_":"1083"},{"1":"542","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2111","16":"1","_rn_":"1084"},{"1":"543","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"0","7":"0","8":"0","9":"7","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2020","16":"2","_rn_":"1085"},{"1":"543","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"0","7":"0","8":"0","9":"7","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2020","16":"1","_rn_":"1086"},{"1":"544","2":"1","3":"Lev","4":"0","5":"46","6":"0","7":"1","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1161","16":"2","_rn_":"1087"},{"1":"544","2":"1","3":"Lev","4":"0","5":"46","6":"0","7":"1","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"313","16":"1","_rn_":"1088"},{"1":"545","2":"1","3":"Obs","4":"1","5":"77","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2231","16":"2","_rn_":"1089"},{"1":"545","2":"1","3":"Obs","4":"1","5":"77","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1081","16":"1","_rn_":"1090"},{"1":"546","2":"1","3":"Lev+5FU","4":"1","5":"57","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2300","16":"2","_rn_":"1091"},{"1":"546","2":"1","3":"Lev+5FU","4":"1","5":"57","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2300","16":"1","_rn_":"1092"},{"1":"547","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2391","16":"2","_rn_":"1093"},{"1":"547","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"731","16":"1","_rn_":"1094"},{"1":"548","2":"1","3":"Lev","4":"1","5":"62","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"759","16":"2","_rn_":"1095"},{"1":"548","2":"1","3":"Lev","4":"1","5":"62","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"717","16":"1","_rn_":"1096"},{"1":"549","2":"1","3":"Obs","4":"1","5":"44","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"0","14":"1","15":"166","16":"2","_rn_":"1097"},{"1":"549","2":"1","3":"Obs","4":"1","5":"44","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"0","14":"1","15":"77","16":"1","_rn_":"1098"},{"1":"550","2":"1","3":"Lev","4":"0","5":"58","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2323","16":"2","_rn_":"1099"},{"1":"550","2":"1","3":"Lev","4":"0","5":"58","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2323","16":"1","_rn_":"1100"},{"1":"551","2":"1","3":"Lev+5FU","4":"0","5":"75","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2321","16":"2","_rn_":"1101"},{"1":"551","2":"1","3":"Lev+5FU","4":"0","5":"75","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2321","16":"1","_rn_":"1102"},{"1":"552","2":"1","3":"Obs","4":"0","5":"70","6":"1","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"1","14":"1","15":"1976","16":"2","_rn_":"1103"},{"1":"552","2":"1","3":"Obs","4":"0","5":"70","6":"1","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"1","14":"1","15":"1976","16":"1","_rn_":"1104"},{"1":"553","2":"1","3":"Obs","4":"1","5":"82","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2229","16":"2","_rn_":"1105"},{"1":"553","2":"1","3":"Obs","4":"1","5":"82","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2229","16":"1","_rn_":"1106"},{"1":"554","2":"1","3":"Lev+5FU","4":"0","5":"61","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1671","16":"2","_rn_":"1107"},{"1":"554","2":"1","3":"Lev+5FU","4":"0","5":"61","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"536","16":"1","_rn_":"1108"},{"1":"555","2":"1","3":"Obs","4":"1","5":"52","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1907","16":"2","_rn_":"1109"},{"1":"555","2":"1","3":"Obs","4":"1","5":"52","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"930","16":"1","_rn_":"1110"},{"1":"556","2":"1","3":"Lev+5FU","4":"1","5":"47","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"0","14":"1","15":"1783","16":"2","_rn_":"1111"},{"1":"556","2":"1","3":"Lev+5FU","4":"1","5":"47","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"0","14":"1","15":"1277","16":"1","_rn_":"1112"},{"1":"557","2":"1","3":"Lev","4":"0","5":"61","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"1","14":"1","15":"684","16":"2","_rn_":"1113"},{"1":"557","2":"1","3":"Lev","4":"0","5":"61","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"1","14":"1","15":"337","16":"1","_rn_":"1114"},{"1":"558","2":"1","3":"Lev+5FU","4":"1","5":"39","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"441","16":"2","_rn_":"1115"},{"1":"558","2":"1","3":"Lev+5FU","4":"1","5":"39","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"91","16":"1","_rn_":"1116"},{"1":"559","2":"1","3":"Lev","4":"0","5":"69","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"2","13":"0","14":"0","15":"902","16":"2","_rn_":"1117"},{"1":"559","2":"1","3":"Lev","4":"0","5":"69","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"2","13":"0","14":"0","15":"116","16":"1","_rn_":"1118"},{"1":"560","2":"1","3":"Lev","4":"1","5":"55","6":"0","7":"0","8":"0","9":"7","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2244","16":"2","_rn_":"1119"},{"1":"560","2":"1","3":"Lev","4":"1","5":"55","6":"0","7":"0","8":"0","9":"7","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2244","16":"1","_rn_":"1120"},{"1":"561","2":"1","3":"Obs","4":"0","5":"56","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2170","16":"2","_rn_":"1121"},{"1":"561","2":"1","3":"Obs","4":"0","5":"56","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2170","16":"1","_rn_":"1122"},{"1":"562","2":"1","3":"Obs","4":"1","5":"80","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"1870","16":"2","_rn_":"1123"},{"1":"562","2":"1","3":"Obs","4":"1","5":"80","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"1870","16":"1","_rn_":"1124"},{"1":"563","2":"1","3":"Lev","4":"1","5":"43","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2066","16":"2","_rn_":"1125"},{"1":"563","2":"1","3":"Lev","4":"1","5":"43","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2066","16":"1","_rn_":"1126"},{"1":"564","2":"1","3":"Lev","4":"1","5":"83","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2030","16":"2","_rn_":"1127"},{"1":"564","2":"1","3":"Lev","4":"1","5":"83","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2030","16":"1","_rn_":"1128"},{"1":"565","2":"1","3":"Obs","4":"0","5":"85","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"1","14":"0","15":"253","16":"2","_rn_":"1129"},{"1":"565","2":"1","3":"Obs","4":"0","5":"85","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"1","14":"0","15":"227","16":"1","_rn_":"1130"},{"1":"566","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2047","16":"2","_rn_":"1131"},{"1":"566","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2047","16":"1","_rn_":"1132"},{"1":"567","2":"1","3":"Lev","4":"0","5":"47","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"4","13":"0","14":"1","15":"1768","16":"2","_rn_":"1133"},{"1":"567","2":"1","3":"Lev","4":"0","5":"47","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"4","13":"0","14":"1","15":"372","16":"1","_rn_":"1134"},{"1":"568","2":"1","3":"Lev+5FU","4":"0","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2043","16":"2","_rn_":"1135"},{"1":"568","2":"1","3":"Lev+5FU","4":"0","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2043","16":"1","_rn_":"1136"},{"1":"569","2":"1","3":"Lev+5FU","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2162","16":"2","_rn_":"1137"},{"1":"569","2":"1","3":"Lev+5FU","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2162","16":"1","_rn_":"1138"},{"1":"570","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2093","16":"2","_rn_":"1139"},{"1":"570","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2093","16":"1","_rn_":"1140"},{"1":"571","2":"1","3":"Lev","4":"0","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2310","16":"2","_rn_":"1141"},{"1":"571","2":"1","3":"Lev","4":"0","5":"60","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1183","16":"1","_rn_":"1142"},{"1":"572","2":"1","3":"Lev","4":"1","5":"32","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2128","16":"2","_rn_":"1143"},{"1":"572","2":"1","3":"Lev","4":"1","5":"32","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1606","16":"1","_rn_":"1144"},{"1":"573","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"1","10":"1","11":"NA","12":"4","13":"0","14":"0","15":"1884","16":"2","_rn_":"1145"},{"1":"573","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"1","10":"1","11":"NA","12":"4","13":"0","14":"0","15":"739","16":"1","_rn_":"1146"},{"1":"574","2":"1","3":"Lev","4":"1","5":"75","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"219","16":"2","_rn_":"1147"},{"1":"574","2":"1","3":"Lev","4":"1","5":"75","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"219","16":"1","_rn_":"1148"},{"1":"575","2":"1","3":"Lev+5FU","4":"1","5":"62","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2309","16":"2","_rn_":"1149"},{"1":"575","2":"1","3":"Lev+5FU","4":"1","5":"62","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2309","16":"1","_rn_":"1150"},{"1":"576","2":"1","3":"Obs","4":"0","5":"69","6":"0","7":"0","8":"0","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"313","16":"2","_rn_":"1151"},{"1":"576","2":"1","3":"Obs","4":"0","5":"69","6":"0","7":"0","8":"0","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"296","16":"1","_rn_":"1152"},{"1":"577","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"1","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"546","16":"2","_rn_":"1153"},{"1":"577","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"1","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"279","16":"1","_rn_":"1154"},{"1":"578","2":"1","3":"Obs","4":"0","5":"54","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2213","16":"2","_rn_":"1155"},{"1":"578","2":"1","3":"Obs","4":"0","5":"54","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2213","16":"1","_rn_":"1156"},{"1":"579","2":"1","3":"Lev+5FU","4":"1","5":"72","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1856","16":"2","_rn_":"1157"},{"1":"579","2":"1","3":"Lev+5FU","4":"1","5":"72","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1856","16":"1","_rn_":"1158"},{"1":"580","2":"1","3":"Lev+5FU","4":"0","5":"27","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1421","16":"2","_rn_":"1159"},{"1":"580","2":"1","3":"Lev+5FU","4":"0","5":"27","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1421","16":"1","_rn_":"1160"},{"1":"581","2":"1","3":"Lev+5FU","4":"0","5":"62","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"4","13":"1","14":"0","15":"460","16":"2","_rn_":"1161"},{"1":"581","2":"1","3":"Lev+5FU","4":"0","5":"62","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"4","13":"1","14":"0","15":"360","16":"1","_rn_":"1162"},{"1":"582","2":"1","3":"Lev","4":"0","5":"39","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"1","13":"1","14":"0","15":"2173","16":"2","_rn_":"1163"},{"1":"582","2":"1","3":"Lev","4":"0","5":"39","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"1","13":"1","14":"0","15":"959","16":"1","_rn_":"1164"},{"1":"583","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"283","16":"2","_rn_":"1165"},{"1":"583","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"146","16":"1","_rn_":"1166"},{"1":"584","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"1","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"34","16":"2","_rn_":"1167"},{"1":"584","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"1","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"9","16":"1","_rn_":"1168"},{"1":"585","2":"1","3":"Obs","4":"1","5":"64","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2191","16":"2","_rn_":"1169"},{"1":"585","2":"1","3":"Obs","4":"1","5":"64","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2191","16":"1","_rn_":"1170"},{"1":"586","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"0","9":"12","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2186","16":"2","_rn_":"1171"},{"1":"586","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"0","9":"12","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2186","16":"1","_rn_":"1172"},{"1":"587","2":"1","3":"Obs","4":"0","5":"65","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1159","16":"2","_rn_":"1173"},{"1":"587","2":"1","3":"Obs","4":"0","5":"65","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"555","16":"1","_rn_":"1174"},{"1":"588","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"1","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"616","16":"2","_rn_":"1175"},{"1":"588","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"1","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"554","16":"1","_rn_":"1176"},{"1":"589","2":"1","3":"Lev","4":"1","5":"39","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2270","16":"2","_rn_":"1177"},{"1":"589","2":"1","3":"Lev","4":"1","5":"39","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2270","16":"1","_rn_":"1178"},{"1":"590","2":"1","3":"Lev","4":"1","5":"54","6":"0","7":"0","8":"1","9":"NA","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1061","16":"2","_rn_":"1179"},{"1":"590","2":"1","3":"Lev","4":"1","5":"54","6":"0","7":"0","8":"1","9":"NA","10":"1","11":"2","12":"3","13":"1","14":"1","15":"253","16":"1","_rn_":"1180"},{"1":"591","2":"1","3":"Obs","4":"1","5":"34","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"591","16":"2","_rn_":"1181"},{"1":"591","2":"1","3":"Obs","4":"1","5":"34","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"411","16":"1","_rn_":"1182"},{"1":"592","2":"1","3":"Lev","4":"0","5":"74","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2065","16":"2","_rn_":"1183"},{"1":"592","2":"1","3":"Lev","4":"0","5":"74","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2065","16":"1","_rn_":"1184"},{"1":"593","2":"1","3":"Obs","4":"0","5":"81","6":"1","7":"0","8":"1","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"208","16":"2","_rn_":"1185"},{"1":"593","2":"1","3":"Obs","4":"0","5":"81","6":"1","7":"0","8":"1","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"154","16":"1","_rn_":"1186"},{"1":"594","2":"1","3":"Lev+5FU","4":"1","5":"38","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2360","16":"2","_rn_":"1187"},{"1":"594","2":"1","3":"Lev+5FU","4":"1","5":"38","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"594","16":"1","_rn_":"1188"},{"1":"595","2":"1","3":"Lev","4":"0","5":"59","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2312","16":"2","_rn_":"1189"},{"1":"595","2":"1","3":"Lev","4":"0","5":"59","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2312","16":"1","_rn_":"1190"},{"1":"596","2":"1","3":"Lev","4":"0","5":"62","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1902","16":"2","_rn_":"1191"},{"1":"596","2":"1","3":"Lev","4":"0","5":"62","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1902","16":"1","_rn_":"1192"},{"1":"597","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"1","7":"0","8":"0","9":"5","10":"0","11":"1","12":"2","13":"0","14":"1","15":"1814","16":"2","_rn_":"1193"},{"1":"597","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"1","7":"0","8":"0","9":"5","10":"0","11":"1","12":"2","13":"0","14":"1","15":"1814","16":"1","_rn_":"1194"},{"1":"598","2":"1","3":"Obs","4":"1","5":"46","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2111","16":"2","_rn_":"1195"},{"1":"598","2":"1","3":"Obs","4":"1","5":"46","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2111","16":"1","_rn_":"1196"},{"1":"599","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2330","16":"2","_rn_":"1197"},{"1":"599","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2330","16":"1","_rn_":"1198"},{"1":"600","2":"1","3":"Obs","4":"1","5":"57","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2202","16":"2","_rn_":"1199"},{"1":"600","2":"1","3":"Obs","4":"1","5":"57","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2202","16":"1","_rn_":"1200"},{"1":"601","2":"1","3":"Lev","4":"0","5":"38","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1295","16":"2","_rn_":"1201"},{"1":"601","2":"1","3":"Lev","4":"0","5":"38","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"573","16":"1","_rn_":"1202"},{"1":"602","2":"1","3":"Lev","4":"0","5":"69","6":"0","7":"0","8":"1","9":"19","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1918","16":"2","_rn_":"1203"},{"1":"602","2":"1","3":"Lev","4":"0","5":"69","6":"0","7":"0","8":"1","9":"19","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1918","16":"1","_rn_":"1204"},{"1":"603","2":"1","3":"Obs","4":"0","5":"79","6":"0","7":"0","8":"1","9":"6","10":"0","11":"2","12":"2","13":"1","14":"1","15":"2066","16":"2","_rn_":"1205"},{"1":"603","2":"1","3":"Obs","4":"0","5":"79","6":"0","7":"0","8":"1","9":"6","10":"0","11":"2","12":"2","13":"1","14":"1","15":"2066","16":"1","_rn_":"1206"},{"1":"604","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2136","16":"2","_rn_":"1207"},{"1":"604","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2136","16":"1","_rn_":"1208"},{"1":"605","2":"1","3":"Lev","4":"1","5":"74","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2289","16":"2","_rn_":"1209"},{"1":"605","2":"1","3":"Lev","4":"1","5":"74","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2289","16":"1","_rn_":"1210"},{"1":"606","2":"1","3":"Lev+5FU","4":"0","5":"30","6":"1","7":"0","8":"0","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"576","16":"2","_rn_":"1211"},{"1":"606","2":"1","3":"Lev+5FU","4":"0","5":"30","6":"1","7":"0","8":"0","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"255","16":"1","_rn_":"1212"},{"1":"607","2":"1","3":"Obs","4":"0","5":"72","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2232","16":"2","_rn_":"1213"},{"1":"607","2":"1","3":"Obs","4":"0","5":"72","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2232","16":"1","_rn_":"1214"},{"1":"608","2":"1","3":"Lev","4":"0","5":"68","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1034","16":"2","_rn_":"1215"},{"1":"608","2":"1","3":"Lev","4":"0","5":"68","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"185","16":"1","_rn_":"1216"},{"1":"609","2":"1","3":"Lev+5FU","4":"1","5":"66","6":"1","7":"0","8":"0","9":"NA","10":"1","11":"3","12":"1","13":"1","14":"1","15":"583","16":"2","_rn_":"1217"},{"1":"609","2":"1","3":"Lev+5FU","4":"1","5":"66","6":"1","7":"0","8":"0","9":"NA","10":"1","11":"3","12":"1","13":"1","14":"1","15":"168","16":"1","_rn_":"1218"},{"1":"610","2":"1","3":"Obs","4":"1","5":"63","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"417","16":"2","_rn_":"1219"},{"1":"610","2":"1","3":"Obs","4":"1","5":"63","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"161","16":"1","_rn_":"1220"},{"1":"611","2":"1","3":"Lev+5FU","4":"0","5":"52","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1905","16":"2","_rn_":"1221"},{"1":"611","2":"1","3":"Lev+5FU","4":"0","5":"52","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1905","16":"1","_rn_":"1222"},{"1":"612","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"875","16":"2","_rn_":"1223"},{"1":"612","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"263","16":"1","_rn_":"1224"},{"1":"613","2":"1","3":"Lev+5FU","4":"1","5":"68","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"674","16":"2","_rn_":"1225"},{"1":"613","2":"1","3":"Lev+5FU","4":"1","5":"68","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"543","16":"1","_rn_":"1226"},{"1":"614","2":"1","3":"Lev","4":"1","5":"74","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2185","16":"2","_rn_":"1227"},{"1":"614","2":"1","3":"Lev","4":"1","5":"74","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2185","16":"1","_rn_":"1228"},{"1":"615","2":"1","3":"Lev+5FU","4":"1","5":"32","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1151","16":"2","_rn_":"1229"},{"1":"615","2":"1","3":"Lev+5FU","4":"1","5":"32","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"636","16":"1","_rn_":"1230"},{"1":"616","2":"1","3":"Lev","4":"0","5":"60","6":"1","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"342","16":"2","_rn_":"1231"},{"1":"616","2":"1","3":"Lev","4":"0","5":"60","6":"1","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"175","16":"1","_rn_":"1232"},{"1":"617","2":"1","3":"Obs","4":"0","5":"39","6":"0","7":"0","8":"0","9":"8","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2187","16":"2","_rn_":"1233"},{"1":"617","2":"1","3":"Obs","4":"0","5":"39","6":"0","7":"0","8":"0","9":"8","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2187","16":"1","_rn_":"1234"},{"1":"618","2":"1","3":"Obs","4":"0","5":"76","6":"0","7":"0","8":"1","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1434","16":"2","_rn_":"1235"},{"1":"618","2":"1","3":"Obs","4":"0","5":"76","6":"0","7":"0","8":"1","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"608","16":"1","_rn_":"1236"},{"1":"619","2":"1","3":"Lev+5FU","4":"1","5":"62","6":"0","7":"0","8":"0","9":"14","10":"1","11":"3","12":"3","13":"1","14":"1","15":"430","16":"2","_rn_":"1237"},{"1":"619","2":"1","3":"Lev+5FU","4":"1","5":"62","6":"0","7":"0","8":"0","9":"14","10":"1","11":"3","12":"3","13":"1","14":"1","15":"386","16":"1","_rn_":"1238"},{"1":"620","2":"1","3":"Lev","4":"0","5":"41","6":"0","7":"0","8":"1","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2339","16":"2","_rn_":"1239"},{"1":"620","2":"1","3":"Lev","4":"0","5":"41","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1564","16":"1","_rn_":"1240"},{"1":"621","2":"1","3":"Lev+5FU","4":"1","5":"35","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1365","16":"2","_rn_":"1241"},{"1":"621","2":"1","3":"Lev+5FU","4":"1","5":"35","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"934","16":"1","_rn_":"1242"},{"1":"622","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2313","16":"2","_rn_":"1243"},{"1":"622","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2313","16":"1","_rn_":"1244"},{"1":"623","2":"1","3":"Obs","4":"1","5":"52","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2153","16":"2","_rn_":"1245"},{"1":"623","2":"1","3":"Obs","4":"1","5":"52","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2153","16":"1","_rn_":"1246"},{"1":"624","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2164","16":"2","_rn_":"1247"},{"1":"624","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2164","16":"1","_rn_":"1248"},{"1":"625","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"0","7":"0","8":"0","9":"3","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2180","16":"2","_rn_":"1249"},{"1":"625","2":"1","3":"Lev+5FU","4":"1","5":"61","6":"0","7":"0","8":"0","9":"3","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2180","16":"1","_rn_":"1250"},{"1":"626","2":"1","3":"Obs","4":"1","5":"61","6":"0","7":"0","8":"0","9":"8","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2110","16":"2","_rn_":"1251"},{"1":"626","2":"1","3":"Obs","4":"1","5":"61","6":"0","7":"0","8":"0","9":"8","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2110","16":"1","_rn_":"1252"},{"1":"627","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2139","16":"2","_rn_":"1253"},{"1":"627","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"975","16":"1","_rn_":"1254"},{"1":"628","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"0","7":"0","8":"0","9":"2","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2120","16":"2","_rn_":"1255"},{"1":"628","2":"1","3":"Lev+5FU","4":"1","5":"59","6":"0","7":"0","8":"0","9":"2","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"2120","16":"1","_rn_":"1256"},{"1":"629","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"2","13":"0","14":"1","15":"2197","16":"2","_rn_":"1257"},{"1":"629","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"2","13":"0","14":"1","15":"1644","16":"1","_rn_":"1258"},{"1":"630","2":"1","3":"Obs","4":"1","5":"39","6":"0","7":"0","8":"0","9":"4","10":"0","11":"3","12":"4","13":"0","14":"0","15":"453","16":"2","_rn_":"1259"},{"1":"630","2":"1","3":"Obs","4":"1","5":"39","6":"0","7":"0","8":"0","9":"4","10":"0","11":"3","12":"4","13":"0","14":"0","15":"453","16":"1","_rn_":"1260"},{"1":"631","2":"1","3":"Obs","4":"1","5":"65","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"0","14":"1","15":"928","16":"2","_rn_":"1261"},{"1":"631","2":"1","3":"Obs","4":"1","5":"65","6":"0","7":"0","8":"0","9":"7","10":"1","11":"3","12":"3","13":"0","14":"1","15":"663","16":"1","_rn_":"1262"},{"1":"632","2":"1","3":"Lev","4":"0","5":"34","6":"1","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"675","16":"2","_rn_":"1263"},{"1":"632","2":"1","3":"Lev","4":"0","5":"34","6":"1","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"504","16":"1","_rn_":"1264"},{"1":"633","2":"1","3":"Obs","4":"1","5":"51","6":"1","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2170","16":"2","_rn_":"1265"},{"1":"633","2":"1","3":"Obs","4":"1","5":"51","6":"1","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2170","16":"1","_rn_":"1266"},{"1":"634","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2138","16":"2","_rn_":"1267"},{"1":"634","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2138","16":"1","_rn_":"1268"},{"1":"635","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"1","8":"0","9":"3","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2255","16":"2","_rn_":"1269"},{"1":"635","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"1","8":"0","9":"3","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2255","16":"1","_rn_":"1270"},{"1":"636","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"NA","10":"0","11":"1","12":"3","13":"0","14":"1","15":"2290","16":"2","_rn_":"1271"},{"1":"636","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"0","9":"NA","10":"0","11":"1","12":"3","13":"0","14":"1","15":"2290","16":"1","_rn_":"1272"},{"1":"637","2":"1","3":"Lev","4":"0","5":"68","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1055","16":"2","_rn_":"1273"},{"1":"637","2":"1","3":"Lev","4":"0","5":"68","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"960","16":"1","_rn_":"1274"},{"1":"638","2":"1","3":"Lev","4":"0","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2347","16":"2","_rn_":"1275"},{"1":"638","2":"1","3":"Lev","4":"0","5":"59","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1687","16":"1","_rn_":"1276"},{"1":"639","2":"1","3":"Lev","4":"1","5":"66","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"573","16":"2","_rn_":"1277"},{"1":"639","2":"1","3":"Lev","4":"1","5":"66","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"336","16":"1","_rn_":"1278"},{"1":"640","2":"1","3":"Obs","4":"1","5":"62","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2200","16":"2","_rn_":"1279"},{"1":"640","2":"1","3":"Obs","4":"1","5":"62","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2200","16":"1","_rn_":"1280"},{"1":"641","2":"1","3":"Lev+5FU","4":"0","5":"40","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"550","16":"2","_rn_":"1281"},{"1":"641","2":"1","3":"Lev+5FU","4":"0","5":"40","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"322","16":"1","_rn_":"1282"},{"1":"642","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"0","14":"0","15":"1405","16":"2","_rn_":"1283"},{"1":"642","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"0","14":"0","15":"1298","16":"1","_rn_":"1284"},{"1":"643","2":"1","3":"Lev+5FU","4":"1","5":"40","6":"1","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2355","16":"2","_rn_":"1285"},{"1":"643","2":"1","3":"Lev+5FU","4":"1","5":"40","6":"1","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"2031","16":"1","_rn_":"1286"},{"1":"644","2":"1","3":"Lev","4":"1","5":"70","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1186","16":"2","_rn_":"1287"},{"1":"644","2":"1","3":"Lev","4":"1","5":"70","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"672","16":"1","_rn_":"1288"},{"1":"645","2":"1","3":"Lev","4":"1","5":"66","6":"0","7":"0","8":"1","9":"1","10":"1","11":"NA","12":"4","13":"0","14":"0","15":"1540","16":"2","_rn_":"1289"},{"1":"645","2":"1","3":"Lev","4":"1","5":"66","6":"0","7":"0","8":"1","9":"1","10":"1","11":"NA","12":"4","13":"0","14":"0","15":"369","16":"1","_rn_":"1290"},{"1":"646","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"1","7":"0","8":"1","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2229","16":"2","_rn_":"1291"},{"1":"646","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"1","7":"0","8":"1","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2229","16":"1","_rn_":"1292"},{"1":"647","2":"1","3":"Lev","4":"1","5":"69","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"969","16":"2","_rn_":"1293"},{"1":"647","2":"1","3":"Lev","4":"1","5":"69","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"742","16":"1","_rn_":"1294"},{"1":"648","2":"1","3":"Obs","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"465","16":"2","_rn_":"1295"},{"1":"648","2":"1","3":"Obs","4":"1","5":"58","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"433","16":"1","_rn_":"1296"},{"1":"649","2":"1","3":"Lev+5FU","4":"0","5":"55","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"603","16":"2","_rn_":"1297"},{"1":"649","2":"1","3":"Lev+5FU","4":"0","5":"55","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"458","16":"1","_rn_":"1298"},{"1":"650","2":"1","3":"Lev","4":"0","5":"53","6":"0","7":"0","8":"1","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"997","16":"2","_rn_":"1299"},{"1":"650","2":"1","3":"Lev","4":"0","5":"53","6":"0","7":"0","8":"1","9":"6","10":"1","11":"2","12":"3","13":"1","14":"1","15":"490","16":"1","_rn_":"1300"},{"1":"651","2":"1","3":"Lev","4":"1","5":"52","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2274","16":"2","_rn_":"1301"},{"1":"651","2":"1","3":"Lev","4":"1","5":"52","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2274","16":"1","_rn_":"1302"},{"1":"652","2":"1","3":"Obs","4":"0","5":"62","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"563","16":"2","_rn_":"1303"},{"1":"652","2":"1","3":"Obs","4":"0","5":"62","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"294","16":"1","_rn_":"1304"},{"1":"653","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1434","16":"2","_rn_":"1305"},{"1":"653","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"465","16":"1","_rn_":"1306"},{"1":"654","2":"1","3":"Lev+5FU","4":"0","5":"69","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2316","16":"2","_rn_":"1307"},{"1":"654","2":"1","3":"Lev+5FU","4":"0","5":"69","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2316","16":"1","_rn_":"1308"},{"1":"655","2":"1","3":"Lev+5FU","4":"0","5":"41","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"692","16":"2","_rn_":"1309"},{"1":"655","2":"1","3":"Lev+5FU","4":"0","5":"41","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"199","16":"1","_rn_":"1310"},{"1":"656","2":"1","3":"Obs","4":"1","5":"64","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1447","16":"2","_rn_":"1311"},{"1":"656","2":"1","3":"Obs","4":"1","5":"64","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"499","16":"1","_rn_":"1312"},{"1":"657","2":"1","3":"Lev+5FU","4":"0","5":"59","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"0","14":"0","15":"428","16":"2","_rn_":"1313"},{"1":"657","2":"1","3":"Lev+5FU","4":"0","5":"59","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"0","14":"0","15":"165","16":"1","_rn_":"1314"},{"1":"658","2":"1","3":"Lev","4":"0","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"2","13":"1","14":"0","15":"2152","16":"2","_rn_":"1315"},{"1":"658","2":"1","3":"Lev","4":"0","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"2","13":"1","14":"0","15":"2152","16":"1","_rn_":"1316"},{"1":"659","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"854","16":"2","_rn_":"1317"},{"1":"659","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"406","16":"1","_rn_":"1318"},{"1":"660","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2093","16":"2","_rn_":"1319"},{"1":"660","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2093","16":"1","_rn_":"1320"},{"1":"661","2":"1","3":"Lev+5FU","4":"1","5":"43","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2198","16":"2","_rn_":"1321"},{"1":"661","2":"1","3":"Lev+5FU","4":"1","5":"43","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2198","16":"1","_rn_":"1322"},{"1":"662","2":"1","3":"Obs","4":"1","5":"74","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"2126","16":"2","_rn_":"1323"},{"1":"662","2":"1","3":"Obs","4":"1","5":"74","6":"0","7":"0","8":"0","9":"1","10":"1","11":"3","12":"3","13":"1","14":"0","15":"113","16":"1","_rn_":"1324"},{"1":"663","2":"1","3":"Lev+5FU","4":"1","5":"67","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"2","13":"0","14":"0","15":"2189","16":"2","_rn_":"1325"},{"1":"663","2":"1","3":"Lev+5FU","4":"1","5":"67","6":"0","7":"0","8":"0","9":"2","10":"0","11":"3","12":"2","13":"0","14":"0","15":"2189","16":"1","_rn_":"1326"},{"1":"664","2":"1","3":"Lev","4":"1","5":"46","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2142","16":"2","_rn_":"1327"},{"1":"664","2":"1","3":"Lev","4":"1","5":"46","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2142","16":"1","_rn_":"1328"},{"1":"665","2":"1","3":"Lev+5FU","4":"1","5":"47","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2278","16":"2","_rn_":"1329"},{"1":"665","2":"1","3":"Lev+5FU","4":"1","5":"47","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2278","16":"1","_rn_":"1330"},{"1":"666","2":"1","3":"Obs","4":"1","5":"66","6":"1","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"622","16":"2","_rn_":"1331"},{"1":"666","2":"1","3":"Obs","4":"1","5":"66","6":"1","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"20","16":"1","_rn_":"1332"},{"1":"667","2":"1","3":"Lev+5FU","4":"0","5":"36","6":"1","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2192","16":"2","_rn_":"1333"},{"1":"667","2":"1","3":"Lev+5FU","4":"0","5":"36","6":"1","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2192","16":"1","_rn_":"1334"},{"1":"668","2":"1","3":"Obs","4":"1","5":"62","6":"1","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"413","16":"2","_rn_":"1335"},{"1":"668","2":"1","3":"Obs","4":"1","5":"62","6":"1","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"280","16":"1","_rn_":"1336"},{"1":"669","2":"1","3":"Lev","4":"0","5":"69","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1191","16":"2","_rn_":"1337"},{"1":"669","2":"1","3":"Lev","4":"0","5":"69","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"680","16":"1","_rn_":"1338"},{"1":"670","2":"1","3":"Obs","4":"0","5":"76","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"1","14":"0","15":"1139","16":"2","_rn_":"1339"},{"1":"670","2":"1","3":"Obs","4":"0","5":"76","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"1","14":"0","15":"1139","16":"1","_rn_":"1340"},{"1":"671","2":"1","3":"Lev","4":"1","5":"36","6":"1","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"165","16":"2","_rn_":"1341"},{"1":"671","2":"1","3":"Lev","4":"1","5":"36","6":"1","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"111","16":"1","_rn_":"1342"},{"1":"672","2":"1","3":"Obs","4":"1","5":"73","6":"0","7":"0","8":"1","9":"3","10":"0","11":"NA","12":"2","13":"0","14":"0","15":"2210","16":"2","_rn_":"1343"},{"1":"672","2":"1","3":"Obs","4":"1","5":"73","6":"0","7":"0","8":"1","9":"3","10":"0","11":"NA","12":"2","13":"0","14":"0","15":"2210","16":"1","_rn_":"1344"},{"1":"673","2":"1","3":"Obs","4":"1","5":"72","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"2","13":"0","14":"1","15":"2227","16":"2","_rn_":"1345"},{"1":"673","2":"1","3":"Obs","4":"1","5":"72","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"2","13":"0","14":"1","15":"2227","16":"1","_rn_":"1346"},{"1":"674","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2076","16":"2","_rn_":"1347"},{"1":"674","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2076","16":"1","_rn_":"1348"},{"1":"675","2":"1","3":"Obs","4":"1","5":"58","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2132","16":"2","_rn_":"1349"},{"1":"675","2":"1","3":"Obs","4":"1","5":"58","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2132","16":"1","_rn_":"1350"},{"1":"676","2":"1","3":"Lev+5FU","4":"0","5":"52","6":"1","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2084","16":"2","_rn_":"1351"},{"1":"676","2":"1","3":"Lev+5FU","4":"0","5":"52","6":"1","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2084","16":"1","_rn_":"1352"},{"1":"677","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"4","13":"0","14":"0","15":"1905","16":"2","_rn_":"1353"},{"1":"677","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"4","13":"0","14":"0","15":"379","16":"1","_rn_":"1354"},{"1":"678","2":"1","3":"Lev","4":"0","5":"43","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"1","14":"1","15":"608","16":"2","_rn_":"1355"},{"1":"678","2":"1","3":"Lev","4":"0","5":"43","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"1","14":"1","15":"286","16":"1","_rn_":"1356"},{"1":"679","2":"1","3":"Lev+5FU","4":"1","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2066","16":"2","_rn_":"1357"},{"1":"679","2":"1","3":"Lev+5FU","4":"1","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2066","16":"1","_rn_":"1358"},{"1":"680","2":"1","3":"Obs","4":"0","5":"61","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2006","16":"2","_rn_":"1359"},{"1":"680","2":"1","3":"Obs","4":"0","5":"61","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2006","16":"1","_rn_":"1360"},{"1":"681","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2183","16":"2","_rn_":"1361"},{"1":"681","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2183","16":"1","_rn_":"1362"},{"1":"682","2":"1","3":"Lev+5FU","4":"1","5":"46","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2099","16":"2","_rn_":"1363"},{"1":"682","2":"1","3":"Lev+5FU","4":"1","5":"46","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2099","16":"1","_rn_":"1364"},{"1":"683","2":"1","3":"Lev","4":"1","5":"73","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1879","16":"2","_rn_":"1365"},{"1":"683","2":"1","3":"Lev","4":"1","5":"73","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1879","16":"1","_rn_":"1366"},{"1":"684","2":"1","3":"Obs","4":"0","5":"65","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"264","16":"2","_rn_":"1367"},{"1":"684","2":"1","3":"Obs","4":"0","5":"65","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"99","16":"1","_rn_":"1368"},{"1":"685","2":"1","3":"Lev+5FU","4":"0","5":"61","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2107","16":"2","_rn_":"1369"},{"1":"685","2":"1","3":"Lev+5FU","4":"0","5":"61","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2107","16":"1","_rn_":"1370"},{"1":"686","2":"1","3":"Lev","4":"1","5":"65","6":"0","7":"0","8":"0","9":"15","10":"1","11":"3","12":"3","13":"0","14":"1","15":"743","16":"2","_rn_":"1371"},{"1":"686","2":"1","3":"Lev","4":"1","5":"65","6":"0","7":"0","8":"0","9":"15","10":"1","11":"3","12":"3","13":"0","14":"1","15":"491","16":"1","_rn_":"1372"},{"1":"687","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"966","16":"2","_rn_":"1373"},{"1":"687","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"102","16":"1","_rn_":"1374"},{"1":"688","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2076","16":"2","_rn_":"1375"},{"1":"688","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2076","16":"1","_rn_":"1376"},{"1":"689","2":"1","3":"Lev","4":"1","5":"72","6":"1","7":"0","8":"0","9":"4","10":"1","11":"3","12":"3","13":"1","14":"0","15":"24","16":"2","_rn_":"1377"},{"1":"689","2":"1","3":"Lev","4":"1","5":"72","6":"1","7":"0","8":"0","9":"4","10":"0","11":"3","12":"3","13":"1","14":"0","15":"24","16":"1","_rn_":"1378"},{"1":"690","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"1","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"448","16":"2","_rn_":"1379"},{"1":"690","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"1","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"380","16":"1","_rn_":"1380"},{"1":"691","2":"1","3":"Lev","4":"0","5":"45","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"909","16":"2","_rn_":"1381"},{"1":"691","2":"1","3":"Lev","4":"0","5":"45","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"415","16":"1","_rn_":"1382"},{"1":"692","2":"1","3":"Lev","4":"0","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2188","16":"2","_rn_":"1383"},{"1":"692","2":"1","3":"Lev","4":"0","5":"66","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"1","14":"0","15":"1647","16":"1","_rn_":"1384"},{"1":"693","2":"1","3":"Obs","4":"1","5":"38","6":"1","7":"0","8":"0","9":"2","10":"1","11":"NA","12":"4","13":"0","14":"0","15":"469","16":"2","_rn_":"1385"},{"1":"693","2":"1","3":"Obs","4":"1","5":"38","6":"1","7":"0","8":"0","9":"2","10":"1","11":"NA","12":"4","13":"0","14":"0","15":"174","16":"1","_rn_":"1386"},{"1":"694","2":"1","3":"Obs","4":"0","5":"46","6":"0","7":"1","8":"1","9":"2","10":"1","11":"3","12":"4","13":"1","14":"0","15":"594","16":"2","_rn_":"1387"},{"1":"694","2":"1","3":"Obs","4":"0","5":"46","6":"0","7":"1","8":"1","9":"2","10":"1","11":"3","12":"4","13":"1","14":"0","15":"243","16":"1","_rn_":"1388"},{"1":"695","2":"1","3":"Lev+5FU","4":"0","5":"51","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2008","16":"2","_rn_":"1389"},{"1":"695","2":"1","3":"Lev+5FU","4":"0","5":"51","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2008","16":"1","_rn_":"1390"},{"1":"696","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"4","13":"0","14":"0","15":"1276","16":"2","_rn_":"1391"},{"1":"696","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"4","13":"0","14":"0","15":"827","16":"1","_rn_":"1392"},{"1":"697","2":"1","3":"Obs","4":"1","5":"55","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"957","16":"2","_rn_":"1393"},{"1":"697","2":"1","3":"Obs","4":"1","5":"55","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"686","16":"1","_rn_":"1394"},{"1":"698","2":"1","3":"Obs","4":"1","5":"58","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1950","16":"2","_rn_":"1395"},{"1":"698","2":"1","3":"Obs","4":"1","5":"58","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"495","16":"1","_rn_":"1396"},{"1":"699","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2668","16":"2","_rn_":"1397"},{"1":"699","2":"1","3":"Lev+5FU","4":"1","5":"65","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2668","16":"1","_rn_":"1398"},{"1":"700","2":"1","3":"Lev+5FU","4":"0","5":"46","6":"1","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2250","16":"2","_rn_":"1399"},{"1":"700","2":"1","3":"Lev+5FU","4":"0","5":"46","6":"1","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"1","14":"0","15":"2250","16":"1","_rn_":"1400"},{"1":"701","2":"1","3":"Lev","4":"0","5":"57","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2191","16":"2","_rn_":"1401"},{"1":"701","2":"1","3":"Lev","4":"0","5":"57","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2191","16":"1","_rn_":"1402"},{"1":"702","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2365","16":"2","_rn_":"1403"},{"1":"702","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2365","16":"1","_rn_":"1404"},{"1":"703","2":"1","3":"Lev","4":"0","5":"75","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2331","16":"2","_rn_":"1405"},{"1":"703","2":"1","3":"Lev","4":"0","5":"75","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2331","16":"1","_rn_":"1406"},{"1":"704","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"1","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1262","16":"2","_rn_":"1407"},{"1":"704","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"1","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1108","16":"1","_rn_":"1408"},{"1":"705","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1537","16":"2","_rn_":"1409"},{"1":"705","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1537","16":"1","_rn_":"1410"},{"1":"706","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2387","16":"2","_rn_":"1411"},{"1":"706","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2387","16":"1","_rn_":"1412"},{"1":"707","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2235","16":"2","_rn_":"1413"},{"1":"707","2":"1","3":"Obs","4":"1","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2235","16":"1","_rn_":"1414"},{"1":"708","2":"1","3":"Lev","4":"0","5":"78","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1980","16":"2","_rn_":"1415"},{"1":"708","2":"1","3":"Lev","4":"0","5":"78","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1980","16":"1","_rn_":"1416"},{"1":"709","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"1","11":"1","12":"1","13":"0","14":"0","15":"578","16":"2","_rn_":"1417"},{"1":"709","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"2","10":"1","11":"1","12":"1","13":"0","14":"0","15":"285","16":"1","_rn_":"1418"},{"1":"710","2":"1","3":"Obs","4":"1","5":"57","6":"0","7":"0","8":"0","9":"4","10":"1","11":"1","12":"3","13":"0","14":"0","15":"1083","16":"2","_rn_":"1419"},{"1":"710","2":"1","3":"Obs","4":"1","5":"57","6":"0","7":"0","8":"0","9":"4","10":"1","11":"1","12":"3","13":"0","14":"0","15":"203","16":"1","_rn_":"1420"},{"1":"711","2":"1","3":"Obs","4":"1","5":"52","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1875","16":"2","_rn_":"1421"},{"1":"711","2":"1","3":"Obs","4":"1","5":"52","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1436","16":"1","_rn_":"1422"},{"1":"712","2":"1","3":"Obs","4":"0","5":"50","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2384","16":"2","_rn_":"1423"},{"1":"712","2":"1","3":"Obs","4":"0","5":"50","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"402","16":"1","_rn_":"1424"},{"1":"713","2":"1","3":"Obs","4":"1","5":"36","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"563","16":"2","_rn_":"1425"},{"1":"713","2":"1","3":"Obs","4":"1","5":"36","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"354","16":"1","_rn_":"1426"},{"1":"714","2":"1","3":"Lev+5FU","4":"0","5":"50","6":"0","7":"0","8":"0","9":"4","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2076","16":"2","_rn_":"1427"},{"1":"714","2":"1","3":"Lev+5FU","4":"0","5":"50","6":"0","7":"0","8":"0","9":"4","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2076","16":"1","_rn_":"1428"},{"1":"715","2":"1","3":"Obs","4":"1","5":"53","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2025","16":"2","_rn_":"1429"},{"1":"715","2":"1","3":"Obs","4":"1","5":"53","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2025","16":"1","_rn_":"1430"},{"1":"716","2":"1","3":"Lev+5FU","4":"1","5":"48","6":"0","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2055","16":"2","_rn_":"1431"},{"1":"716","2":"1","3":"Lev+5FU","4":"1","5":"48","6":"0","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2055","16":"1","_rn_":"1432"},{"1":"717","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1375","16":"2","_rn_":"1433"},{"1":"717","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"540","16":"1","_rn_":"1434"},{"1":"718","2":"1","3":"Lev+5FU","4":"1","5":"47","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2350","16":"2","_rn_":"1435"},{"1":"718","2":"1","3":"Lev+5FU","4":"1","5":"47","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2350","16":"1","_rn_":"1436"},{"1":"719","2":"1","3":"Lev","4":"0","5":"74","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2200","16":"2","_rn_":"1437"},{"1":"719","2":"1","3":"Lev","4":"0","5":"74","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2200","16":"1","_rn_":"1438"},{"1":"720","2":"1","3":"Lev+5FU","4":"1","5":"53","6":"1","7":"1","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2222","16":"2","_rn_":"1439"},{"1":"720","2":"1","3":"Lev+5FU","4":"1","5":"53","6":"1","7":"1","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2222","16":"1","_rn_":"1440"},{"1":"721","2":"1","3":"Obs","4":"1","5":"55","6":"0","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2149","16":"2","_rn_":"1441"},{"1":"721","2":"1","3":"Obs","4":"1","5":"55","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1432","16":"1","_rn_":"1442"},{"1":"722","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2303","16":"2","_rn_":"1443"},{"1":"722","2":"1","3":"Lev","4":"1","5":"53","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2303","16":"1","_rn_":"1444"},{"1":"723","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"1","8":"0","9":"4","10":"1","11":"2","12":"4","13":"0","14":"0","15":"322","16":"2","_rn_":"1445"},{"1":"723","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"1","8":"0","9":"4","10":"1","11":"2","12":"4","13":"0","14":"0","15":"201","16":"1","_rn_":"1446"},{"1":"724","2":"1","3":"Lev","4":"1","5":"56","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"764","16":"2","_rn_":"1447"},{"1":"724","2":"1","3":"Lev","4":"1","5":"56","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"525","16":"1","_rn_":"1448"},{"1":"725","2":"1","3":"Lev+5FU","4":"0","5":"30","6":"1","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"765","16":"2","_rn_":"1449"},{"1":"725","2":"1","3":"Lev+5FU","4":"0","5":"30","6":"1","7":"0","8":"1","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"415","16":"1","_rn_":"1450"},{"1":"726","2":"1","3":"Lev","4":"0","5":"56","6":"0","7":"0","8":"0","9":"8","10":"1","11":"1","12":"3","13":"0","14":"1","15":"93","16":"2","_rn_":"1451"},{"1":"726","2":"1","3":"Lev","4":"0","5":"56","6":"0","7":"0","8":"0","9":"8","10":"1","11":"1","12":"3","13":"0","14":"1","15":"38","16":"1","_rn_":"1452"},{"1":"727","2":"1","3":"Lev+5FU","4":"1","5":"46","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1918","16":"2","_rn_":"1453"},{"1":"727","2":"1","3":"Lev+5FU","4":"1","5":"46","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1918","16":"1","_rn_":"1454"},{"1":"728","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"2","13":"0","14":"0","15":"1932","16":"2","_rn_":"1455"},{"1":"728","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"2","13":"0","14":"0","15":"276","16":"1","_rn_":"1456"},{"1":"729","2":"1","3":"Obs","4":"0","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2278","16":"2","_rn_":"1457"},{"1":"729","2":"1","3":"Obs","4":"0","5":"60","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2278","16":"1","_rn_":"1458"},{"1":"730","2":"1","3":"Obs","4":"1","5":"57","6":"1","7":"0","8":"0","9":"9","10":"1","11":"3","12":"3","13":"0","14":"1","15":"145","16":"2","_rn_":"1459"},{"1":"730","2":"1","3":"Obs","4":"1","5":"57","6":"1","7":"0","8":"0","9":"9","10":"1","11":"3","12":"3","13":"0","14":"1","15":"59","16":"1","_rn_":"1460"},{"1":"731","2":"1","3":"Lev+5FU","4":"0","5":"42","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"1913","16":"2","_rn_":"1461"},{"1":"731","2":"1","3":"Lev+5FU","4":"0","5":"42","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"1913","16":"1","_rn_":"1462"},{"1":"732","2":"1","3":"Obs","4":"1","5":"58","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2176","16":"2","_rn_":"1463"},{"1":"732","2":"1","3":"Obs","4":"1","5":"58","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2176","16":"1","_rn_":"1464"},{"1":"733","2":"1","3":"Obs","4":"0","5":"53","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"1995","16":"2","_rn_":"1465"},{"1":"733","2":"1","3":"Obs","4":"0","5":"53","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"1","14":"0","15":"1995","16":"1","_rn_":"1466"},{"1":"734","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2023","16":"2","_rn_":"1467"},{"1":"734","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2023","16":"1","_rn_":"1468"},{"1":"735","2":"1","3":"Obs","4":"1","5":"73","6":"0","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1935","16":"2","_rn_":"1469"},{"1":"735","2":"1","3":"Obs","4":"1","5":"73","6":"0","7":"0","8":"0","9":"7","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1935","16":"1","_rn_":"1470"},{"1":"736","2":"1","3":"Obs","4":"1","5":"57","6":"0","7":"0","8":"0","9":"NA","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2191","16":"2","_rn_":"1471"},{"1":"736","2":"1","3":"Obs","4":"1","5":"57","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1539","16":"1","_rn_":"1472"},{"1":"737","2":"1","3":"Lev+5FU","4":"0","5":"77","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2191","16":"2","_rn_":"1473"},{"1":"737","2":"1","3":"Lev+5FU","4":"0","5":"77","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2191","16":"1","_rn_":"1474"},{"1":"738","2":"1","3":"Obs","4":"1","5":"60","6":"0","7":"0","8":"0","9":"2","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"1856","16":"2","_rn_":"1475"},{"1":"738","2":"1","3":"Obs","4":"1","5":"60","6":"0","7":"0","8":"0","9":"2","10":"0","11":"NA","12":"3","13":"0","14":"0","15":"1856","16":"1","_rn_":"1476"},{"1":"739","2":"1","3":"Lev","4":"1","5":"74","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"628","16":"2","_rn_":"1477"},{"1":"739","2":"1","3":"Lev","4":"1","5":"74","6":"0","7":"0","8":"0","9":"8","10":"0","11":"2","12":"3","13":"0","14":"1","15":"628","16":"1","_rn_":"1478"},{"1":"740","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"1976","16":"2","_rn_":"1479"},{"1":"740","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"2","13":"0","14":"0","15":"1976","16":"1","_rn_":"1480"},{"1":"741","2":"1","3":"Obs","4":"0","5":"53","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1819","16":"2","_rn_":"1481"},{"1":"741","2":"1","3":"Obs","4":"0","5":"53","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1819","16":"1","_rn_":"1482"},{"1":"742","2":"1","3":"Lev+5FU","4":"0","5":"68","6":"0","7":"0","8":"1","9":"8","10":"1","11":"2","12":"4","13":"0","14":"1","15":"141","16":"2","_rn_":"1483"},{"1":"742","2":"1","3":"Lev+5FU","4":"0","5":"68","6":"0","7":"0","8":"1","9":"8","10":"1","11":"2","12":"4","13":"0","14":"1","15":"101","16":"1","_rn_":"1484"},{"1":"743","2":"1","3":"Lev","4":"1","5":"59","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"422","16":"2","_rn_":"1485"},{"1":"743","2":"1","3":"Lev","4":"1","5":"59","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"19","16":"1","_rn_":"1486"},{"1":"744","2":"1","3":"Lev","4":"1","5":"29","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2006","16":"2","_rn_":"1487"},{"1":"744","2":"1","3":"Lev","4":"1","5":"29","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2006","16":"1","_rn_":"1488"},{"1":"745","2":"1","3":"Obs","4":"0","5":"57","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2113","16":"2","_rn_":"1489"},{"1":"745","2":"1","3":"Obs","4":"0","5":"57","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2113","16":"1","_rn_":"1490"},{"1":"746","2":"1","3":"Obs","4":"1","5":"61","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"2","13":"0","14":"0","15":"1823","16":"2","_rn_":"1491"},{"1":"746","2":"1","3":"Obs","4":"1","5":"61","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"2","13":"0","14":"0","15":"1823","16":"1","_rn_":"1492"},{"1":"747","2":"1","3":"Obs","4":"1","5":"68","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2170","16":"2","_rn_":"1493"},{"1":"747","2":"1","3":"Obs","4":"1","5":"68","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2170","16":"1","_rn_":"1494"},{"1":"748","2":"1","3":"Lev+5FU","4":"1","5":"49","6":"0","7":"0","8":"0","9":"11","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1812","16":"2","_rn_":"1495"},{"1":"748","2":"1","3":"Lev+5FU","4":"1","5":"49","6":"0","7":"0","8":"0","9":"11","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1723","16":"1","_rn_":"1496"},{"1":"749","2":"1","3":"Lev","4":"0","5":"70","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1838","16":"2","_rn_":"1497"},{"1":"749","2":"1","3":"Lev","4":"0","5":"70","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1838","16":"1","_rn_":"1498"},{"1":"750","2":"1","3":"Obs","4":"1","5":"53","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"1855","16":"2","_rn_":"1499"},{"1":"750","2":"1","3":"Obs","4":"1","5":"53","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"1855","16":"1","_rn_":"1500"},{"1":"751","2":"1","3":"Lev+5FU","4":"0","5":"57","6":"1","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"269","16":"2","_rn_":"1501"},{"1":"751","2":"1","3":"Lev+5FU","4":"0","5":"57","6":"1","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"185","16":"1","_rn_":"1502"},{"1":"752","2":"1","3":"Lev","4":"1","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2414","16":"2","_rn_":"1503"},{"1":"752","2":"1","3":"Lev","4":"1","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2414","16":"1","_rn_":"1504"},{"1":"753","2":"1","3":"Lev","4":"1","5":"59","6":"0","7":"0","8":"1","9":"2","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2174","16":"2","_rn_":"1505"},{"1":"753","2":"1","3":"Lev","4":"1","5":"59","6":"0","7":"0","8":"1","9":"2","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2174","16":"1","_rn_":"1506"},{"1":"754","2":"1","3":"Lev+5FU","4":"1","5":"56","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2263","16":"2","_rn_":"1507"},{"1":"754","2":"1","3":"Lev+5FU","4":"1","5":"56","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2263","16":"1","_rn_":"1508"},{"1":"755","2":"1","3":"Lev+5FU","4":"1","5":"38","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1495","16":"2","_rn_":"1509"},{"1":"755","2":"1","3":"Lev+5FU","4":"1","5":"38","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1159","16":"1","_rn_":"1510"},{"1":"756","2":"1","3":"Lev","4":"0","5":"61","6":"0","7":"0","8":"0","9":"10","10":"1","11":"3","12":"3","13":"0","14":"1","15":"314","16":"2","_rn_":"1511"},{"1":"756","2":"1","3":"Lev","4":"0","5":"61","6":"0","7":"0","8":"0","9":"10","10":"1","11":"3","12":"3","13":"0","14":"1","15":"113","16":"1","_rn_":"1512"},{"1":"757","2":"1","3":"Obs","4":"1","5":"49","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2261","16":"2","_rn_":"1513"},{"1":"757","2":"1","3":"Obs","4":"1","5":"49","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1455","16":"1","_rn_":"1514"},{"1":"758","2":"1","3":"Obs","4":"0","5":"69","6":"0","7":"0","8":"0","9":"12","10":"1","11":"2","12":"3","13":"1","14":"1","15":"716","16":"2","_rn_":"1515"},{"1":"758","2":"1","3":"Obs","4":"0","5":"69","6":"0","7":"0","8":"0","9":"12","10":"1","11":"2","12":"3","13":"1","14":"1","15":"398","16":"1","_rn_":"1516"},{"1":"759","2":"1","3":"Obs","4":"1","5":"53","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2190","16":"2","_rn_":"1517"},{"1":"759","2":"1","3":"Obs","4":"1","5":"53","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2190","16":"1","_rn_":"1518"},{"1":"760","2":"1","3":"Lev+5FU","4":"0","5":"72","6":"0","7":"0","8":"0","9":"6","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2331","16":"2","_rn_":"1519"},{"1":"760","2":"1","3":"Lev+5FU","4":"0","5":"72","6":"0","7":"0","8":"0","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"434","16":"1","_rn_":"1520"},{"1":"761","2":"1","3":"Lev","4":"0","5":"57","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2187","16":"2","_rn_":"1521"},{"1":"761","2":"1","3":"Lev","4":"0","5":"57","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2187","16":"1","_rn_":"1522"},{"1":"762","2":"1","3":"Lev","4":"1","5":"73","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"4","13":"0","14":"0","15":"602","16":"2","_rn_":"1523"},{"1":"762","2":"1","3":"Lev","4":"1","5":"73","6":"0","7":"0","8":"1","9":"1","10":"1","11":"2","12":"4","13":"0","14":"0","15":"157","16":"1","_rn_":"1524"},{"1":"763","2":"1","3":"Lev+5FU","4":"0","5":"58","6":"0","7":"0","8":"1","9":"2","10":"1","11":"1","12":"3","13":"1","14":"0","15":"666","16":"2","_rn_":"1525"},{"1":"763","2":"1","3":"Lev+5FU","4":"0","5":"58","6":"0","7":"0","8":"1","9":"2","10":"1","11":"1","12":"3","13":"1","14":"0","15":"405","16":"1","_rn_":"1526"},{"1":"764","2":"1","3":"Lev+5FU","4":"1","5":"69","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"138","16":"2","_rn_":"1527"},{"1":"764","2":"1","3":"Lev+5FU","4":"1","5":"69","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"86","16":"1","_rn_":"1528"},{"1":"765","2":"1","3":"Obs","4":"0","5":"69","6":"1","7":"0","8":"0","9":"3","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2001","16":"2","_rn_":"1529"},{"1":"765","2":"1","3":"Obs","4":"0","5":"69","6":"1","7":"0","8":"0","9":"3","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2001","16":"1","_rn_":"1530"},{"1":"766","2":"1","3":"Lev+5FU","4":"0","5":"47","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"887","16":"2","_rn_":"1531"},{"1":"766","2":"1","3":"Lev+5FU","4":"0","5":"47","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"0","14":"1","15":"554","16":"1","_rn_":"1532"},{"1":"767","2":"1","3":"Lev","4":"0","5":"80","6":"0","7":"1","8":"0","9":"2","10":"1","11":"1","12":"2","13":"0","14":"0","15":"1207","16":"2","_rn_":"1533"},{"1":"767","2":"1","3":"Lev","4":"0","5":"80","6":"0","7":"1","8":"0","9":"2","10":"1","11":"1","12":"2","13":"0","14":"0","15":"189","16":"1","_rn_":"1534"},{"1":"768","2":"1","3":"Lev+5FU","4":"1","5":"67","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1997","16":"2","_rn_":"1535"},{"1":"768","2":"1","3":"Lev+5FU","4":"1","5":"67","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1997","16":"1","_rn_":"1536"},{"1":"769","2":"1","3":"Lev","4":"0","5":"54","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"1864","16":"2","_rn_":"1537"},{"1":"769","2":"1","3":"Lev","4":"0","5":"54","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"1864","16":"1","_rn_":"1538"},{"1":"770","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"1","9":"7","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2422","16":"2","_rn_":"1539"},{"1":"770","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"1","9":"7","10":"0","11":"3","12":"3","13":"0","14":"1","15":"2422","16":"1","_rn_":"1540"},{"1":"771","2":"1","3":"Lev","4":"0","5":"65","6":"1","7":"0","8":"0","9":"NA","10":"1","11":"3","12":"3","13":"1","14":"1","15":"444","16":"2","_rn_":"1541"},{"1":"771","2":"1","3":"Lev","4":"0","5":"65","6":"1","7":"0","8":"0","9":"NA","10":"1","11":"3","12":"3","13":"1","14":"1","15":"271","16":"1","_rn_":"1542"},{"1":"772","2":"1","3":"Lev+5FU","4":"0","5":"65","6":"0","7":"1","8":"1","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2375","16":"2","_rn_":"1543"},{"1":"772","2":"1","3":"Lev+5FU","4":"0","5":"65","6":"0","7":"1","8":"1","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2375","16":"1","_rn_":"1544"},{"1":"773","2":"1","3":"Obs","4":"0","5":"48","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"718","16":"2","_rn_":"1545"},{"1":"773","2":"1","3":"Obs","4":"0","5":"48","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"337","16":"1","_rn_":"1546"},{"1":"774","2":"1","3":"Obs","4":"1","5":"52","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2204","16":"2","_rn_":"1547"},{"1":"774","2":"1","3":"Obs","4":"1","5":"52","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2204","16":"1","_rn_":"1548"},{"1":"775","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"1","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2120","16":"2","_rn_":"1549"},{"1":"775","2":"1","3":"Obs","4":"1","5":"67","6":"0","7":"0","8":"1","9":"1","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2120","16":"1","_rn_":"1550"},{"1":"776","2":"1","3":"Lev","4":"0","5":"70","6":"0","7":"1","8":"1","9":"5","10":"1","11":"1","12":"3","13":"0","14":"1","15":"766","16":"2","_rn_":"1551"},{"1":"776","2":"1","3":"Lev","4":"0","5":"70","6":"0","7":"1","8":"1","9":"5","10":"1","11":"1","12":"3","13":"0","14":"1","15":"294","16":"1","_rn_":"1552"},{"1":"777","2":"1","3":"Lev","4":"0","5":"51","6":"1","7":"0","8":"1","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"366","16":"2","_rn_":"1553"},{"1":"777","2":"1","3":"Lev","4":"0","5":"51","6":"1","7":"0","8":"1","9":"6","10":"1","11":"3","12":"3","13":"0","14":"1","15":"333","16":"1","_rn_":"1554"},{"1":"778","2":"1","3":"Lev+5FU","4":"0","5":"32","6":"0","7":"0","8":"0","9":"14","10":"1","11":"3","12":"2","13":"0","14":"1","15":"1752","16":"2","_rn_":"1555"},{"1":"778","2":"1","3":"Lev+5FU","4":"0","5":"32","6":"0","7":"0","8":"0","9":"14","10":"1","11":"3","12":"2","13":"0","14":"1","15":"8","16":"1","_rn_":"1556"},{"1":"779","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"1","9":"7","10":"0","11":"3","12":"3","13":"1","14":"1","15":"2183","16":"2","_rn_":"1557"},{"1":"779","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"1","9":"7","10":"0","11":"3","12":"3","13":"1","14":"1","15":"2183","16":"1","_rn_":"1558"},{"1":"780","2":"1","3":"Obs","4":"0","5":"81","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1902","16":"2","_rn_":"1559"},{"1":"780","2":"1","3":"Obs","4":"0","5":"81","6":"0","7":"0","8":"1","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1902","16":"1","_rn_":"1560"},{"1":"781","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"4","13":"0","14":"1","15":"259","16":"2","_rn_":"1561"},{"1":"781","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"4","13":"0","14":"1","15":"108","16":"1","_rn_":"1562"},{"1":"782","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"0","7":"1","8":"1","9":"4","10":"1","11":"3","12":"3","13":"1","14":"0","15":"609","16":"2","_rn_":"1563"},{"1":"782","2":"1","3":"Lev+5FU","4":"0","5":"60","6":"0","7":"1","8":"1","9":"4","10":"1","11":"3","12":"3","13":"1","14":"0","15":"328","16":"1","_rn_":"1564"},{"1":"783","2":"1","3":"Obs","4":"0","5":"81","6":"1","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"832","16":"2","_rn_":"1565"},{"1":"783","2":"1","3":"Obs","4":"0","5":"81","6":"1","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"382","16":"1","_rn_":"1566"},{"1":"784","2":"1","3":"Obs","4":"1","5":"66","6":"1","7":"0","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"164","16":"2","_rn_":"1567"},{"1":"784","2":"1","3":"Obs","4":"1","5":"66","6":"1","7":"0","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"109","16":"1","_rn_":"1568"},{"1":"785","2":"1","3":"Lev","4":"1","5":"78","6":"0","7":"0","8":"1","9":"2","10":"0","11":"3","12":"3","13":"1","14":"0","15":"1828","16":"2","_rn_":"1569"},{"1":"785","2":"1","3":"Lev","4":"1","5":"78","6":"0","7":"0","8":"1","9":"2","10":"0","11":"3","12":"3","13":"1","14":"0","15":"1828","16":"1","_rn_":"1570"},{"1":"786","2":"1","3":"Lev","4":"0","5":"46","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2147","16":"2","_rn_":"1571"},{"1":"786","2":"1","3":"Lev","4":"0","5":"46","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2147","16":"1","_rn_":"1572"},{"1":"787","2":"1","3":"Obs","4":"0","5":"57","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"2","12":"3","13":"0","14":"1","15":"201","16":"2","_rn_":"1573"},{"1":"787","2":"1","3":"Obs","4":"0","5":"57","6":"0","7":"0","8":"0","9":"NA","10":"1","11":"2","12":"3","13":"0","14":"1","15":"106","16":"1","_rn_":"1574"},{"1":"788","2":"1","3":"Lev+5FU","4":"0","5":"57","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2221","16":"2","_rn_":"1575"},{"1":"788","2":"1","3":"Lev+5FU","4":"0","5":"57","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"1","13":"0","14":"0","15":"2221","16":"1","_rn_":"1576"},{"1":"789","2":"1","3":"Lev+5FU","4":"0","5":"67","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"503","16":"2","_rn_":"1577"},{"1":"789","2":"1","3":"Lev+5FU","4":"0","5":"67","6":"0","7":"0","8":"0","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"296","16":"1","_rn_":"1578"},{"1":"790","2":"1","3":"Lev","4":"1","5":"68","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"376","16":"2","_rn_":"1579"},{"1":"790","2":"1","3":"Lev","4":"1","5":"68","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"230","16":"1","_rn_":"1580"},{"1":"791","2":"1","3":"Lev+5FU","4":"0","5":"38","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"811","16":"2","_rn_":"1581"},{"1":"791","2":"1","3":"Lev+5FU","4":"0","5":"38","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"466","16":"1","_rn_":"1582"},{"1":"792","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1985","16":"2","_rn_":"1583"},{"1":"792","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1985","16":"1","_rn_":"1584"},{"1":"793","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2076","16":"2","_rn_":"1585"},{"1":"793","2":"1","3":"Obs","4":"1","5":"66","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2076","16":"1","_rn_":"1586"},{"1":"794","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1154","16":"2","_rn_":"1587"},{"1":"794","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"565","16":"1","_rn_":"1588"},{"1":"795","2":"1","3":"Lev+5FU","4":"1","5":"72","6":"0","7":"0","8":"0","9":"5","10":"1","11":"2","12":"2","13":"0","14":"1","15":"844","16":"2","_rn_":"1589"},{"1":"795","2":"1","3":"Lev+5FU","4":"1","5":"72","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"2","13":"0","14":"1","15":"844","16":"1","_rn_":"1590"},{"1":"796","2":"1","3":"Obs","4":"1","5":"61","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"1031","16":"2","_rn_":"1591"},{"1":"796","2":"1","3":"Obs","4":"1","5":"61","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1","12":"3","13":"0","14":"0","15":"577","16":"1","_rn_":"1592"},{"1":"797","2":"1","3":"Lev+5FU","4":"1","5":"46","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1302","16":"2","_rn_":"1593"},{"1":"797","2":"1","3":"Lev+5FU","4":"1","5":"46","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"683","16":"1","_rn_":"1594"},{"1":"798","2":"1","3":"Lev+5FU","4":"0","5":"36","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2169","16":"2","_rn_":"1595"},{"1":"798","2":"1","3":"Lev+5FU","4":"0","5":"36","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2169","16":"1","_rn_":"1596"},{"1":"799","2":"1","3":"Obs","4":"0","5":"69","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"1","14":"0","15":"1929","16":"2","_rn_":"1597"},{"1":"799","2":"1","3":"Obs","4":"0","5":"69","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"1","14":"0","15":"1929","16":"1","_rn_":"1598"},{"1":"800","2":"1","3":"Lev+5FU","4":"0","5":"75","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1800","16":"2","_rn_":"1599"},{"1":"800","2":"1","3":"Lev+5FU","4":"0","5":"75","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1800","16":"1","_rn_":"1600"},{"1":"801","2":"1","3":"Lev","4":"0","5":"64","6":"0","7":"0","8":"0","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"355","16":"2","_rn_":"1601"},{"1":"801","2":"1","3":"Lev","4":"0","5":"64","6":"0","7":"0","8":"0","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"85","16":"1","_rn_":"1602"},{"1":"802","2":"1","3":"Lev","4":"1","5":"77","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"669","16":"2","_rn_":"1603"},{"1":"802","2":"1","3":"Lev","4":"1","5":"77","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"1","14":"0","15":"599","16":"1","_rn_":"1604"},{"1":"803","2":"1","3":"Obs","4":"0","5":"51","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"2","13":"0","14":"1","15":"465","16":"2","_rn_":"1605"},{"1":"803","2":"1","3":"Obs","4":"0","5":"51","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"2","13":"0","14":"1","15":"166","16":"1","_rn_":"1606"},{"1":"804","2":"1","3":"Obs","4":"1","5":"36","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2157","16":"2","_rn_":"1607"},{"1":"804","2":"1","3":"Obs","4":"1","5":"36","6":"0","7":"0","8":"0","9":"6","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2157","16":"1","_rn_":"1608"},{"1":"805","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"1","14":"1","15":"929","16":"2","_rn_":"1609"},{"1":"805","2":"1","3":"Obs","4":"1","5":"56","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"1","14":"1","15":"752","16":"1","_rn_":"1610"},{"1":"806","2":"1","3":"Lev","4":"0","5":"63","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2242","16":"2","_rn_":"1611"},{"1":"806","2":"1","3":"Lev","4":"0","5":"63","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"1","14":"0","15":"224","16":"1","_rn_":"1612"},{"1":"807","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2212","16":"2","_rn_":"1613"},{"1":"807","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2067","16":"1","_rn_":"1614"},{"1":"808","2":"1","3":"Lev","4":"1","5":"44","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2148","16":"2","_rn_":"1615"},{"1":"808","2":"1","3":"Lev","4":"1","5":"44","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2148","16":"1","_rn_":"1616"},{"1":"809","2":"1","3":"Lev","4":"1","5":"73","6":"1","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"1","14":"1","15":"171","16":"2","_rn_":"1617"},{"1":"809","2":"1","3":"Lev","4":"1","5":"73","6":"1","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"1","14":"1","15":"35","16":"1","_rn_":"1618"},{"1":"810","2":"1","3":"Lev","4":"1","5":"54","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"4","13":"0","14":"0","15":"629","16":"2","_rn_":"1619"},{"1":"810","2":"1","3":"Lev","4":"1","5":"54","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"4","13":"0","14":"0","15":"366","16":"1","_rn_":"1620"},{"1":"811","2":"1","3":"Lev","4":"1","5":"44","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"2","13":"1","14":"0","15":"1829","16":"2","_rn_":"1621"},{"1":"811","2":"1","3":"Lev","4":"1","5":"44","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"2","13":"1","14":"0","15":"1029","16":"1","_rn_":"1622"},{"1":"812","2":"1","3":"Lev","4":"1","5":"30","6":"0","7":"1","8":"0","9":"9","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1939","16":"2","_rn_":"1623"},{"1":"812","2":"1","3":"Lev","4":"1","5":"30","6":"0","7":"1","8":"0","9":"9","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1939","16":"1","_rn_":"1624"},{"1":"813","2":"1","3":"Lev+5FU","4":"0","5":"65","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"529","16":"2","_rn_":"1625"},{"1":"813","2":"1","3":"Lev+5FU","4":"0","5":"65","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"3","13":"0","14":"1","15":"393","16":"1","_rn_":"1626"},{"1":"814","2":"1","3":"Obs","4":"0","5":"68","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2130","16":"2","_rn_":"1627"},{"1":"814","2":"1","3":"Obs","4":"0","5":"68","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2130","16":"1","_rn_":"1628"},{"1":"815","2":"1","3":"Obs","4":"0","5":"56","6":"0","7":"0","8":"0","9":"2","10":"0","11":"NA","12":"1","13":"0","14":"0","15":"1990","16":"2","_rn_":"1629"},{"1":"815","2":"1","3":"Obs","4":"0","5":"56","6":"0","7":"0","8":"0","9":"2","10":"0","11":"NA","12":"1","13":"0","14":"0","15":"1990","16":"1","_rn_":"1630"},{"1":"816","2":"1","3":"Obs","4":"1","5":"62","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"587","16":"2","_rn_":"1631"},{"1":"816","2":"1","3":"Obs","4":"1","5":"62","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"286","16":"1","_rn_":"1632"},{"1":"817","2":"1","3":"Lev","4":"0","5":"36","6":"0","7":"0","8":"0","9":"7","10":"1","11":"1","12":"2","13":"0","14":"1","15":"1145","16":"2","_rn_":"1633"},{"1":"817","2":"1","3":"Lev","4":"0","5":"36","6":"0","7":"0","8":"0","9":"7","10":"1","11":"1","12":"2","13":"0","14":"1","15":"482","16":"1","_rn_":"1634"},{"1":"818","2":"1","3":"Lev+5FU","4":"1","5":"57","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2162","16":"2","_rn_":"1635"},{"1":"818","2":"1","3":"Lev+5FU","4":"1","5":"57","6":"0","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2162","16":"1","_rn_":"1636"},{"1":"819","2":"1","3":"Lev+5FU","4":"1","5":"31","6":"1","7":"0","8":"0","9":"NA","10":"1","11":"1","12":"3","13":"1","14":"1","15":"643","16":"2","_rn_":"1637"},{"1":"819","2":"1","3":"Lev+5FU","4":"1","5":"31","6":"1","7":"0","8":"0","9":"NA","10":"1","11":"1","12":"3","13":"1","14":"1","15":"134","16":"1","_rn_":"1638"},{"1":"820","2":"1","3":"Lev","4":"1","5":"39","6":"0","7":"0","8":"0","9":"11","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2129","16":"2","_rn_":"1639"},{"1":"820","2":"1","3":"Lev","4":"1","5":"39","6":"0","7":"0","8":"0","9":"11","10":"1","11":"2","12":"3","13":"0","14":"1","15":"429","16":"1","_rn_":"1640"},{"1":"821","2":"1","3":"Obs","4":"1","5":"53","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1437","16":"2","_rn_":"1641"},{"1":"821","2":"1","3":"Obs","4":"1","5":"53","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"401","16":"1","_rn_":"1642"},{"1":"822","2":"1","3":"Lev","4":"1","5":"60","6":"1","7":"0","8":"0","9":"14","10":"1","11":"2","12":"4","13":"1","14":"1","15":"512","16":"2","_rn_":"1643"},{"1":"822","2":"1","3":"Lev","4":"1","5":"60","6":"1","7":"0","8":"0","9":"14","10":"1","11":"2","12":"4","13":"1","14":"1","15":"300","16":"1","_rn_":"1644"},{"1":"823","2":"1","3":"Obs","4":"0","5":"65","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2008","16":"2","_rn_":"1645"},{"1":"823","2":"1","3":"Obs","4":"0","5":"65","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2008","16":"1","_rn_":"1646"},{"1":"824","2":"1","3":"Lev+5FU","4":"0","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1814","16":"2","_rn_":"1647"},{"1":"824","2":"1","3":"Lev+5FU","4":"0","5":"61","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1814","16":"1","_rn_":"1648"},{"1":"825","2":"1","3":"Lev","4":"0","5":"77","6":"1","7":"0","8":"1","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2161","16":"2","_rn_":"1649"},{"1":"825","2":"1","3":"Lev","4":"0","5":"77","6":"1","7":"0","8":"1","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2161","16":"1","_rn_":"1650"},{"1":"826","2":"1","3":"Obs","4":"0","5":"48","6":"1","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"506","16":"2","_rn_":"1651"},{"1":"826","2":"1","3":"Obs","4":"0","5":"48","6":"1","7":"0","8":"0","9":"5","10":"1","11":"2","12":"3","13":"1","14":"1","15":"188","16":"1","_rn_":"1652"},{"1":"827","2":"1","3":"Obs","4":"1","5":"77","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"1","14":"0","15":"1482","16":"2","_rn_":"1653"},{"1":"827","2":"1","3":"Obs","4":"1","5":"77","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"1","14":"0","15":"712","16":"1","_rn_":"1654"},{"1":"828","2":"1","3":"Lev","4":"1","5":"69","6":"0","7":"0","8":"0","9":"10","10":"0","11":"3","12":"3","13":"0","14":"1","15":"1964","16":"2","_rn_":"1655"},{"1":"828","2":"1","3":"Lev","4":"1","5":"69","6":"0","7":"0","8":"0","9":"10","10":"0","11":"3","12":"3","13":"0","14":"1","15":"1964","16":"1","_rn_":"1656"},{"1":"829","2":"1","3":"Lev+5FU","4":"0","5":"36","6":"0","7":"0","8":"0","9":"17","10":"1","11":"3","12":"3","13":"0","14":"1","15":"693","16":"2","_rn_":"1657"},{"1":"829","2":"1","3":"Lev+5FU","4":"0","5":"36","6":"0","7":"0","8":"0","9":"17","10":"1","11":"3","12":"3","13":"0","14":"1","15":"132","16":"1","_rn_":"1658"},{"1":"830","2":"1","3":"Lev+5FU","4":"0","5":"64","6":"0","7":"0","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"592","16":"2","_rn_":"1659"},{"1":"830","2":"1","3":"Lev+5FU","4":"0","5":"64","6":"0","7":"0","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"242","16":"1","_rn_":"1660"},{"1":"831","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2207","16":"2","_rn_":"1661"},{"1":"831","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2207","16":"1","_rn_":"1662"},{"1":"832","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2181","16":"2","_rn_":"1663"},{"1":"832","2":"1","3":"Lev+5FU","4":"0","5":"74","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2181","16":"1","_rn_":"1664"},{"1":"833","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"9","10":"1","11":"3","12":"3","13":"0","14":"1","15":"696","16":"2","_rn_":"1665"},{"1":"833","2":"1","3":"Lev+5FU","4":"1","5":"63","6":"0","7":"0","8":"0","9":"9","10":"1","11":"3","12":"3","13":"0","14":"1","15":"466","16":"1","_rn_":"1666"},{"1":"834","2":"1","3":"Lev","4":"0","5":"52","6":"0","7":"0","8":"0","9":"10","10":"1","11":"3","12":"3","13":"0","14":"1","15":"257","16":"2","_rn_":"1667"},{"1":"834","2":"1","3":"Lev","4":"0","5":"52","6":"0","7":"0","8":"0","9":"10","10":"1","11":"3","12":"3","13":"0","14":"1","15":"145","16":"1","_rn_":"1668"},{"1":"835","2":"1","3":"Lev","4":"0","5":"54","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"2171","16":"2","_rn_":"1669"},{"1":"835","2":"1","3":"Lev","4":"0","5":"54","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"1","14":"0","15":"1551","16":"1","_rn_":"1670"},{"1":"836","2":"1","3":"Lev+5FU","4":"0","5":"54","6":"1","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2209","16":"2","_rn_":"1671"},{"1":"836","2":"1","3":"Lev+5FU","4":"0","5":"54","6":"1","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2209","16":"1","_rn_":"1672"},{"1":"837","2":"1","3":"Lev","4":"0","5":"41","6":"1","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"1","14":"0","15":"1122","16":"2","_rn_":"1673"},{"1":"837","2":"1","3":"Lev","4":"0","5":"41","6":"1","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"1","14":"0","15":"413","16":"1","_rn_":"1674"},{"1":"838","2":"1","3":"Obs","4":"0","5":"61","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"936","16":"2","_rn_":"1675"},{"1":"838","2":"1","3":"Obs","4":"0","5":"61","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"1","14":"0","15":"659","16":"1","_rn_":"1676"},{"1":"839","2":"1","3":"Lev+5FU","4":"0","5":"34","6":"1","7":"0","8":"0","9":"10","10":"1","11":"3","12":"3","13":"1","14":"1","15":"601","16":"2","_rn_":"1677"},{"1":"839","2":"1","3":"Lev+5FU","4":"0","5":"34","6":"1","7":"0","8":"0","9":"10","10":"1","11":"3","12":"3","13":"1","14":"1","15":"160","16":"1","_rn_":"1678"},{"1":"840","2":"1","3":"Obs","4":"0","5":"59","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2265","16":"2","_rn_":"1679"},{"1":"840","2":"1","3":"Obs","4":"0","5":"59","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"2036","16":"1","_rn_":"1680"},{"1":"841","2":"1","3":"Lev+5FU","4":"0","5":"57","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2198","16":"2","_rn_":"1681"},{"1":"841","2":"1","3":"Lev+5FU","4":"0","5":"57","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2198","16":"1","_rn_":"1682"},{"1":"842","2":"1","3":"Obs","4":"0","5":"39","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"2","13":"1","14":"1","15":"275","16":"2","_rn_":"1683"},{"1":"842","2":"1","3":"Obs","4":"0","5":"39","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"2","13":"1","14":"1","15":"173","16":"1","_rn_":"1684"},{"1":"843","2":"1","3":"Obs","4":"1","5":"74","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"0","14":"0","15":"1195","16":"2","_rn_":"1685"},{"1":"843","2":"1","3":"Obs","4":"1","5":"74","6":"0","7":"0","8":"0","9":"3","10":"1","11":"3","12":"3","13":"0","14":"0","15":"730","16":"1","_rn_":"1686"},{"1":"844","2":"1","3":"Lev","4":"1","5":"45","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2099","16":"2","_rn_":"1687"},{"1":"844","2":"1","3":"Lev","4":"1","5":"45","6":"1","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2099","16":"1","_rn_":"1688"},{"1":"845","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2165","16":"2","_rn_":"1689"},{"1":"845","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2165","16":"1","_rn_":"1690"},{"1":"846","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2212","16":"2","_rn_":"1691"},{"1":"846","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2212","16":"1","_rn_":"1692"},{"1":"847","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"355","16":"2","_rn_":"1693"},{"1":"847","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"355","16":"1","_rn_":"1694"},{"1":"848","2":"1","3":"Obs","4":"0","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"2","13":"0","14":"0","15":"2097","16":"2","_rn_":"1695"},{"1":"848","2":"1","3":"Obs","4":"0","5":"76","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"2","13":"0","14":"0","15":"2097","16":"1","_rn_":"1696"},{"1":"849","2":"1","3":"Lev","4":"0","5":"79","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"56","16":"2","_rn_":"1697"},{"1":"849","2":"1","3":"Lev","4":"0","5":"79","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"56","16":"1","_rn_":"1698"},{"1":"850","2":"1","3":"Lev","4":"1","5":"47","6":"1","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"589","16":"2","_rn_":"1699"},{"1":"850","2":"1","3":"Lev","4":"1","5":"47","6":"1","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"386","16":"1","_rn_":"1700"},{"1":"851","2":"1","3":"Obs","4":"1","5":"60","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"510","16":"2","_rn_":"1701"},{"1":"851","2":"1","3":"Obs","4":"1","5":"60","6":"0","7":"0","8":"0","9":"9","10":"1","11":"2","12":"3","13":"0","14":"1","15":"378","16":"1","_rn_":"1702"},{"1":"852","2":"1","3":"Lev","4":"0","5":"62","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2250","16":"2","_rn_":"1703"},{"1":"852","2":"1","3":"Lev","4":"0","5":"62","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2250","16":"1","_rn_":"1704"},{"1":"853","2":"1","3":"Obs","4":"1","5":"18","6":"1","7":"0","8":"1","9":"4","10":"1","11":"3","12":"2","13":"0","14":"0","15":"612","16":"2","_rn_":"1705"},{"1":"853","2":"1","3":"Obs","4":"1","5":"18","6":"1","7":"0","8":"1","9":"4","10":"1","11":"3","12":"2","13":"0","14":"0","15":"223","16":"1","_rn_":"1706"},{"1":"854","2":"1","3":"Lev","4":"0","5":"75","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2284","16":"2","_rn_":"1707"},{"1":"854","2":"1","3":"Lev","4":"0","5":"75","6":"0","7":"0","8":"0","9":"5","10":"0","11":"2","12":"3","13":"0","14":"1","15":"2284","16":"1","_rn_":"1708"},{"1":"855","2":"1","3":"Lev","4":"0","5":"56","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"0","14":"0","15":"1992","16":"2","_rn_":"1709"},{"1":"855","2":"1","3":"Lev","4":"0","5":"56","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"0","14":"0","15":"1992","16":"1","_rn_":"1710"},{"1":"856","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"1","7":"0","8":"0","9":"5","10":"1","11":"2","12":"2","13":"0","14":"1","15":"251","16":"2","_rn_":"1711"},{"1":"856","2":"1","3":"Lev+5FU","4":"1","5":"70","6":"1","7":"0","8":"0","9":"5","10":"1","11":"2","12":"2","13":"0","14":"1","15":"218","16":"1","_rn_":"1712"},{"1":"857","2":"1","3":"Lev+5FU","4":"0","5":"54","6":"0","7":"0","8":"0","9":"3","10":"0","11":"NA","12":"2","13":"0","14":"0","15":"2070","16":"2","_rn_":"1713"},{"1":"857","2":"1","3":"Lev+5FU","4":"0","5":"54","6":"0","7":"0","8":"0","9":"3","10":"0","11":"NA","12":"2","13":"0","14":"0","15":"2070","16":"1","_rn_":"1714"},{"1":"858","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1209","16":"2","_rn_":"1715"},{"1":"858","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"774","16":"1","_rn_":"1716"},{"1":"859","2":"1","3":"Lev","4":"0","5":"63","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2122","16":"2","_rn_":"1717"},{"1":"859","2":"1","3":"Lev","4":"0","5":"63","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2122","16":"1","_rn_":"1718"},{"1":"860","2":"1","3":"Lev","4":"0","5":"52","6":"1","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2111","16":"2","_rn_":"1719"},{"1":"860","2":"1","3":"Lev","4":"0","5":"52","6":"1","7":"0","8":"0","9":"2","10":"0","11":"1","12":"3","13":"0","14":"0","15":"2111","16":"1","_rn_":"1720"},{"1":"861","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"1","9":"11","10":"1","11":"2","12":"3","13":"1","14":"1","15":"274","16":"2","_rn_":"1721"},{"1":"861","2":"1","3":"Lev+5FU","4":"0","5":"71","6":"0","7":"0","8":"1","9":"11","10":"1","11":"2","12":"3","13":"1","14":"1","15":"198","16":"1","_rn_":"1722"},{"1":"862","2":"1","3":"Lev+5FU","4":"0","5":"54","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"1","14":"0","15":"1306","16":"2","_rn_":"1723"},{"1":"862","2":"1","3":"Lev+5FU","4":"0","5":"54","6":"0","7":"0","8":"0","9":"1","10":"1","11":"1","12":"3","13":"1","14":"0","15":"1032","16":"1","_rn_":"1724"},{"1":"863","2":"1","3":"Lev","4":"0","5":"27","6":"0","7":"0","8":"0","9":"1","10":"1","11":"3","12":"2","13":"0","14":"0","15":"1325","16":"2","_rn_":"1725"},{"1":"863","2":"1","3":"Lev","4":"0","5":"27","6":"0","7":"0","8":"0","9":"1","10":"1","11":"3","12":"2","13":"0","14":"0","15":"751","16":"1","_rn_":"1726"},{"1":"864","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"1","9":"10","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1968","16":"2","_rn_":"1727"},{"1":"864","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"1","9":"10","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1968","16":"1","_rn_":"1728"},{"1":"865","2":"1","3":"Obs","4":"0","5":"49","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"753","16":"2","_rn_":"1729"},{"1":"865","2":"1","3":"Obs","4":"0","5":"49","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"131","16":"1","_rn_":"1730"},{"1":"866","2":"1","3":"Obs","4":"1","5":"61","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"4","13":"0","14":"0","15":"760","16":"2","_rn_":"1731"},{"1":"866","2":"1","3":"Obs","4":"1","5":"61","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"4","13":"0","14":"0","15":"271","16":"1","_rn_":"1732"},{"1":"867","2":"1","3":"Lev+5FU","4":"1","5":"40","6":"0","7":"0","8":"0","9":"16","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1861","16":"2","_rn_":"1733"},{"1":"867","2":"1","3":"Lev+5FU","4":"1","5":"40","6":"0","7":"0","8":"0","9":"16","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1861","16":"1","_rn_":"1734"},{"1":"868","2":"1","3":"Lev+5FU","4":"1","5":"38","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"1138","16":"2","_rn_":"1735"},{"1":"868","2":"1","3":"Lev+5FU","4":"1","5":"38","6":"0","7":"0","8":"0","9":"3","10":"1","11":"1","12":"3","13":"0","14":"0","15":"616","16":"1","_rn_":"1736"},{"1":"869","2":"1","3":"Obs","4":"0","5":"56","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2167","16":"2","_rn_":"1737"},{"1":"869","2":"1","3":"Obs","4":"0","5":"56","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2167","16":"1","_rn_":"1738"},{"1":"870","2":"1","3":"Lev+5FU","4":"1","5":"79","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1944","16":"2","_rn_":"1739"},{"1":"870","2":"1","3":"Lev+5FU","4":"1","5":"79","6":"1","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1743","16":"1","_rn_":"1740"},{"1":"871","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"13","10":"1","11":"3","12":"3","13":"0","14":"1","15":"372","16":"2","_rn_":"1741"},{"1":"871","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"13","10":"1","11":"3","12":"3","13":"0","14":"1","15":"85","16":"1","_rn_":"1742"},{"1":"872","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"1","13":"1","14":"0","15":"1792","16":"2","_rn_":"1743"},{"1":"872","2":"1","3":"Obs","4":"0","5":"59","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"1","13":"1","14":"0","15":"1792","16":"1","_rn_":"1744"},{"1":"873","2":"1","3":"Lev","4":"1","5":"36","6":"0","7":"0","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"986","16":"2","_rn_":"1745"},{"1":"873","2":"1","3":"Lev","4":"1","5":"36","6":"0","7":"0","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"458","16":"1","_rn_":"1746"},{"1":"874","2":"1","3":"Lev+5FU","4":"0","5":"63","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2378","16":"2","_rn_":"1747"},{"1":"874","2":"1","3":"Lev+5FU","4":"0","5":"63","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2378","16":"1","_rn_":"1748"},{"1":"875","2":"1","3":"Obs","4":"1","5":"27","6":"0","7":"1","8":"1","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"390","16":"2","_rn_":"1749"},{"1":"875","2":"1","3":"Obs","4":"1","5":"27","6":"0","7":"1","8":"1","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"334","16":"1","_rn_":"1750"},{"1":"876","2":"1","3":"Lev","4":"0","5":"66","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"2","13":"1","14":"0","15":"642","16":"2","_rn_":"1751"},{"1":"876","2":"1","3":"Lev","4":"0","5":"66","6":"0","7":"0","8":"1","9":"2","10":"1","11":"2","12":"2","13":"1","14":"0","15":"356","16":"1","_rn_":"1752"},{"1":"877","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2345","16":"2","_rn_":"1753"},{"1":"877","2":"1","3":"Lev","4":"1","5":"63","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1052","16":"1","_rn_":"1754"},{"1":"878","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"0","14":"0","15":"2254","16":"2","_rn_":"1755"},{"1":"878","2":"1","3":"Lev","4":"1","5":"64","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"2","13":"0","14":"0","15":"1114","16":"1","_rn_":"1756"},{"1":"879","2":"1","3":"Obs","4":"0","5":"78","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2118","16":"2","_rn_":"1757"},{"1":"879","2":"1","3":"Obs","4":"0","5":"78","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2118","16":"1","_rn_":"1758"},{"1":"880","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"1","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1831","16":"2","_rn_":"1759"},{"1":"880","2":"1","3":"Lev+5FU","4":"0","5":"66","6":"1","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1831","16":"1","_rn_":"1760"},{"1":"881","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"0","9":"3","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2167","16":"2","_rn_":"1761"},{"1":"881","2":"1","3":"Obs","4":"0","5":"64","6":"0","7":"0","8":"0","9":"3","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2167","16":"1","_rn_":"1762"},{"1":"882","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1198","16":"2","_rn_":"1763"},{"1":"882","2":"1","3":"Obs","4":"1","5":"68","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1198","16":"1","_rn_":"1764"},{"1":"883","2":"1","3":"Lev+5FU","4":"1","5":"35","6":"0","7":"0","8":"1","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2050","16":"2","_rn_":"1765"},{"1":"883","2":"1","3":"Lev+5FU","4":"1","5":"35","6":"0","7":"0","8":"1","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2050","16":"1","_rn_":"1766"},{"1":"884","2":"1","3":"Lev+5FU","4":"1","5":"64","6":"0","7":"0","8":"1","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"271","16":"2","_rn_":"1767"},{"1":"884","2":"1","3":"Lev+5FU","4":"1","5":"64","6":"0","7":"0","8":"1","9":"2","10":"1","11":"3","12":"3","13":"0","14":"0","15":"116","16":"1","_rn_":"1768"},{"1":"885","2":"1","3":"Lev","4":"0","5":"60","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"2","13":"1","14":"0","15":"2138","16":"2","_rn_":"1769"},{"1":"885","2":"1","3":"Lev","4":"0","5":"60","6":"0","7":"0","8":"0","9":"2","10":"1","11":"2","12":"2","13":"1","14":"0","15":"181","16":"1","_rn_":"1770"},{"1":"886","2":"1","3":"Obs","4":"0","5":"55","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1891","16":"2","_rn_":"1771"},{"1":"886","2":"1","3":"Obs","4":"0","5":"55","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1891","16":"1","_rn_":"1772"},{"1":"887","2":"1","3":"Obs","4":"1","5":"39","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1313","16":"2","_rn_":"1773"},{"1":"887","2":"1","3":"Obs","4":"1","5":"39","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"344","16":"1","_rn_":"1774"},{"1":"888","2":"1","3":"Lev+5FU","4":"1","5":"67","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"1853","16":"2","_rn_":"1775"},{"1":"888","2":"1","3":"Lev+5FU","4":"1","5":"67","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"1","14":"0","15":"1853","16":"1","_rn_":"1776"},{"1":"889","2":"1","3":"Lev","4":"1","5":"55","6":"1","7":"0","8":"0","9":"3","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2130","16":"2","_rn_":"1777"},{"1":"889","2":"1","3":"Lev","4":"1","5":"55","6":"1","7":"0","8":"0","9":"3","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2130","16":"1","_rn_":"1778"},{"1":"890","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"150","16":"2","_rn_":"1779"},{"1":"890","2":"1","3":"Lev","4":"1","5":"61","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"0","14":"1","15":"100","16":"1","_rn_":"1780"},{"1":"891","2":"1","3":"Lev","4":"0","5":"67","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"759","16":"2","_rn_":"1781"},{"1":"891","2":"1","3":"Lev","4":"0","5":"67","6":"0","7":"0","8":"0","9":"6","10":"1","11":"2","12":"3","13":"0","14":"1","15":"91","16":"1","_rn_":"1782"},{"1":"892","2":"1","3":"Lev","4":"1","5":"62","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2100","16":"2","_rn_":"1783"},{"1":"892","2":"1","3":"Lev","4":"1","5":"62","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"1","14":"0","15":"2100","16":"1","_rn_":"1784"},{"1":"893","2":"1","3":"Lev+5FU","4":"0","5":"52","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2101","16":"2","_rn_":"1785"},{"1":"893","2":"1","3":"Lev+5FU","4":"0","5":"52","6":"0","7":"0","8":"0","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"602","16":"1","_rn_":"1786"},{"1":"894","2":"1","3":"Lev","4":"1","5":"80","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"942","16":"2","_rn_":"1787"},{"1":"894","2":"1","3":"Lev","4":"1","5":"80","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"883","16":"1","_rn_":"1788"},{"1":"895","2":"1","3":"Obs","4":"0","5":"51","6":"0","7":"0","8":"0","9":"11","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1823","16":"2","_rn_":"1789"},{"1":"895","2":"1","3":"Obs","4":"0","5":"51","6":"0","7":"0","8":"0","9":"11","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1823","16":"1","_rn_":"1790"},{"1":"896","2":"1","3":"Obs","4":"1","5":"74","6":"0","7":"0","8":"0","9":"1","10":"1","11":"3","12":"1","13":"1","14":"0","15":"665","16":"2","_rn_":"1791"},{"1":"896","2":"1","3":"Obs","4":"1","5":"74","6":"0","7":"0","8":"0","9":"1","10":"0","11":"3","12":"1","13":"1","14":"0","15":"665","16":"1","_rn_":"1792"},{"1":"897","2":"1","3":"Obs","4":"1","5":"70","6":"1","7":"1","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1656","16":"2","_rn_":"1793"},{"1":"897","2":"1","3":"Obs","4":"1","5":"70","6":"1","7":"1","8":"1","9":"4","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1057","16":"1","_rn_":"1794"},{"1":"898","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1969","16":"2","_rn_":"1795"},{"1":"898","2":"1","3":"Lev+5FU","4":"1","5":"73","6":"0","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1969","16":"1","_rn_":"1796"},{"1":"899","2":"1","3":"Lev","4":"0","5":"56","6":"0","7":"0","8":"0","9":"3","10":"0","11":"3","12":"4","13":"0","14":"0","15":"2190","16":"2","_rn_":"1797"},{"1":"899","2":"1","3":"Lev","4":"0","5":"56","6":"0","7":"0","8":"0","9":"3","10":"0","11":"3","12":"4","13":"0","14":"0","15":"2190","16":"1","_rn_":"1798"},{"1":"900","2":"1","3":"Obs","4":"0","5":"70","6":"1","7":"0","8":"0","9":"15","10":"1","11":"2","12":"3","13":"0","14":"1","15":"576","16":"2","_rn_":"1799"},{"1":"900","2":"1","3":"Obs","4":"0","5":"70","6":"1","7":"0","8":"0","9":"15","10":"1","11":"2","12":"3","13":"0","14":"1","15":"230","16":"1","_rn_":"1800"},{"1":"901","2":"1","3":"Lev","4":"1","5":"68","6":"0","7":"0","8":"0","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1103","16":"2","_rn_":"1801"},{"1":"901","2":"1","3":"Lev","4":"1","5":"68","6":"0","7":"0","8":"0","9":"12","10":"0","11":"2","12":"3","13":"0","14":"1","15":"1103","16":"1","_rn_":"1802"},{"1":"902","2":"1","3":"Lev","4":"1","5":"51","6":"0","7":"0","8":"1","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"1046","16":"2","_rn_":"1803"},{"1":"902","2":"1","3":"Lev","4":"1","5":"51","6":"0","7":"0","8":"1","9":"2","10":"1","11":"3","12":"3","13":"1","14":"0","15":"513","16":"1","_rn_":"1804"},{"1":"903","2":"1","3":"Lev+5FU","4":"0","5":"56","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1929","16":"2","_rn_":"1805"},{"1":"903","2":"1","3":"Lev+5FU","4":"0","5":"56","6":"0","7":"0","8":"0","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1929","16":"1","_rn_":"1806"},{"1":"904","2":"1","3":"Obs","4":"1","5":"71","6":"0","7":"0","8":"0","9":"10","10":"1","11":"1","12":"3","13":"0","14":"1","15":"125","16":"2","_rn_":"1807"},{"1":"904","2":"1","3":"Obs","4":"1","5":"71","6":"0","7":"0","8":"0","9":"10","10":"1","11":"1","12":"3","13":"0","14":"1","15":"94","16":"1","_rn_":"1808"},{"1":"905","2":"1","3":"Obs","4":"0","5":"63","6":"0","7":"0","8":"0","9":"2","10":"1","11":"1","12":"3","13":"1","14":"0","15":"187","16":"2","_rn_":"1809"},{"1":"905","2":"1","3":"Obs","4":"0","5":"63","6":"0","7":"0","8":"0","9":"2","10":"1","11":"1","12":"3","13":"1","14":"0","15":"167","16":"1","_rn_":"1810"},{"1":"906","2":"1","3":"Lev","4":"1","5":"82","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"939","16":"2","_rn_":"1811"},{"1":"906","2":"1","3":"Lev","4":"1","5":"82","6":"0","7":"0","8":"0","9":"3","10":"1","11":"2","12":"3","13":"0","14":"0","15":"922","16":"1","_rn_":"1812"},{"1":"907","2":"1","3":"Obs","4":"0","5":"68","6":"0","7":"0","8":"0","9":"12","10":"1","11":"3","12":"3","13":"1","14":"1","15":"887","16":"2","_rn_":"1813"},{"1":"907","2":"1","3":"Obs","4":"0","5":"68","6":"0","7":"0","8":"0","9":"12","10":"0","11":"3","12":"3","13":"1","14":"1","15":"887","16":"1","_rn_":"1814"},{"1":"908","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1803","16":"2","_rn_":"1815"},{"1":"908","2":"1","3":"Obs","4":"0","5":"55","6":"0","7":"0","8":"0","9":"2","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1803","16":"1","_rn_":"1816"},{"1":"909","2":"1","3":"Lev+5FU","4":"1","5":"71","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2018","16":"2","_rn_":"1817"},{"1":"909","2":"1","3":"Lev+5FU","4":"1","5":"71","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2018","16":"1","_rn_":"1818"},{"1":"910","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"1","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1509","16":"2","_rn_":"1819"},{"1":"910","2":"1","3":"Lev","4":"0","5":"68","6":"0","7":"0","8":"1","9":"12","10":"1","11":"2","12":"3","13":"0","14":"1","15":"1275","16":"1","_rn_":"1820"},{"1":"911","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"13","10":"1","11":"2","12":"3","13":"0","14":"1","15":"314","16":"2","_rn_":"1821"},{"1":"911","2":"1","3":"Lev","4":"1","5":"60","6":"0","7":"0","8":"0","9":"13","10":"1","11":"2","12":"3","13":"0","14":"1","15":"274","16":"1","_rn_":"1822"},{"1":"912","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"1","14":"0","15":"1971","16":"2","_rn_":"1823"},{"1":"912","2":"1","3":"Lev","4":"1","5":"72","6":"0","7":"0","8":"0","9":"3","10":"0","11":"1","12":"3","13":"1","14":"0","15":"1971","16":"1","_rn_":"1824"},{"1":"913","2":"1","3":"Lev+5FU","4":"1","5":"69","6":"1","7":"1","8":"1","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1827","16":"2","_rn_":"1825"},{"1":"913","2":"1","3":"Lev+5FU","4":"1","5":"69","6":"1","7":"1","8":"1","9":"3","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1827","16":"1","_rn_":"1826"},{"1":"914","2":"1","3":"Obs","4":"0","5":"46","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"2","13":"0","14":"0","15":"1079","16":"2","_rn_":"1827"},{"1":"914","2":"1","3":"Obs","4":"0","5":"46","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"2","13":"0","14":"0","15":"99","16":"1","_rn_":"1828"},{"1":"915","2":"1","3":"Lev","4":"0","5":"42","6":"0","7":"0","8":"0","9":"6","10":"0","11":"1","12":"3","13":"0","14":"1","15":"2114","16":"2","_rn_":"1829"},{"1":"915","2":"1","3":"Lev","4":"0","5":"42","6":"0","7":"0","8":"0","9":"6","10":"0","11":"1","12":"3","13":"0","14":"1","15":"2114","16":"1","_rn_":"1830"},{"1":"916","2":"1","3":"Obs","4":"0","5":"37","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"1","14":"1","15":"1262","16":"2","_rn_":"1831"},{"1":"916","2":"1","3":"Obs","4":"0","5":"37","6":"0","7":"0","8":"0","9":"8","10":"1","11":"2","12":"3","13":"1","14":"1","15":"438","16":"1","_rn_":"1832"},{"1":"917","2":"1","3":"Obs","4":"0","5":"71","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"259","16":"2","_rn_":"1833"},{"1":"917","2":"1","3":"Obs","4":"0","5":"71","6":"0","7":"0","8":"0","9":"5","10":"1","11":"3","12":"3","13":"0","14":"1","15":"122","16":"1","_rn_":"1834"},{"1":"918","2":"1","3":"Lev","4":"1","5":"50","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"2","13":"0","14":"1","15":"323","16":"2","_rn_":"1835"},{"1":"918","2":"1","3":"Lev","4":"1","5":"50","6":"0","7":"0","8":"0","9":"7","10":"1","11":"2","12":"2","13":"0","14":"1","15":"78","16":"1","_rn_":"1836"},{"1":"919","2":"1","3":"Lev","4":"0","5":"70","6":"1","7":"0","8":"1","9":"1","10":"1","11":"2","12":"2","13":"0","14":"0","15":"678","16":"2","_rn_":"1837"},{"1":"919","2":"1","3":"Lev","4":"0","5":"70","6":"1","7":"0","8":"1","9":"1","10":"1","11":"2","12":"2","13":"0","14":"0","15":"532","16":"1","_rn_":"1838"},{"1":"920","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"1","9":"5","10":"0","11":"2","12":"2","13":"0","14":"1","15":"1827","16":"2","_rn_":"1839"},{"1":"920","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"1","9":"5","10":"0","11":"2","12":"2","13":"0","14":"1","15":"1827","16":"1","_rn_":"1840"},{"1":"921","2":"1","3":"Lev","4":"1","5":"58","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"4","13":"0","14":"0","15":"1399","16":"2","_rn_":"1841"},{"1":"921","2":"1","3":"Lev","4":"1","5":"58","6":"1","7":"0","8":"0","9":"3","10":"1","11":"2","12":"4","13":"0","14":"0","15":"476","16":"1","_rn_":"1842"},{"1":"922","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"1022","16":"2","_rn_":"1843"},{"1":"922","2":"1","3":"Lev+5FU","4":"0","5":"70","6":"0","7":"0","8":"0","9":"1","10":"1","11":"2","12":"3","13":"0","14":"0","15":"329","16":"1","_rn_":"1844"},{"1":"923","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"1","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2240","16":"2","_rn_":"1845"},{"1":"923","2":"1","3":"Lev+5FU","4":"1","5":"55","6":"1","7":"0","8":"0","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2240","16":"1","_rn_":"1846"},{"1":"924","2":"1","3":"Obs","4":"1","5":"64","6":"1","7":"0","8":"1","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2158","16":"2","_rn_":"1847"},{"1":"924","2":"1","3":"Obs","4":"1","5":"64","6":"1","7":"0","8":"1","9":"2","10":"0","11":"3","12":"3","13":"0","14":"0","15":"2158","16":"1","_rn_":"1848"},{"1":"925","2":"1","3":"Lev+5FU","4":"1","5":"71","6":"0","7":"0","8":"1","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1875","16":"2","_rn_":"1849"},{"1":"925","2":"1","3":"Lev+5FU","4":"1","5":"71","6":"0","7":"0","8":"1","9":"4","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1875","16":"1","_rn_":"1850"},{"1":"926","2":"1","3":"Lev","4":"0","5":"72","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2154","16":"2","_rn_":"1851"},{"1":"926","2":"1","3":"Lev","4":"0","5":"72","6":"0","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"2154","16":"1","_rn_":"1852"},{"1":"927","2":"1","3":"Lev","4":"1","5":"76","6":"0","7":"0","8":"1","9":"1","10":"1","11":"3","12":"3","13":"0","14":"0","15":"1018","16":"2","_rn_":"1853"},{"1":"927","2":"1","3":"Lev","4":"1","5":"76","6":"0","7":"0","8":"1","9":"1","10":"1","11":"3","12":"3","13":"0","14":"0","15":"851","16":"1","_rn_":"1854"},{"1":"928","2":"1","3":"Lev+5FU","4":"0","5":"48","6":"1","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2072","16":"2","_rn_":"1855"},{"1":"928","2":"1","3":"Lev+5FU","4":"0","5":"48","6":"1","7":"0","8":"0","9":"4","10":"0","11":"2","12":"3","13":"1","14":"1","15":"2072","16":"1","_rn_":"1856"},{"1":"929","2":"1","3":"Lev","4":"0","5":"66","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1820","16":"2","_rn_":"1857"},{"1":"929","2":"1","3":"Lev","4":"0","5":"66","6":"1","7":"0","8":"0","9":"1","10":"0","11":"2","12":"3","13":"0","14":"0","15":"1820","16":"1","_rn_":"1858"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> --- class: center, middle # Linear regression ### Continuous --- # Simple <img src="https://nextjournal.com/data/QmfPuPp4V74FyvTTojMj6ix9T8Skj1ji4GhX5Pr6zK8w4N?filename=linear-regression.png&content-type=image/png" style="display: block; margin: auto;" /> .large[ `$$Y = \beta_0 + \beta_1 X + \epsilon$$` ] - 오차제곱합을 최소로하는 `\(\beta_0, \beta_1\)` 구한다. - `\(Y\)` 정규분포하는 연속변수, `\(X\)` 는 연속, 범주형 다 가능 + `\(X\)` 연속변수일 땐 **상관분석** 과 동일 + `\(X\)` 2범주일 땐 **`t.test` with 등분산** 과 동일 --- ``` ## ## Pearson's product-moment correlation ## ## data: colon$age and colon$nodes ## t = -3.9764, df = 1820, p-value = 7.27e-05 ## alternative hypothesis: true correlation is not equal to 0 ## 95 percent confidence interval: ## -0.13814000 -0.04708427 ## sample estimates: ## cor ## -0.09280617 ``` ``` ## Estimate Std. Error t value Pr(>|t|) ## (Intercept) 5.32723156 0.427552697 12.459824 2.956833e-34 ## age -0.02789555 0.007015264 -3.976408 7.270148e-05 ``` ``` ## Estimate Std. Error t value Pr(>|t|) ## (Intercept) 60.9071356 0.39701148 153.414040 0.000000e+00 ## nodes -0.3087584 0.07764757 -3.976408 7.270148e-05 ``` --- ``` ## ## Two Sample t-test ## ## data: time by sex ## t = -0.3168, df = 1856, p-value = 0.7514 ## alternative hypothesis: true difference in means between group 0 and group 1 is not equal to 0 ## 95 percent confidence interval: ## -100.17776 72.31502 ## sample estimates: ## mean in group 0 mean in group 1 ## 1530.288 1544.219 ``` ``` ## Estimate Std. Error t value Pr(>|t|) ## (Intercept) 1530.28764 31.74127 48.2112869 0.0000000 ## sex 13.93137 43.97537 0.3167993 0.7514315 ``` --- # 3범주 이상? **rx**: 치료법 3개 ``` ## [1] "Obs" "Lev" "Lev+5FU" ``` **더미변수로** 자동으로 바뀐 후 회귀식에 포함. 실제로는 변수 2개가 들어감 ``` ## (Intercept) rxLev rxLev+5FU ## 1853 1 1 0 ## 1854 1 1 0 ## 1855 1 0 1 ## 1856 1 0 1 ## 1857 1 1 0 ## 1858 1 1 0 ``` 둘다 0 이면 **Obs** (reference) --- ``` ## Estimate Std. Error t value Pr(>|t|) ## (Intercept) 1440.6111 37.42375 38.4945678 8.711506e-239 ## rxLev 24.6647 53.13816 0.4641617 6.425864e-01 ## rxLev+5FU 271.0731 53.40179 5.0761048 4.238367e-07 ``` **Obs와 Lev+5FU** 군이 유의한 차이가 있음. **ANOVA** 형태로도 볼 수 있다 (등분산 가정). ``` ## Analysis of Variance Table ## ## Response: time ## Df Sum Sq Mean Sq F value Pr(>F) ## rx 2 27595026 13797513 15.637 1.842e-07 *** ## Residuals 1855 1636737705 882338 ## --- ## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 ``` ANOVA p-value 는 **rx 중 튀는 것이 있는지?** 를 통합평가. --- # Multiple 여러 변수들을 포함 .large[ `$$Y = \beta_0 + \beta_1 X_{1} + \beta_2 X_{2} + \cdots + \epsilon$$` ] - `\(\beta_1\)` 해석: `\(X_2, X_3 \cdots\)` 를 보정한다면, `\(X_1\)` 이 1 증가할 때 `\(Y\)` 가 `\(\beta_1\)` 만큼 증가한다. -- ``` ## Estimate Std. Error t value Pr(>|t|) ## (Intercept) 1401.4334258 116.709129 12.0079160 4.827648e-32 ## sex 32.6748091 43.816406 0.7457209 4.559306e-01 ## age 0.3693375 1.826293 0.2022334 8.397564e-01 ## rxLev 22.9841697 53.205804 0.4319861 6.658017e-01 ## rxLev+5FU 273.0460010 53.495937 5.1040512 3.665397e-07 ``` .large[ 논문용 테이블은 **보정 전후 결과를 같이** 보여주는 것이 대세 ] ---
--- class: center, middle # Logistic regression ### 0/1 --- <img src="https://static.javatpoint.com/tutorial/machine-learning/images/linear-regression-vs-logistic-regression.png" style="display: block; margin: auto;" /> .large[ $$ P(Y = 1) = \frac{\exp{(X)}}{1 + \exp{(X)}}$$ ] --- # Odds Ratio .large[ $$ `\begin{aligned} P(Y = 1) &= \frac{\exp{(\beta_0 + \beta_1 X_1 + \beta_2 X_2 + \cdots)}}{1 + \exp{(\beta_0 + \beta_1 X_1 + \beta_2 X_2 + \cdots)}} \\\\ \ln(\frac{p}{1-p}) &= \beta_0 + \beta_1 X_1 + \beta_2 X_2 + \cdots \end{aligned}` $$ ] -- .large[ `\(\beta_1\)` 해석: `\(X_2, X_3 \cdots\)` 들 보정한다면, `\(X_1\)`이 1 증가할 때, `\(\ln(\frac{p}{1-p})\)` 가 `\(\beta_1\)` 만큼 증가한다. > `\(\frac{p}{1-p}\)` 가 `\(\exp(\beta_1)\)` 배 증가한다. 즉 Odd Ratio = `\(\exp(\beta_1)\)` ] --- ``` ## ## Call: ## glm(formula = status ~ sex + age + rx, family = binomial, data = colon) ## ## Deviance Residuals: ## Min 1Q Median 3Q Max ## -1.3437 -1.2266 -0.9695 1.1204 1.4098 ## ## Coefficients: ## Estimate Std. Error z value Pr(>|z|) ## (Intercept) 0.473577 0.251085 1.886 0.0593 . ## sex -0.070481 0.094215 -0.748 0.4544 ## age -0.004124 0.003927 -1.050 0.2936 ## rxLev -0.036624 0.113707 -0.322 0.7474 ## rxLev+5FU -0.608746 0.115437 -5.273 1.34e-07 *** ## --- ## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 ## ## (Dispersion parameter for binomial family taken to be 1) ## ## Null deviance: 2575.6 on 1857 degrees of freedom ## Residual deviance: 2539.4 on 1853 degrees of freedom ## AIC: 2549.4 ## ## Number of Fisher Scoring iterations: 4 ``` ---
--- # Stepwise selection .large[ - 다변량 포함 기준은 **임상적 중요성 or 단변량 유의성** - Stepwise selection은 임상적 중요성도 무시, 통계학적 논리도 부족 ] --- # Subgroup analysis .large[ **다변량분석보다 더 좋은 증거** ] - 예) 성별 보정 < 성별에 따른 subgroup 분석 .large[ **Interaction 포함한 forest plot** 추천 ] <center> <img src="https://www.researchgate.net/publication/332229730/figure/fig2/AS:744331304521728@1554473820106/Subgroup-analyses-of-the-primary-outcome-The-forest-plot-shows-that-the-difference-in.ppm " width=40%></a> </center> --- class: center, middle # Cox proportional hazard ### Time & Event --- # Time to event data <img src="https://miro.medium.com/max/1440/1*S3lbo8tbgtklE7V-m4EsvQ.jpeg" style="display: block; margin: auto;" /> .large[ 대부분 **Right censored**: XX 일에 사망 or XX 일 까지 생존 ] --- # Time to event 를 하나의 변수로 <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["time"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["status"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["surv"],"name":[3],"type":["Surv[,2]"],"align":["right"]}],"data":[{"1":"1521","2":"1","3":"1521"},{"1":"968","2":"1","3":"968"},{"1":"3087","2":"0","3":"3087+"},{"1":"3087","2":"0","3":"3087+"},{"1":"963","2":"1","3":"963"},{"1":"542","2":"1","3":"542"},{"1":"293","2":"1","3":"293"},{"1":"245","2":"1","3":"245"},{"1":"659","2":"1","3":"659"},{"1":"523","2":"1","3":"523"},{"1":"1767","2":"1","3":"1767"},{"1":"904","2":"1","3":"904"},{"1":"420","2":"1","3":"420"},{"1":"229","2":"1","3":"229"},{"1":"3192","2":"0","3":"3192+"},{"1":"3192","2":"0","3":"3192+"},{"1":"3173","2":"0","3":"3173+"},{"1":"3173","2":"0","3":"3173+"},{"1":"3308","2":"0","3":"3308+"},{"1":"3308","2":"0","3":"3308+"},{"1":"2908","2":"0","3":"2908+"},{"1":"2908","2":"0","3":"2908+"},{"1":"3309","2":"0","3":"3309+"},{"1":"3309","2":"0","3":"3309+"},{"1":"2085","2":"1","3":"2085"},{"1":"1130","2":"1","3":"1130"},{"1":"2910","2":"1","3":"2910"},{"1":"2231","2":"1","3":"2231"},{"1":"2754","2":"0","3":"2754+"},{"1":"2754","2":"0","3":"2754+"},{"1":"3214","2":"0","3":"3214+"},{"1":"1323","2":"1","3":"1323"},{"1":"406","2":"1","3":"406"},{"1":"258","2":"1","3":"258"},{"1":"522","2":"1","3":"522"},{"1":"389","2":"1","3":"389"},{"1":"887","2":"1","3":"887"},{"1":"604","2":"1","3":"604"},{"1":"3329","2":"0","3":"3329+"},{"1":"3329","2":"0","3":"3329+"},{"1":"2789","2":"1","3":"2789"},{"1":"2789","2":"0","3":"2789+"},{"1":"739","2":"1","3":"739"},{"1":"527","2":"1","3":"527"},{"1":"709","2":"1","3":"709"},{"1":"348","2":"1","3":"348"},{"1":"2969","2":"0","3":"2969+"},{"1":"2969","2":"0","3":"2969+"},{"1":"2889","2":"0","3":"2889+"},{"1":"2889","2":"0","3":"2889+"},{"1":"1772","2":"1","3":"1772"},{"1":"1759","2":"1","3":"1759"},{"1":"384","2":"1","3":"384"},{"1":"121","2":"1","3":"121"},{"1":"968","2":"1","3":"968"},{"1":"290","2":"1","3":"290"},{"1":"218","2":"1","3":"218"},{"1":"157","2":"1","3":"157"},{"1":"133","2":"1","3":"133"},{"1":"62","2":"1","3":"62"},{"1":"3238","2":"0","3":"3238+"},{"1":"3238","2":"0","3":"3238+"},{"1":"3019","2":"0","3":"3019+"},{"1":"3019","2":"0","3":"3019+"},{"1":"1745","2":"1","3":"1745"},{"1":"461","2":"1","3":"461"},{"1":"2527","2":"1","3":"2527"},{"1":"1749","2":"1","3":"1749"},{"1":"1387","2":"1","3":"1387"},{"1":"593","2":"1","3":"593"},{"1":"3024","2":"0","3":"3024+"},{"1":"3024","2":"0","3":"3024+"},{"1":"570","2":"1","3":"570"},{"1":"43","2":"1","3":"43"},{"1":"2815","2":"0","3":"2815+"},{"1":"2815","2":"0","3":"2815+"},{"1":"2901","2":"0","3":"2901+"},{"1":"2901","2":"0","3":"2901+"},{"1":"553","2":"1","3":"553"},{"1":"348","2":"1","3":"348"},{"1":"905","2":"1","3":"905"},{"1":"510","2":"1","3":"510"},{"1":"3030","2":"0","3":"3030+"},{"1":"3030","2":"0","3":"3030+"},{"1":"685","2":"1","3":"685"},{"1":"489","2":"1","3":"489"},{"1":"2740","2":"0","3":"2740+"},{"1":"2740","2":"0","3":"2740+"},{"1":"2899","2":"0","3":"2899+"},{"1":"2899","2":"0","3":"2899+"},{"1":"2598","2":"0","3":"2598+"},{"1":"2598","2":"0","3":"2598+"},{"1":"2840","2":"0","3":"2840+"},{"1":"2840","2":"0","3":"2840+"},{"1":"2802","2":"0","3":"2802+"},{"1":"2802","2":"0","3":"2802+"},{"1":"2781","2":"0","3":"2781+"},{"1":"2781","2":"0","3":"2781+"},{"1":"833","2":"1","3":"833"},{"1":"136","2":"1","3":"136"},{"1":"1290","2":"1","3":"1290"},{"1":"632","2":"1","3":"632"},{"1":"1620","2":"1","3":"1620"},{"1":"1233","2":"1","3":"1233"},{"1":"2765","2":"0","3":"2765+"},{"1":"2765","2":"0","3":"2765+"},{"1":"2708","2":"0","3":"2708+"},{"1":"2708","2":"0","3":"2708+"},{"1":"2737","2":"0","3":"2737+"},{"1":"2737","2":"0","3":"2737+"},{"1":"1178","2":"1","3":"1178"},{"1":"352","2":"1","3":"352"},{"1":"2765","2":"0","3":"2765+"},{"1":"250","2":"1","3":"250"},{"1":"2883","2":"0","3":"2883+"},{"1":"2883","2":"0","3":"2883+"},{"1":"2679","2":"0","3":"2679+"},{"1":"2679","2":"0","3":"2679+"},{"1":"2925","2":"0","3":"2925+"},{"1":"2925","2":"0","3":"2925+"},{"1":"472","2":"1","3":"472"},{"1":"176","2":"1","3":"176"},{"1":"2772","2":"0","3":"2772+"},{"1":"2772","2":"0","3":"2772+"},{"1":"474","2":"1","3":"474"},{"1":"173","2":"1","3":"173"},{"1":"2739","2":"0","3":"2739+"},{"1":"2739","2":"0","3":"2739+"},{"1":"365","2":"1","3":"365"},{"1":"72","2":"1","3":"72"},{"1":"2653","2":"0","3":"2653+"},{"1":"2653","2":"0","3":"2653+"},{"1":"2726","2":"0","3":"2726+"},{"1":"2726","2":"0","3":"2726+"},{"1":"774","2":"1","3":"774"},{"1":"435","2":"1","3":"435"},{"1":"3078","2":"0","3":"3078+"},{"1":"3078","2":"0","3":"3078+"},{"1":"2133","2":"1","3":"2133"},{"1":"1236","2":"1","3":"1236"},{"1":"2127","2":"1","3":"2127"},{"1":"1786","2":"1","3":"1786"},{"1":"400","2":"1","3":"400"},{"1":"322","2":"1","3":"322"},{"1":"3185","2":"0","3":"3185+"},{"1":"3185","2":"0","3":"3185+"},{"1":"1237","2":"1","3":"1237"},{"1":"581","2":"1","3":"581"},{"1":"1219","2":"1","3":"1219"},{"1":"891","2":"1","3":"891"},{"1":"3017","2":"0","3":"3017+"},{"1":"3017","2":"0","3":"3017+"},{"1":"806","2":"1","3":"806"},{"1":"505","2":"1","3":"505"},{"1":"2985","2":"0","3":"2985+"},{"1":"2985","2":"0","3":"2985+"},{"1":"2969","2":"0","3":"2969+"},{"1":"1895","2":"1","3":"1895"},{"1":"1995","2":"1","3":"1995"},{"1":"1488","2":"1","3":"1488"},{"1":"2958","2":"0","3":"2958+"},{"1":"2958","2":"0","3":"2958+"},{"1":"1133","2":"1","3":"1133"},{"1":"702","2":"1","3":"702"},{"1":"1548","2":"1","3":"1548"},{"1":"1548","2":"0","3":"1548+"},{"1":"3085","2":"0","3":"3085+"},{"1":"3085","2":"0","3":"3085+"},{"1":"736","2":"1","3":"736"},{"1":"256","2":"1","3":"256"},{"1":"2789","2":"0","3":"2789+"},{"1":"2789","2":"0","3":"2789+"},{"1":"3325","2":"0","3":"3325+"},{"1":"3325","2":"0","3":"3325+"},{"1":"381","2":"1","3":"381"},{"1":"127","2":"1","3":"127"},{"1":"2724","2":"0","3":"2724+"},{"1":"2724","2":"0","3":"2724+"},{"1":"997","2":"1","3":"997"},{"1":"797","2":"1","3":"797"},{"1":"413","2":"1","3":"413"},{"1":"304","2":"1","3":"304"},{"1":"708","2":"1","3":"708"},{"1":"498","2":"1","3":"498"},{"1":"2765","2":"0","3":"2765+"},{"1":"2765","2":"0","3":"2765+"},{"1":"2869","2":"0","3":"2869+"},{"1":"2869","2":"0","3":"2869+"},{"1":"2918","2":"0","3":"2918+"},{"1":"2918","2":"0","3":"2918+"},{"1":"2458","2":"1","3":"2458"},{"1":"2458","2":"0","3":"2458+"},{"1":"459","2":"1","3":"459"},{"1":"185","2":"1","3":"185"},{"1":"2318","2":"1","3":"2318"},{"1":"2318","2":"0","3":"2318+"},{"1":"569","2":"1","3":"569"},{"1":"219","2":"1","3":"219"},{"1":"2077","2":"1","3":"2077"},{"1":"1446","2":"1","3":"1446"},{"1":"1216","2":"1","3":"1216"},{"1":"349","2":"1","3":"349"},{"1":"171","2":"1","3":"171"},{"1":"147","2":"1","3":"147"},{"1":"712","2":"1","3":"712"},{"1":"448","2":"1","3":"448"},{"1":"614","2":"1","3":"614"},{"1":"260","2":"1","3":"260"},{"1":"2849","2":"0","3":"2849+"},{"1":"1057","2":"1","3":"1057"},{"1":"1530","2":"1","3":"1530"},{"1":"835","2":"1","3":"835"},{"1":"402","2":"1","3":"402"},{"1":"204","2":"1","3":"204"},{"1":"1511","2":"1","3":"1511"},{"1":"853","2":"1","3":"853"},{"1":"2828","2":"0","3":"2828+"},{"1":"2828","2":"0","3":"2828+"},{"1":"23","2":"1","3":"23"},{"1":"23","2":"0","3":"23+"},{"1":"2941","2":"0","3":"2941+"},{"1":"2941","2":"0","3":"2941+"},{"1":"755","2":"1","3":"755"},{"1":"548","2":"1","3":"548"},{"1":"2815","2":"0","3":"2815+"},{"1":"2815","2":"0","3":"2815+"},{"1":"761","2":"1","3":"761"},{"1":"185","2":"1","3":"185"},{"1":"1839","2":"1","3":"1839"},{"1":"638","2":"1","3":"638"},{"1":"2351","2":"1","3":"2351"},{"1":"912","2":"1","3":"912"},{"1":"2760","2":"0","3":"2760+"},{"1":"2760","2":"0","3":"2760+"},{"1":"2951","2":"0","3":"2951+"},{"1":"2951","2":"0","3":"2951+"},{"1":"2820","2":"0","3":"2820+"},{"1":"2820","2":"0","3":"2820+"},{"1":"1327","2":"1","3":"1327"},{"1":"593","2":"1","3":"593"},{"1":"2678","2":"0","3":"2678+"},{"1":"2678","2":"0","3":"2678+"},{"1":"226","2":"1","3":"226"},{"1":"176","2":"1","3":"176"},{"1":"2913","2":"0","3":"2913+"},{"1":"2913","2":"0","3":"2913+"},{"1":"2862","2":"0","3":"2862+"},{"1":"2862","2":"0","3":"2862+"},{"1":"454","2":"1","3":"454"},{"1":"454","2":"1","3":"454"},{"1":"2743","2":"0","3":"2743+"},{"1":"2743","2":"0","3":"2743+"},{"1":"1679","2":"1","3":"1679"},{"1":"1020","2":"1","3":"1020"},{"1":"924","2":"1","3":"924"},{"1":"245","2":"1","3":"245"},{"1":"721","2":"1","3":"721"},{"1":"543","2":"1","3":"543"},{"1":"709","2":"1","3":"709"},{"1":"263","2":"1","3":"263"},{"1":"961","2":"1","3":"961"},{"1":"711","2":"1","3":"711"},{"1":"326","2":"1","3":"326"},{"1":"326","2":"0","3":"326+"},{"1":"2703","2":"0","3":"2703+"},{"1":"2703","2":"0","3":"2703+"},{"1":"289","2":"1","3":"289"},{"1":"86","2":"1","3":"86"},{"1":"2905","2":"0","3":"2905+"},{"1":"2905","2":"0","3":"2905+"},{"1":"206","2":"1","3":"206"},{"1":"80","2":"1","3":"80"},{"1":"2618","2":"0","3":"2618+"},{"1":"2618","2":"0","3":"2618+"},{"1":"283","2":"1","3":"283"},{"1":"98","2":"1","3":"98"},{"1":"2718","2":"1","3":"2718"},{"1":"2018","2":"1","3":"2018"},{"1":"2826","2":"0","3":"2826+"},{"1":"101","2":"1","3":"101"},{"1":"2916","2":"0","3":"2916+"},{"1":"2916","2":"0","3":"2916+"},{"1":"499","2":"1","3":"499"},{"1":"246","2":"1","3":"246"},{"1":"2950","2":"0","3":"2950+"},{"1":"2950","2":"0","3":"2950+"},{"1":"2899","2":"0","3":"2899+"},{"1":"2899","2":"0","3":"2899+"},{"1":"673","2":"1","3":"673"},{"1":"98","2":"1","3":"98"},{"1":"3000","2":"0","3":"3000+"},{"1":"3000","2":"0","3":"3000+"},{"1":"2284","2":"1","3":"2284"},{"1":"1475","2":"1","3":"1475"},{"1":"362","2":"1","3":"362"},{"1":"191","2":"1","3":"191"},{"1":"2152","2":"1","3":"2152"},{"1":"335","2":"1","3":"335"},{"1":"2562","2":"0","3":"2562+"},{"1":"2562","2":"0","3":"2562+"},{"1":"2730","2":"0","3":"2730+"},{"1":"2730","2":"0","3":"2730+"},{"1":"802","2":"1","3":"802"},{"1":"443","2":"1","3":"443"},{"1":"1166","2":"1","3":"1166"},{"1":"772","2":"1","3":"772"},{"1":"1193","2":"1","3":"1193"},{"1":"918","2":"1","3":"918"},{"1":"45","2":"1","3":"45"},{"1":"45","2":"0","3":"45+"},{"1":"2577","2":"0","3":"2577+"},{"1":"2577","2":"0","3":"2577+"},{"1":"1136","2":"1","3":"1136"},{"1":"547","2":"1","3":"547"},{"1":"2497","2":"0","3":"2497+"},{"1":"1211","2":"1","3":"1211"},{"1":"2648","2":"0","3":"2648+"},{"1":"2648","2":"0","3":"2648+"},{"1":"2458","2":"0","3":"2458+"},{"1":"2458","2":"0","3":"2458+"},{"1":"1135","2":"1","3":"1135"},{"1":"653","2":"1","3":"653"},{"1":"580","2":"1","3":"580"},{"1":"485","2":"1","3":"485"},{"1":"485","2":"1","3":"485"},{"1":"485","2":"0","3":"485+"},{"1":"2656","2":"0","3":"2656+"},{"1":"2656","2":"0","3":"2656+"},{"1":"806","2":"1","3":"806"},{"1":"526","2":"1","3":"526"},{"1":"2435","2":"0","3":"2435+"},{"1":"2435","2":"0","3":"2435+"},{"1":"1439","2":"1","3":"1439"},{"1":"392","2":"1","3":"392"},{"1":"717","2":"1","3":"717"},{"1":"173","2":"1","3":"173"},{"1":"2568","2":"0","3":"2568+"},{"1":"2568","2":"0","3":"2568+"},{"1":"2631","2":"0","3":"2631+"},{"1":"2631","2":"0","3":"2631+"},{"1":"1474","2":"0","3":"1474+"},{"1":"1474","2":"0","3":"1474+"},{"1":"2593","2":"1","3":"2593"},{"1":"668","2":"1","3":"668"},{"1":"1550","2":"1","3":"1550"},{"1":"1550","2":"0","3":"1550+"},{"1":"670","2":"1","3":"670"},{"1":"165","2":"1","3":"165"},{"1":"430","2":"1","3":"430"},{"1":"121","2":"1","3":"121"},{"1":"2821","2":"0","3":"2821+"},{"1":"2821","2":"0","3":"2821+"},{"1":"2672","2":"0","3":"2672+"},{"1":"2672","2":"0","3":"2672+"},{"1":"2699","2":"0","3":"2699+"},{"1":"2699","2":"0","3":"2699+"},{"1":"2927","2":"0","3":"2927+"},{"1":"2927","2":"0","3":"2927+"},{"1":"993","2":"1","3":"993"},{"1":"622","2":"1","3":"622"},{"1":"2580","2":"0","3":"2580+"},{"1":"2580","2":"0","3":"2580+"},{"1":"2621","2":"0","3":"2621+"},{"1":"2621","2":"0","3":"2621+"},{"1":"2779","2":"0","3":"2779+"},{"1":"2779","2":"0","3":"2779+"},{"1":"2794","2":"0","3":"2794+"},{"1":"2794","2":"0","3":"2794+"},{"1":"2656","2":"0","3":"2656+"},{"1":"2656","2":"0","3":"2656+"},{"1":"2513","2":"0","3":"2513+"},{"1":"2513","2":"0","3":"2513+"},{"1":"2488","2":"0","3":"2488+"},{"1":"2488","2":"0","3":"2488+"},{"1":"1112","2":"1","3":"1112"},{"1":"900","2":"1","3":"900"},{"1":"2618","2":"0","3":"2618+"},{"1":"2618","2":"0","3":"2618+"},{"1":"795","2":"1","3":"795"},{"1":"380","2":"1","3":"380"},{"1":"363","2":"1","3":"363"},{"1":"157","2":"1","3":"157"},{"1":"949","2":"1","3":"949"},{"1":"360","2":"1","3":"360"},{"1":"127","2":"1","3":"127"},{"1":"68","2":"1","3":"68"},{"1":"2871","2":"0","3":"2871+"},{"1":"2871","2":"0","3":"2871+"},{"1":"2558","2":"0","3":"2558+"},{"1":"2558","2":"0","3":"2558+"},{"1":"2083","2":"1","3":"2083"},{"1":"1981","2":"1","3":"1981"},{"1":"2747","2":"0","3":"2747+"},{"1":"2747","2":"0","3":"2747+"},{"1":"1105","2":"1","3":"1105"},{"1":"931","2":"1","3":"931"},{"1":"490","2":"1","3":"490"},{"1":"183","2":"1","3":"183"},{"1":"2507","2":"0","3":"2507+"},{"1":"2507","2":"0","3":"2507+"},{"1":"961","2":"1","3":"961"},{"1":"356","2":"1","3":"356"},{"1":"1879","2":"1","3":"1879"},{"1":"341","2":"1","3":"341"},{"1":"2592","2":"0","3":"2592+"},{"1":"2592","2":"0","3":"2592+"},{"1":"2552","2":"1","3":"2552"},{"1":"230","2":"1","3":"230"},{"1":"2474","2":"0","3":"2474+"},{"1":"2474","2":"0","3":"2474+"},{"1":"2349","2":"0","3":"2349+"},{"1":"2349","2":"0","3":"2349+"},{"1":"2835","2":"0","3":"2835+"},{"1":"1037","2":"1","3":"1037"},{"1":"2761","2":"0","3":"2761+"},{"1":"2761","2":"0","3":"2761+"},{"1":"411","2":"1","3":"411"},{"1":"279","2":"1","3":"279"},{"1":"2720","2":"0","3":"2720+"},{"1":"2720","2":"0","3":"2720+"},{"1":"2495","2":"0","3":"2495+"},{"1":"2495","2":"0","3":"2495+"},{"1":"462","2":"1","3":"462"},{"1":"45","2":"1","3":"45"},{"1":"2497","2":"0","3":"2497+"},{"1":"2497","2":"0","3":"2497+"},{"1":"2343","2":"0","3":"2343+"},{"1":"2343","2":"0","3":"2343+"},{"1":"2630","2":"0","3":"2630+"},{"1":"2630","2":"0","3":"2630+"},{"1":"2461","2":"0","3":"2461+"},{"1":"2461","2":"0","3":"2461+"},{"1":"2747","2":"0","3":"2747+"},{"1":"2747","2":"0","3":"2747+"},{"1":"2482","2":"1","3":"2482"},{"1":"1876","2":"1","3":"1876"},{"1":"580","2":"1","3":"580"},{"1":"230","2":"1","3":"230"},{"1":"1215","2":"1","3":"1215"},{"1":"1013","2":"1","3":"1013"},{"1":"2525","2":"0","3":"2525+"},{"1":"2525","2":"0","3":"2525+"},{"1":"2842","2":"0","3":"2842+"},{"1":"2842","2":"0","3":"2842+"},{"1":"1272","2":"1","3":"1272"},{"1":"229","2":"1","3":"229"},{"1":"438","2":"1","3":"438"},{"1":"228","2":"1","3":"228"},{"1":"2423","2":"0","3":"2423+"},{"1":"2423","2":"0","3":"2423+"},{"1":"599","2":"1","3":"599"},{"1":"599","2":"0","3":"599+"},{"1":"2706","2":"0","3":"2706+"},{"1":"726","2":"1","3":"726"},{"1":"2683","2":"1","3":"2683"},{"1":"1976","2":"1","3":"1976"},{"1":"2723","2":"0","3":"2723+"},{"1":"1026","2":"1","3":"1026"},{"1":"1230","2":"1","3":"1230"},{"1":"480","2":"1","3":"480"},{"1":"2731","2":"0","3":"2731+"},{"1":"2035","2":"1","3":"2035"},{"1":"2313","2":"0","3":"2313+"},{"1":"2313","2":"0","3":"2313+"},{"1":"2484","2":"0","3":"2484+"},{"1":"2484","2":"0","3":"2484+"},{"1":"2754","2":"0","3":"2754+"},{"1":"2754","2":"0","3":"2754+"},{"1":"2725","2":"1","3":"2725"},{"1":"2725","2":"0","3":"2725+"},{"1":"1295","2":"1","3":"1295"},{"1":"264","2":"1","3":"264"},{"1":"2506","2":"0","3":"2506+"},{"1":"2506","2":"0","3":"2506+"},{"1":"2713","2":"0","3":"2713+"},{"1":"2713","2":"0","3":"2713+"},{"1":"2695","2":"0","3":"2695+"},{"1":"2695","2":"1","3":"2695"},{"1":"1276","2":"1","3":"1276"},{"1":"1024","2":"1","3":"1024"},{"1":"2600","2":"0","3":"2600+"},{"1":"2600","2":"0","3":"2600+"},{"1":"2352","2":"0","3":"2352+"},{"1":"2352","2":"0","3":"2352+"},{"1":"2775","2":"0","3":"2775+"},{"1":"649","2":"1","3":"649"},{"1":"2442","2":"0","3":"2442+"},{"1":"2442","2":"0","3":"2442+"},{"1":"437","2":"1","3":"437"},{"1":"36","2":"1","3":"36"},{"1":"1709","2":"1","3":"1709"},{"1":"1561","2":"1","3":"1561"},{"1":"1607","2":"1","3":"1607"},{"1":"1607","2":"0","3":"1607+"},{"1":"1637","2":"1","3":"1637"},{"1":"805","2":"1","3":"805"},{"1":"1117","2":"1","3":"1117"},{"1":"654","2":"1","3":"654"},{"1":"2732","2":"0","3":"2732+"},{"1":"2732","2":"0","3":"2732+"},{"1":"222","2":"1","3":"222"},{"1":"196","2":"1","3":"196"},{"1":"2688","2":"0","3":"2688+"},{"1":"139","2":"1","3":"139"},{"1":"2520","2":"0","3":"2520+"},{"1":"2520","2":"0","3":"2520+"},{"1":"595","2":"1","3":"595"},{"1":"221","2":"1","3":"221"},{"1":"343","2":"1","3":"343"},{"1":"183","2":"1","3":"183"},{"1":"874","2":"1","3":"874"},{"1":"496","2":"1","3":"496"},{"1":"232","2":"1","3":"232"},{"1":"77","2":"1","3":"77"},{"1":"2558","2":"0","3":"2558+"},{"1":"2558","2":"0","3":"2558+"},{"1":"2711","2":"0","3":"2711+"},{"1":"2711","2":"0","3":"2711+"},{"1":"113","2":"1","3":"113"},{"1":"79","2":"1","3":"79"},{"1":"643","2":"1","3":"643"},{"1":"290","2":"1","3":"290"},{"1":"2413","2":"0","3":"2413+"},{"1":"2413","2":"0","3":"2413+"},{"1":"2509","2":"0","3":"2509+"},{"1":"2509","2":"0","3":"2509+"},{"1":"2356","2":"0","3":"2356+"},{"1":"2356","2":"0","3":"2356+"},{"1":"1279","2":"1","3":"1279"},{"1":"1025","2":"1","3":"1025"},{"1":"938","2":"1","3":"938"},{"1":"938","2":"0","3":"938+"},{"1":"2761","2":"0","3":"2761+"},{"1":"2761","2":"0","3":"2761+"},{"1":"2386","2":"0","3":"2386+"},{"1":"2012","2":"1","3":"2012"},{"1":"433","2":"1","3":"433"},{"1":"80","2":"1","3":"80"},{"1":"2445","2":"0","3":"2445+"},{"1":"2445","2":"0","3":"2445+"},{"1":"2280","2":"0","3":"2280+"},{"1":"2280","2":"0","3":"2280+"},{"1":"311","2":"1","3":"311"},{"1":"291","2":"1","3":"291"},{"1":"977","2":"1","3":"977"},{"1":"422","2":"1","3":"422"},{"1":"833","2":"1","3":"833"},{"1":"561","2":"1","3":"561"},{"1":"582","2":"1","3":"582"},{"1":"262","2":"1","3":"262"},{"1":"2541","2":"0","3":"2541+"},{"1":"2541","2":"0","3":"2541+"},{"1":"238","2":"1","3":"238"},{"1":"238","2":"1","3":"238"},{"1":"2257","2":"1","3":"2257"},{"1":"2257","2":"0","3":"2257+"},{"1":"2501","2":"0","3":"2501+"},{"1":"2501","2":"0","3":"2501+"},{"1":"1798","2":"1","3":"1798"},{"1":"1122","2":"1","3":"1122"},{"1":"883","2":"1","3":"883"},{"1":"803","2":"1","3":"803"},{"1":"2548","2":"0","3":"2548+"},{"1":"2548","2":"0","3":"2548+"},{"1":"2527","2":"0","3":"2527+"},{"1":"2527","2":"0","3":"2527+"},{"1":"2263","2":"0","3":"2263+"},{"1":"2263","2":"0","3":"2263+"},{"1":"706","2":"1","3":"706"},{"1":"185","2":"1","3":"185"},{"1":"2588","2":"0","3":"2588+"},{"1":"2588","2":"0","3":"2588+"},{"1":"2542","2":"1","3":"2542"},{"1":"2074","2":"1","3":"2074"},{"1":"1279","2":"0","3":"1279+"},{"1":"1279","2":"0","3":"1279+"},{"1":"1304","2":"1","3":"1304"},{"1":"437","2":"1","3":"437"},{"1":"2324","2":"0","3":"2324+"},{"1":"2324","2":"0","3":"2324+"},{"1":"2488","2":"0","3":"2488+"},{"1":"2488","2":"0","3":"2488+"},{"1":"2628","2":"0","3":"2628+"},{"1":"2628","2":"0","3":"2628+"},{"1":"2800","2":"0","3":"2800+"},{"1":"2288","2":"1","3":"2288"},{"1":"2456","2":"0","3":"2456+"},{"1":"2456","2":"0","3":"2456+"},{"1":"2503","2":"0","3":"2503+"},{"1":"2503","2":"0","3":"2503+"},{"1":"1446","2":"1","3":"1446"},{"1":"431","2":"1","3":"431"},{"1":"641","2":"1","3":"641"},{"1":"497","2":"1","3":"497"},{"1":"1788","2":"1","3":"1788"},{"1":"1042","2":"1","3":"1042"},{"1":"2304","2":"0","3":"2304+"},{"1":"2304","2":"0","3":"2304+"},{"1":"944","2":"1","3":"944"},{"1":"697","2":"1","3":"697"},{"1":"2679","2":"0","3":"2679+"},{"1":"2679","2":"0","3":"2679+"},{"1":"559","2":"1","3":"559"},{"1":"286","2":"1","3":"286"},{"1":"2663","2":"0","3":"2663+"},{"1":"578","2":"1","3":"578"},{"1":"647","2":"1","3":"647"},{"1":"279","2":"1","3":"279"},{"1":"2697","2":"0","3":"2697+"},{"1":"2697","2":"0","3":"2697+"},{"1":"2538","2":"0","3":"2538+"},{"1":"2538","2":"0","3":"2538+"},{"1":"2219","2":"0","3":"2219+"},{"1":"2219","2":"0","3":"2219+"},{"1":"2487","2":"0","3":"2487+"},{"1":"303","2":"1","3":"303"},{"1":"2709","2":"0","3":"2709+"},{"1":"2709","2":"0","3":"2709+"},{"1":"840","2":"1","3":"840"},{"1":"700","2":"1","3":"700"},{"1":"2267","2":"0","3":"2267+"},{"1":"2267","2":"0","3":"2267+"},{"1":"2444","2":"0","3":"2444+"},{"1":"2444","2":"0","3":"2444+"},{"1":"2393","2":"0","3":"2393+"},{"1":"2393","2":"0","3":"2393+"},{"1":"2237","2":"0","3":"2237+"},{"1":"2237","2":"0","3":"2237+"},{"1":"2915","2":"0","3":"2915+"},{"1":"2915","2":"0","3":"2915+"},{"1":"2467","2":"0","3":"2467+"},{"1":"325","2":"1","3":"325"},{"1":"1092","2":"1","3":"1092"},{"1":"218","2":"1","3":"218"},{"1":"2726","2":"0","3":"2726+"},{"1":"2726","2":"0","3":"2726+"},{"1":"2764","2":"0","3":"2764+"},{"1":"2764","2":"0","3":"2764+"},{"1":"2592","2":"0","3":"2592+"},{"1":"2592","2":"0","3":"2592+"},{"1":"2730","2":"0","3":"2730+"},{"1":"2730","2":"0","3":"2730+"},{"1":"2287","2":"1","3":"2287"},{"1":"1274","2":"1","3":"1274"},{"1":"2117","2":"0","3":"2117+"},{"1":"2117","2":"0","3":"2117+"},{"1":"1668","2":"1","3":"1668"},{"1":"1668","2":"1","3":"1668"},{"1":"528","2":"1","3":"528"},{"1":"118","2":"1","3":"118"},{"1":"2651","2":"0","3":"2651+"},{"1":"2651","2":"0","3":"2651+"},{"1":"2676","2":"0","3":"2676+"},{"1":"2676","2":"0","3":"2676+"},{"1":"1885","2":"1","3":"1885"},{"1":"1471","2":"1","3":"1471"},{"1":"2350","2":"0","3":"2350+"},{"1":"2350","2":"0","3":"2350+"},{"1":"475","2":"1","3":"475"},{"1":"216","2":"1","3":"216"},{"1":"1246","2":"1","3":"1246"},{"1":"384","2":"1","3":"384"},{"1":"2204","2":"0","3":"2204+"},{"1":"2204","2":"0","3":"2204+"},{"1":"2716","2":"0","3":"2716+"},{"1":"2716","2":"0","3":"2716+"},{"1":"797","2":"1","3":"797"},{"1":"28","2":"1","3":"28"},{"1":"2527","2":"0","3":"2527+"},{"1":"2527","2":"0","3":"2527+"},{"1":"2021","2":"1","3":"2021"},{"1":"1142","2":"1","3":"1142"},{"1":"498","2":"1","3":"498"},{"1":"215","2":"1","3":"215"},{"1":"885","2":"1","3":"885"},{"1":"174","2":"1","3":"174"},{"1":"802","2":"1","3":"802"},{"1":"657","2":"1","3":"657"},{"1":"2674","2":"0","3":"2674+"},{"1":"2674","2":"0","3":"2674+"},{"1":"743","2":"1","3":"743"},{"1":"143","2":"1","3":"143"},{"1":"2517","2":"0","3":"2517+"},{"1":"2517","2":"0","3":"2517+"},{"1":"349","2":"1","3":"349"},{"1":"105","2":"1","3":"105"},{"1":"2723","2":"0","3":"2723+"},{"1":"2723","2":"0","3":"2723+"},{"1":"775","2":"1","3":"775"},{"1":"308","2":"1","3":"308"},{"1":"2326","2":"0","3":"2326+"},{"1":"2326","2":"0","3":"2326+"},{"1":"1134","2":"1","3":"1134"},{"1":"855","2":"1","3":"855"},{"1":"602","2":"1","3":"602"},{"1":"330","2":"1","3":"330"},{"1":"2547","2":"0","3":"2547+"},{"1":"2547","2":"0","3":"2547+"},{"1":"940","2":"1","3":"940"},{"1":"370","2":"1","3":"370"},{"1":"2496","2":"0","3":"2496+"},{"1":"2496","2":"0","3":"2496+"},{"1":"2628","2":"0","3":"2628+"},{"1":"2628","2":"0","3":"2628+"},{"1":"2353","2":"0","3":"2353+"},{"1":"2353","2":"0","3":"2353+"},{"1":"2184","2":"0","3":"2184+"},{"1":"2184","2":"0","3":"2184+"},{"1":"2219","2":"0","3":"2219+"},{"1":"2219","2":"0","3":"2219+"},{"1":"191","2":"1","3":"191"},{"1":"179","2":"1","3":"179"},{"1":"421","2":"1","3":"421"},{"1":"421","2":"0","3":"421+"},{"1":"2362","2":"0","3":"2362+"},{"1":"2362","2":"0","3":"2362+"},{"1":"952","2":"1","3":"952"},{"1":"146","2":"1","3":"146"},{"1":"911","2":"1","3":"911"},{"1":"261","2":"1","3":"261"},{"1":"1851","2":"1","3":"1851"},{"1":"440","2":"1","3":"440"},{"1":"2423","2":"0","3":"2423+"},{"1":"2423","2":"0","3":"2423+"},{"1":"464","2":"1","3":"464"},{"1":"189","2":"1","3":"189"},{"1":"443","2":"1","3":"443"},{"1":"191","2":"1","3":"191"},{"1":"186","2":"1","3":"186"},{"1":"186","2":"1","3":"186"},{"1":"2545","2":"0","3":"2545+"},{"1":"2545","2":"0","3":"2545+"},{"1":"356","2":"1","3":"356"},{"1":"119","2":"1","3":"119"},{"1":"484","2":"1","3":"484"},{"1":"315","2":"1","3":"315"},{"1":"382","2":"1","3":"382"},{"1":"174","2":"1","3":"174"},{"1":"1021","2":"1","3":"1021"},{"1":"735","2":"1","3":"735"},{"1":"2472","2":"0","3":"2472+"},{"1":"2472","2":"0","3":"2472+"},{"1":"2352","2":"0","3":"2352+"},{"1":"2352","2":"0","3":"2352+"},{"1":"2486","2":"0","3":"2486+"},{"1":"2486","2":"0","3":"2486+"},{"1":"324","2":"1","3":"324"},{"1":"154","2":"1","3":"154"},{"1":"2517","2":"0","3":"2517+"},{"1":"2517","2":"0","3":"2517+"},{"1":"2613","2":"0","3":"2613+"},{"1":"2613","2":"0","3":"2613+"},{"1":"2450","2":"0","3":"2450+"},{"1":"2450","2":"0","3":"2450+"},{"1":"770","2":"1","3":"770"},{"1":"315","2":"1","3":"315"},{"1":"2490","2":"0","3":"2490+"},{"1":"2490","2":"0","3":"2490+"},{"1":"1548","2":"1","3":"1548"},{"1":"534","2":"1","3":"534"},{"1":"2449","2":"0","3":"2449+"},{"1":"2449","2":"0","3":"2449+"},{"1":"2299","2":"0","3":"2299+"},{"1":"2299","2":"0","3":"2299+"},{"1":"1252","2":"1","3":"1252"},{"1":"675","2":"1","3":"675"},{"1":"730","2":"1","3":"730"},{"1":"560","2":"1","3":"560"},{"1":"2460","2":"0","3":"2460+"},{"1":"2460","2":"0","3":"2460+"},{"1":"499","2":"1","3":"499"},{"1":"374","2":"1","3":"374"},{"1":"129","2":"1","3":"129"},{"1":"113","2":"1","3":"113"},{"1":"52","2":"1","3":"52"},{"1":"49","2":"1","3":"49"},{"1":"2171","2":"1","3":"2171"},{"1":"493","2":"1","3":"493"},{"1":"1178","2":"1","3":"1178"},{"1":"511","2":"1","3":"511"},{"1":"1915","2":"1","3":"1915"},{"1":"871","2":"1","3":"871"},{"1":"2572","2":"0","3":"2572+"},{"1":"2572","2":"0","3":"2572+"},{"1":"2590","2":"0","3":"2590+"},{"1":"2590","2":"0","3":"2590+"},{"1":"215","2":"1","3":"215"},{"1":"88","2":"1","3":"88"},{"1":"2325","2":"0","3":"2325+"},{"1":"2325","2":"0","3":"2325+"},{"1":"961","2":"1","3":"961"},{"1":"116","2":"1","3":"116"},{"1":"2691","2":"0","3":"2691+"},{"1":"2691","2":"0","3":"2691+"},{"1":"2574","2":"0","3":"2574+"},{"1":"2574","2":"0","3":"2574+"},{"1":"2540","2":"0","3":"2540+"},{"1":"2540","2":"0","3":"2540+"},{"1":"2364","2":"0","3":"2364+"},{"1":"2364","2":"0","3":"2364+"},{"1":"2472","2":"0","3":"2472+"},{"1":"2472","2":"0","3":"2472+"},{"1":"409","2":"1","3":"409"},{"1":"237","2":"1","3":"237"},{"1":"961","2":"1","3":"961"},{"1":"276","2":"1","3":"276"},{"1":"2449","2":"0","3":"2449+"},{"1":"2449","2":"0","3":"2449+"},{"1":"2520","2":"0","3":"2520+"},{"1":"2520","2":"0","3":"2520+"},{"1":"916","2":"1","3":"916"},{"1":"336","2":"1","3":"336"},{"1":"2227","2":"0","3":"2227+"},{"1":"2227","2":"0","3":"2227+"},{"1":"2394","2":"0","3":"2394+"},{"1":"2394","2":"0","3":"2394+"},{"1":"2029","2":"0","3":"2029+"},{"1":"2029","2":"0","3":"2029+"},{"1":"2487","2":"0","3":"2487+"},{"1":"2487","2":"0","3":"2487+"},{"1":"2052","2":"1","3":"2052"},{"1":"2052","2":"0","3":"2052+"},{"1":"2690","2":"0","3":"2690+"},{"1":"2690","2":"0","3":"2690+"},{"1":"2234","2":"0","3":"2234+"},{"1":"2234","2":"0","3":"2234+"},{"1":"537","2":"1","3":"537"},{"1":"238","2":"1","3":"238"},{"1":"2277","2":"0","3":"2277+"},{"1":"2277","2":"0","3":"2277+"},{"1":"729","2":"1","3":"729"},{"1":"474","2":"1","3":"474"},{"1":"2194","2":"0","3":"2194+"},{"1":"2194","2":"0","3":"2194+"},{"1":"2551","2":"0","3":"2551+"},{"1":"2551","2":"0","3":"2551+"},{"1":"1692","2":"1","3":"1692"},{"1":"1353","2":"1","3":"1353"},{"1":"758","2":"1","3":"758"},{"1":"256","2":"1","3":"256"},{"1":"2079","2":"1","3":"2079"},{"1":"2079","2":"0","3":"2079+"},{"1":"720","2":"1","3":"720"},{"1":"439","2":"1","3":"439"},{"1":"2380","2":"0","3":"2380+"},{"1":"2380","2":"0","3":"2380+"},{"1":"845","2":"1","3":"845"},{"1":"845","2":"0","3":"845+"},{"1":"2416","2":"0","3":"2416+"},{"1":"2416","2":"0","3":"2416+"},{"1":"863","2":"1","3":"863"},{"1":"532","2":"1","3":"532"},{"1":"1363","2":"1","3":"1363"},{"1":"1363","2":"0","3":"1363+"},{"1":"2528","2":"0","3":"2528+"},{"1":"2528","2":"0","3":"2528+"},{"1":"1145","2":"1","3":"1145"},{"1":"617","2":"1","3":"617"},{"1":"499","2":"1","3":"499"},{"1":"365","2":"1","3":"365"},{"1":"242","2":"1","3":"242"},{"1":"165","2":"1","3":"165"},{"1":"2294","2":"0","3":"2294+"},{"1":"2294","2":"0","3":"2294+"},{"1":"858","2":"1","3":"858"},{"1":"593","2":"1","3":"593"},{"1":"122","2":"1","3":"122"},{"1":"72","2":"1","3":"72"},{"1":"2682","2":"0","3":"2682+"},{"1":"2682","2":"0","3":"2682+"},{"1":"1818","2":"1","3":"1818"},{"1":"1818","2":"0","3":"1818+"},{"1":"2532","2":"0","3":"2532+"},{"1":"2532","2":"0","3":"2532+"},{"1":"331","2":"1","3":"331"},{"1":"257","2":"1","3":"257"},{"1":"1048","2":"1","3":"1048"},{"1":"748","2":"1","3":"748"},{"1":"2513","2":"0","3":"2513+"},{"1":"2513","2":"0","3":"2513+"},{"1":"340","2":"1","3":"340"},{"1":"340","2":"0","3":"340+"},{"1":"1850","2":"1","3":"1850"},{"1":"615","2":"1","3":"615"},{"1":"2332","2":"0","3":"2332+"},{"1":"2332","2":"0","3":"2332+"},{"1":"2279","2":"0","3":"2279+"},{"1":"2279","2":"0","3":"2279+"},{"1":"1041","2":"1","3":"1041"},{"1":"454","2":"1","3":"454"},{"1":"1790","2":"1","3":"1790"},{"1":"1106","2":"1","3":"1106"},{"1":"304","2":"1","3":"304"},{"1":"161","2":"1","3":"161"},{"1":"2517","2":"0","3":"2517+"},{"1":"2517","2":"0","3":"2517+"},{"1":"2156","2":"0","3":"2156+"},{"1":"2028","2":"1","3":"2028"},{"1":"1388","2":"1","3":"1388"},{"1":"936","2":"1","3":"936"},{"1":"2544","2":"0","3":"2544+"},{"1":"2544","2":"0","3":"2544+"},{"1":"1852","2":"0","3":"1852+"},{"1":"1852","2":"0","3":"1852+"},{"1":"2122","2":"0","3":"2122+"},{"1":"2122","2":"0","3":"2122+"},{"1":"2577","2":"0","3":"2577+"},{"1":"2577","2":"0","3":"2577+"},{"1":"2023","2":"1","3":"2023"},{"1":"337","2":"1","3":"337"},{"1":"1201","2":"1","3":"1201"},{"1":"578","2":"1","3":"578"},{"1":"901","2":"1","3":"901"},{"1":"218","2":"1","3":"218"},{"1":"2385","2":"0","3":"2385+"},{"1":"1589","2":"1","3":"1589"},{"1":"663","2":"1","3":"663"},{"1":"103","2":"1","3":"103"},{"1":"2506","2":"0","3":"2506+"},{"1":"2506","2":"0","3":"2506+"},{"1":"2332","2":"0","3":"2332+"},{"1":"2332","2":"0","3":"2332+"},{"1":"2176","2":"0","3":"2176+"},{"1":"2176","2":"0","3":"2176+"},{"1":"1212","2":"1","3":"1212"},{"1":"248","2":"1","3":"248"},{"1":"890","2":"1","3":"890"},{"1":"330","2":"1","3":"330"},{"1":"302","2":"1","3":"302"},{"1":"208","2":"1","3":"208"},{"1":"2396","2":"0","3":"2396+"},{"1":"2396","2":"0","3":"2396+"},{"1":"2481","2":"0","3":"2481+"},{"1":"2481","2":"0","3":"2481+"},{"1":"316","2":"1","3":"316"},{"1":"62","2":"1","3":"62"},{"1":"2245","2":"0","3":"2245+"},{"1":"2245","2":"0","3":"2245+"},{"1":"2447","2":"0","3":"2447+"},{"1":"2447","2":"0","3":"2447+"},{"1":"2213","2":"0","3":"2213+"},{"1":"2213","2":"0","3":"2213+"},{"1":"1070","2":"1","3":"1070"},{"1":"273","2":"1","3":"273"},{"1":"439","2":"1","3":"439"},{"1":"235","2":"1","3":"235"},{"1":"905","2":"1","3":"905"},{"1":"583","2":"1","3":"583"},{"1":"1723","2":"1","3":"1723"},{"1":"1089","2":"1","3":"1089"},{"1":"241","2":"1","3":"241"},{"1":"80","2":"1","3":"80"},{"1":"1314","2":"1","3":"1314"},{"1":"1314","2":"0","3":"1314+"},{"1":"438","2":"1","3":"438"},{"1":"260","2":"1","3":"260"},{"1":"1981","2":"0","3":"1981+"},{"1":"1981","2":"0","3":"1981+"},{"1":"2195","2":"0","3":"2195+"},{"1":"2195","2":"0","3":"2195+"},{"1":"1101","2":"1","3":"1101"},{"1":"625","2":"1","3":"625"},{"1":"79","2":"1","3":"79"},{"1":"40","2":"1","3":"40"},{"1":"976","2":"1","3":"976"},{"1":"215","2":"1","3":"215"},{"1":"664","2":"1","3":"664"},{"1":"613","2":"1","3":"613"},{"1":"2299","2":"0","3":"2299+"},{"1":"1535","2":"1","3":"1535"},{"1":"279","2":"1","3":"279"},{"1":"252","2":"1","3":"252"},{"1":"1037","2":"1","3":"1037"},{"1":"663","2":"1","3":"663"},{"1":"692","2":"1","3":"692"},{"1":"362","2":"1","3":"362"},{"1":"2174","2":"1","3":"2174"},{"1":"2174","2":"0","3":"2174+"},{"1":"2144","2":"0","3":"2144+"},{"1":"2144","2":"0","3":"2144+"},{"1":"2058","2":"0","3":"2058+"},{"1":"2058","2":"0","3":"2058+"},{"1":"2485","2":"0","3":"2485+"},{"1":"2148","2":"1","3":"2148"},{"1":"2410","2":"0","3":"2410+"},{"1":"2410","2":"0","3":"2410+"},{"1":"2565","2":"0","3":"2565+"},{"1":"352","2":"1","3":"352"},{"1":"884","2":"1","3":"884"},{"1":"884","2":"0","3":"884+"},{"1":"389","2":"1","3":"389"},{"1":"205","2":"1","3":"205"},{"1":"692","2":"1","3":"692"},{"1":"591","2":"1","3":"591"},{"1":"642","2":"1","3":"642"},{"1":"449","2":"1","3":"449"},{"1":"846","2":"1","3":"846"},{"1":"828","2":"1","3":"828"},{"1":"2203","2":"0","3":"2203+"},{"1":"2203","2":"0","3":"2203+"},{"1":"2164","2":"0","3":"2164+"},{"1":"2164","2":"0","3":"2164+"},{"1":"1273","2":"1","3":"1273"},{"1":"700","2":"1","3":"700"},{"1":"2393","2":"0","3":"2393+"},{"1":"2393","2":"0","3":"2393+"},{"1":"862","2":"1","3":"862"},{"1":"491","2":"1","3":"491"},{"1":"2331","2":"0","3":"2331+"},{"1":"2331","2":"0","3":"2331+"},{"1":"2264","2":"0","3":"2264+"},{"1":"2264","2":"0","3":"2264+"},{"1":"144","2":"1","3":"144"},{"1":"63","2":"1","3":"63"},{"1":"2429","2":"0","3":"2429+"},{"1":"2429","2":"0","3":"2429+"},{"1":"723","2":"1","3":"723"},{"1":"98","2":"1","3":"98"},{"1":"2530","2":"0","3":"2530+"},{"1":"702","2":"1","3":"702"},{"1":"1568","2":"1","3":"1568"},{"1":"573","2":"1","3":"573"},{"1":"2292","2":"0","3":"2292+"},{"1":"2292","2":"0","3":"2292+"},{"1":"2252","2":"0","3":"2252+"},{"1":"2252","2":"0","3":"2252+"},{"1":"2408","2":"0","3":"2408+"},{"1":"2408","2":"0","3":"2408+"},{"1":"2555","2":"0","3":"2555+"},{"1":"2555","2":"0","3":"2555+"},{"1":"276","2":"1","3":"276"},{"1":"237","2":"1","3":"237"},{"1":"1896","2":"1","3":"1896"},{"1":"1606","2":"1","3":"1606"},{"1":"2147","2":"0","3":"2147+"},{"1":"2147","2":"0","3":"2147+"},{"1":"2269","2":"0","3":"2269+"},{"1":"2269","2":"0","3":"2269+"},{"1":"2391","2":"0","3":"2391+"},{"1":"2391","2":"0","3":"2391+"},{"1":"1424","2":"1","3":"1424"},{"1":"849","2":"1","3":"849"},{"1":"2257","2":"0","3":"2257+"},{"1":"2257","2":"0","3":"2257+"},{"1":"2381","2":"0","3":"2381+"},{"1":"408","2":"1","3":"408"},{"1":"2103","2":"0","3":"2103+"},{"1":"2103","2":"0","3":"2103+"},{"1":"2210","2":"0","3":"2210+"},{"1":"1466","2":"1","3":"1466"},{"1":"2530","2":"0","3":"2530+"},{"1":"2530","2":"0","3":"2530+"},{"1":"2386","2":"0","3":"2386+"},{"1":"2386","2":"0","3":"2386+"},{"1":"219","2":"1","3":"219"},{"1":"141","2":"1","3":"141"},{"1":"486","2":"1","3":"486"},{"1":"486","2":"0","3":"486+"},{"1":"1246","2":"1","3":"1246"},{"1":"701","2":"1","3":"701"},{"1":"2138","2":"0","3":"2138+"},{"1":"2138","2":"0","3":"2138+"},{"1":"2439","2":"0","3":"2439+"},{"1":"2439","2":"0","3":"2439+"},{"1":"2231","2":"0","3":"2231+"},{"1":"2231","2":"0","3":"2231+"},{"1":"384","2":"1","3":"384"},{"1":"230","2":"1","3":"230"},{"1":"2505","2":"0","3":"2505+"},{"1":"2505","2":"0","3":"2505+"},{"1":"1652","2":"1","3":"1652"},{"1":"169","2":"1","3":"169"},{"1":"2441","2":"0","3":"2441+"},{"1":"1329","2":"1","3":"1329"},{"1":"687","2":"1","3":"687"},{"1":"208","2":"1","3":"208"},{"1":"2179","2":"0","3":"2179+"},{"1":"2179","2":"0","3":"2179+"},{"1":"2189","2":"0","3":"2189+"},{"1":"2189","2":"0","3":"2189+"},{"1":"2472","2":"0","3":"2472+"},{"1":"2472","2":"0","3":"2472+"},{"1":"2111","2":"0","3":"2111+"},{"1":"2111","2":"0","3":"2111+"},{"1":"2020","2":"0","3":"2020+"},{"1":"2020","2":"0","3":"2020+"},{"1":"1161","2":"1","3":"1161"},{"1":"313","2":"1","3":"313"},{"1":"2231","2":"0","3":"2231+"},{"1":"1081","2":"1","3":"1081"},{"1":"2300","2":"0","3":"2300+"},{"1":"2300","2":"0","3":"2300+"},{"1":"2391","2":"0","3":"2391+"},{"1":"731","2":"1","3":"731"},{"1":"759","2":"1","3":"759"},{"1":"717","2":"1","3":"717"},{"1":"166","2":"1","3":"166"},{"1":"77","2":"1","3":"77"},{"1":"2323","2":"0","3":"2323+"},{"1":"2323","2":"0","3":"2323+"},{"1":"2321","2":"0","3":"2321+"},{"1":"2321","2":"0","3":"2321+"},{"1":"1976","2":"0","3":"1976+"},{"1":"1976","2":"0","3":"1976+"},{"1":"2229","2":"0","3":"2229+"},{"1":"2229","2":"0","3":"2229+"},{"1":"1671","2":"1","3":"1671"},{"1":"536","2":"1","3":"536"},{"1":"1907","2":"1","3":"1907"},{"1":"930","2":"1","3":"930"},{"1":"1783","2":"1","3":"1783"},{"1":"1277","2":"1","3":"1277"},{"1":"684","2":"1","3":"684"},{"1":"337","2":"1","3":"337"},{"1":"441","2":"1","3":"441"},{"1":"91","2":"1","3":"91"},{"1":"902","2":"1","3":"902"},{"1":"116","2":"1","3":"116"},{"1":"2244","2":"0","3":"2244+"},{"1":"2244","2":"0","3":"2244+"},{"1":"2170","2":"0","3":"2170+"},{"1":"2170","2":"0","3":"2170+"},{"1":"1870","2":"0","3":"1870+"},{"1":"1870","2":"0","3":"1870+"},{"1":"2066","2":"0","3":"2066+"},{"1":"2066","2":"0","3":"2066+"},{"1":"2030","2":"0","3":"2030+"},{"1":"2030","2":"0","3":"2030+"},{"1":"253","2":"1","3":"253"},{"1":"227","2":"1","3":"227"},{"1":"2047","2":"0","3":"2047+"},{"1":"2047","2":"0","3":"2047+"},{"1":"1768","2":"1","3":"1768"},{"1":"372","2":"1","3":"372"},{"1":"2043","2":"0","3":"2043+"},{"1":"2043","2":"0","3":"2043+"},{"1":"2162","2":"0","3":"2162+"},{"1":"2162","2":"0","3":"2162+"},{"1":"2093","2":"0","3":"2093+"},{"1":"2093","2":"0","3":"2093+"},{"1":"2310","2":"0","3":"2310+"},{"1":"1183","2":"1","3":"1183"},{"1":"2128","2":"1","3":"2128"},{"1":"1606","2":"1","3":"1606"},{"1":"1884","2":"1","3":"1884"},{"1":"739","2":"1","3":"739"},{"1":"219","2":"1","3":"219"},{"1":"219","2":"0","3":"219+"},{"1":"2309","2":"0","3":"2309+"},{"1":"2309","2":"0","3":"2309+"},{"1":"313","2":"1","3":"313"},{"1":"296","2":"1","3":"296"},{"1":"546","2":"1","3":"546"},{"1":"279","2":"1","3":"279"},{"1":"2213","2":"1","3":"2213"},{"1":"2213","2":"0","3":"2213+"},{"1":"1856","2":"1","3":"1856"},{"1":"1856","2":"0","3":"1856+"},{"1":"1421","2":"0","3":"1421+"},{"1":"1421","2":"0","3":"1421+"},{"1":"460","2":"1","3":"460"},{"1":"360","2":"1","3":"360"},{"1":"2173","2":"0","3":"2173+"},{"1":"959","2":"1","3":"959"},{"1":"283","2":"1","3":"283"},{"1":"146","2":"1","3":"146"},{"1":"34","2":"1","3":"34"},{"1":"9","2":"1","3":"9"},{"1":"2191","2":"0","3":"2191+"},{"1":"2191","2":"0","3":"2191+"},{"1":"2186","2":"0","3":"2186+"},{"1":"2186","2":"0","3":"2186+"},{"1":"1159","2":"1","3":"1159"},{"1":"555","2":"1","3":"555"},{"1":"616","2":"1","3":"616"},{"1":"554","2":"1","3":"554"},{"1":"2270","2":"0","3":"2270+"},{"1":"2270","2":"0","3":"2270+"},{"1":"1061","2":"1","3":"1061"},{"1":"253","2":"1","3":"253"},{"1":"591","2":"1","3":"591"},{"1":"411","2":"1","3":"411"},{"1":"2065","2":"0","3":"2065+"},{"1":"2065","2":"0","3":"2065+"},{"1":"208","2":"1","3":"208"},{"1":"154","2":"1","3":"154"},{"1":"2360","2":"0","3":"2360+"},{"1":"594","2":"1","3":"594"},{"1":"2312","2":"0","3":"2312+"},{"1":"2312","2":"0","3":"2312+"},{"1":"1902","2":"0","3":"1902+"},{"1":"1902","2":"0","3":"1902+"},{"1":"1814","2":"0","3":"1814+"},{"1":"1814","2":"0","3":"1814+"},{"1":"2111","2":"0","3":"2111+"},{"1":"2111","2":"0","3":"2111+"},{"1":"2330","2":"0","3":"2330+"},{"1":"2330","2":"0","3":"2330+"},{"1":"2202","2":"0","3":"2202+"},{"1":"2202","2":"0","3":"2202+"},{"1":"1295","2":"1","3":"1295"},{"1":"573","2":"1","3":"573"},{"1":"1918","2":"0","3":"1918+"},{"1":"1918","2":"1","3":"1918"},{"1":"2066","2":"0","3":"2066+"},{"1":"2066","2":"0","3":"2066+"},{"1":"2136","2":"0","3":"2136+"},{"1":"2136","2":"0","3":"2136+"},{"1":"2289","2":"0","3":"2289+"},{"1":"2289","2":"0","3":"2289+"},{"1":"576","2":"1","3":"576"},{"1":"255","2":"1","3":"255"},{"1":"2232","2":"0","3":"2232+"},{"1":"2232","2":"0","3":"2232+"},{"1":"1034","2":"1","3":"1034"},{"1":"185","2":"1","3":"185"},{"1":"583","2":"1","3":"583"},{"1":"168","2":"1","3":"168"},{"1":"417","2":"1","3":"417"},{"1":"161","2":"1","3":"161"},{"1":"1905","2":"0","3":"1905+"},{"1":"1905","2":"0","3":"1905+"},{"1":"875","2":"1","3":"875"},{"1":"263","2":"1","3":"263"},{"1":"674","2":"1","3":"674"},{"1":"543","2":"1","3":"543"},{"1":"2185","2":"0","3":"2185+"},{"1":"2185","2":"0","3":"2185+"},{"1":"1151","2":"1","3":"1151"},{"1":"636","2":"1","3":"636"},{"1":"342","2":"1","3":"342"},{"1":"175","2":"1","3":"175"},{"1":"2187","2":"0","3":"2187+"},{"1":"2187","2":"0","3":"2187+"},{"1":"1434","2":"1","3":"1434"},{"1":"608","2":"1","3":"608"},{"1":"430","2":"1","3":"430"},{"1":"386","2":"1","3":"386"},{"1":"2339","2":"0","3":"2339+"},{"1":"1564","2":"1","3":"1564"},{"1":"1365","2":"1","3":"1365"},{"1":"934","2":"1","3":"934"},{"1":"2313","2":"0","3":"2313+"},{"1":"2313","2":"0","3":"2313+"},{"1":"2153","2":"0","3":"2153+"},{"1":"2153","2":"0","3":"2153+"},{"1":"2164","2":"0","3":"2164+"},{"1":"2164","2":"0","3":"2164+"},{"1":"2180","2":"0","3":"2180+"},{"1":"2180","2":"0","3":"2180+"},{"1":"2110","2":"0","3":"2110+"},{"1":"2110","2":"0","3":"2110+"},{"1":"2139","2":"0","3":"2139+"},{"1":"975","2":"1","3":"975"},{"1":"2120","2":"0","3":"2120+"},{"1":"2120","2":"0","3":"2120+"},{"1":"2197","2":"1","3":"2197"},{"1":"1644","2":"1","3":"1644"},{"1":"453","2":"0","3":"453+"},{"1":"453","2":"0","3":"453+"},{"1":"928","2":"1","3":"928"},{"1":"663","2":"1","3":"663"},{"1":"675","2":"1","3":"675"},{"1":"504","2":"1","3":"504"},{"1":"2170","2":"0","3":"2170+"},{"1":"2170","2":"0","3":"2170+"},{"1":"2138","2":"0","3":"2138+"},{"1":"2138","2":"0","3":"2138+"},{"1":"2255","2":"0","3":"2255+"},{"1":"2255","2":"0","3":"2255+"},{"1":"2290","2":"0","3":"2290+"},{"1":"2290","2":"0","3":"2290+"},{"1":"1055","2":"1","3":"1055"},{"1":"960","2":"1","3":"960"},{"1":"2347","2":"0","3":"2347+"},{"1":"1687","2":"1","3":"1687"},{"1":"573","2":"1","3":"573"},{"1":"336","2":"1","3":"336"},{"1":"2200","2":"0","3":"2200+"},{"1":"2200","2":"0","3":"2200+"},{"1":"550","2":"1","3":"550"},{"1":"322","2":"1","3":"322"},{"1":"1405","2":"1","3":"1405"},{"1":"1298","2":"1","3":"1298"},{"1":"2355","2":"0","3":"2355+"},{"1":"2031","2":"1","3":"2031"},{"1":"1186","2":"1","3":"1186"},{"1":"672","2":"1","3":"672"},{"1":"1540","2":"1","3":"1540"},{"1":"369","2":"1","3":"369"},{"1":"2229","2":"0","3":"2229+"},{"1":"2229","2":"0","3":"2229+"},{"1":"969","2":"1","3":"969"},{"1":"742","2":"1","3":"742"},{"1":"465","2":"1","3":"465"},{"1":"433","2":"1","3":"433"},{"1":"603","2":"1","3":"603"},{"1":"458","2":"1","3":"458"},{"1":"997","2":"1","3":"997"},{"1":"490","2":"1","3":"490"},{"1":"2274","2":"0","3":"2274+"},{"1":"2274","2":"0","3":"2274+"},{"1":"563","2":"1","3":"563"},{"1":"294","2":"1","3":"294"},{"1":"1434","2":"1","3":"1434"},{"1":"465","2":"1","3":"465"},{"1":"2316","2":"0","3":"2316+"},{"1":"2316","2":"0","3":"2316+"},{"1":"692","2":"1","3":"692"},{"1":"199","2":"1","3":"199"},{"1":"1447","2":"1","3":"1447"},{"1":"499","2":"1","3":"499"},{"1":"428","2":"1","3":"428"},{"1":"165","2":"1","3":"165"},{"1":"2152","2":"0","3":"2152+"},{"1":"2152","2":"0","3":"2152+"},{"1":"854","2":"1","3":"854"},{"1":"406","2":"1","3":"406"},{"1":"2093","2":"0","3":"2093+"},{"1":"2093","2":"0","3":"2093+"},{"1":"2198","2":"0","3":"2198+"},{"1":"2198","2":"0","3":"2198+"},{"1":"2126","2":"0","3":"2126+"},{"1":"113","2":"1","3":"113"},{"1":"2189","2":"0","3":"2189+"},{"1":"2189","2":"0","3":"2189+"},{"1":"2142","2":"0","3":"2142+"},{"1":"2142","2":"0","3":"2142+"},{"1":"2278","2":"0","3":"2278+"},{"1":"2278","2":"0","3":"2278+"},{"1":"622","2":"1","3":"622"},{"1":"20","2":"1","3":"20"},{"1":"2192","2":"0","3":"2192+"},{"1":"2192","2":"0","3":"2192+"},{"1":"413","2":"1","3":"413"},{"1":"280","2":"1","3":"280"},{"1":"1191","2":"1","3":"1191"},{"1":"680","2":"1","3":"680"},{"1":"1139","2":"1","3":"1139"},{"1":"1139","2":"1","3":"1139"},{"1":"165","2":"1","3":"165"},{"1":"111","2":"1","3":"111"},{"1":"2210","2":"0","3":"2210+"},{"1":"2210","2":"0","3":"2210+"},{"1":"2227","2":"0","3":"2227+"},{"1":"2227","2":"0","3":"2227+"},{"1":"2076","2":"0","3":"2076+"},{"1":"2076","2":"0","3":"2076+"},{"1":"2132","2":"0","3":"2132+"},{"1":"2132","2":"0","3":"2132+"},{"1":"2084","2":"0","3":"2084+"},{"1":"2084","2":"0","3":"2084+"},{"1":"1905","2":"0","3":"1905+"},{"1":"379","2":"1","3":"379"},{"1":"608","2":"1","3":"608"},{"1":"286","2":"1","3":"286"},{"1":"2066","2":"0","3":"2066+"},{"1":"2066","2":"0","3":"2066+"},{"1":"2006","2":"0","3":"2006+"},{"1":"2006","2":"0","3":"2006+"},{"1":"2183","2":"0","3":"2183+"},{"1":"2183","2":"0","3":"2183+"},{"1":"2099","2":"0","3":"2099+"},{"1":"2099","2":"0","3":"2099+"},{"1":"1879","2":"0","3":"1879+"},{"1":"1879","2":"0","3":"1879+"},{"1":"264","2":"1","3":"264"},{"1":"99","2":"1","3":"99"},{"1":"2107","2":"0","3":"2107+"},{"1":"2107","2":"0","3":"2107+"},{"1":"743","2":"1","3":"743"},{"1":"491","2":"1","3":"491"},{"1":"966","2":"1","3":"966"},{"1":"102","2":"1","3":"102"},{"1":"2076","2":"0","3":"2076+"},{"1":"2076","2":"0","3":"2076+"},{"1":"24","2":"1","3":"24"},{"1":"24","2":"0","3":"24+"},{"1":"448","2":"1","3":"448"},{"1":"380","2":"1","3":"380"},{"1":"909","2":"1","3":"909"},{"1":"415","2":"1","3":"415"},{"1":"2188","2":"0","3":"2188+"},{"1":"1647","2":"1","3":"1647"},{"1":"469","2":"1","3":"469"},{"1":"174","2":"1","3":"174"},{"1":"594","2":"1","3":"594"},{"1":"243","2":"1","3":"243"},{"1":"2008","2":"0","3":"2008+"},{"1":"2008","2":"0","3":"2008+"},{"1":"1276","2":"1","3":"1276"},{"1":"827","2":"1","3":"827"},{"1":"957","2":"1","3":"957"},{"1":"686","2":"1","3":"686"},{"1":"1950","2":"1","3":"1950"},{"1":"495","2":"1","3":"495"},{"1":"2668","2":"0","3":"2668+"},{"1":"2668","2":"0","3":"2668+"},{"1":"2250","2":"0","3":"2250+"},{"1":"2250","2":"0","3":"2250+"},{"1":"2191","2":"0","3":"2191+"},{"1":"2191","2":"0","3":"2191+"},{"1":"2365","2":"0","3":"2365+"},{"1":"2365","2":"0","3":"2365+"},{"1":"2331","2":"0","3":"2331+"},{"1":"2331","2":"0","3":"2331+"},{"1":"1262","2":"1","3":"1262"},{"1":"1108","2":"1","3":"1108"},{"1":"1537","2":"0","3":"1537+"},{"1":"1537","2":"0","3":"1537+"},{"1":"2387","2":"0","3":"2387+"},{"1":"2387","2":"0","3":"2387+"},{"1":"2235","2":"0","3":"2235+"},{"1":"2235","2":"0","3":"2235+"},{"1":"1980","2":"0","3":"1980+"},{"1":"1980","2":"0","3":"1980+"},{"1":"578","2":"1","3":"578"},{"1":"285","2":"1","3":"285"},{"1":"1083","2":"1","3":"1083"},{"1":"203","2":"1","3":"203"},{"1":"1875","2":"1","3":"1875"},{"1":"1436","2":"1","3":"1436"},{"1":"2384","2":"0","3":"2384+"},{"1":"402","2":"1","3":"402"},{"1":"563","2":"1","3":"563"},{"1":"354","2":"1","3":"354"},{"1":"2076","2":"0","3":"2076+"},{"1":"2076","2":"0","3":"2076+"},{"1":"2025","2":"0","3":"2025+"},{"1":"2025","2":"0","3":"2025+"},{"1":"2055","2":"0","3":"2055+"},{"1":"2055","2":"0","3":"2055+"},{"1":"1375","2":"1","3":"1375"},{"1":"540","2":"1","3":"540"},{"1":"2350","2":"0","3":"2350+"},{"1":"2350","2":"0","3":"2350+"},{"1":"2200","2":"0","3":"2200+"},{"1":"2200","2":"0","3":"2200+"},{"1":"2222","2":"0","3":"2222+"},{"1":"2222","2":"0","3":"2222+"},{"1":"2149","2":"0","3":"2149+"},{"1":"1432","2":"1","3":"1432"},{"1":"2303","2":"0","3":"2303+"},{"1":"2303","2":"0","3":"2303+"},{"1":"322","2":"1","3":"322"},{"1":"201","2":"1","3":"201"},{"1":"764","2":"1","3":"764"},{"1":"525","2":"1","3":"525"},{"1":"765","2":"1","3":"765"},{"1":"415","2":"1","3":"415"},{"1":"93","2":"1","3":"93"},{"1":"38","2":"1","3":"38"},{"1":"1918","2":"0","3":"1918+"},{"1":"1918","2":"0","3":"1918+"},{"1":"1932","2":"1","3":"1932"},{"1":"276","2":"1","3":"276"},{"1":"2278","2":"0","3":"2278+"},{"1":"2278","2":"0","3":"2278+"},{"1":"145","2":"1","3":"145"},{"1":"59","2":"1","3":"59"},{"1":"1913","2":"0","3":"1913+"},{"1":"1913","2":"0","3":"1913+"},{"1":"2176","2":"0","3":"2176+"},{"1":"2176","2":"0","3":"2176+"},{"1":"1995","2":"0","3":"1995+"},{"1":"1995","2":"0","3":"1995+"},{"1":"2023","2":"0","3":"2023+"},{"1":"2023","2":"0","3":"2023+"},{"1":"1935","2":"0","3":"1935+"},{"1":"1935","2":"0","3":"1935+"},{"1":"2191","2":"0","3":"2191+"},{"1":"1539","2":"1","3":"1539"},{"1":"2191","2":"0","3":"2191+"},{"1":"2191","2":"0","3":"2191+"},{"1":"1856","2":"0","3":"1856+"},{"1":"1856","2":"0","3":"1856+"},{"1":"628","2":"1","3":"628"},{"1":"628","2":"0","3":"628+"},{"1":"1976","2":"0","3":"1976+"},{"1":"1976","2":"0","3":"1976+"},{"1":"1819","2":"0","3":"1819+"},{"1":"1819","2":"0","3":"1819+"},{"1":"141","2":"1","3":"141"},{"1":"101","2":"1","3":"101"},{"1":"422","2":"1","3":"422"},{"1":"19","2":"1","3":"19"},{"1":"2006","2":"0","3":"2006+"},{"1":"2006","2":"0","3":"2006+"},{"1":"2113","2":"0","3":"2113+"},{"1":"2113","2":"0","3":"2113+"},{"1":"1823","2":"0","3":"1823+"},{"1":"1823","2":"0","3":"1823+"},{"1":"2170","2":"0","3":"2170+"},{"1":"2170","2":"0","3":"2170+"},{"1":"1812","2":"1","3":"1812"},{"1":"1723","2":"1","3":"1723"},{"1":"1838","2":"0","3":"1838+"},{"1":"1838","2":"0","3":"1838+"},{"1":"1855","2":"0","3":"1855+"},{"1":"1855","2":"0","3":"1855+"},{"1":"269","2":"1","3":"269"},{"1":"185","2":"1","3":"185"},{"1":"2414","2":"0","3":"2414+"},{"1":"2414","2":"0","3":"2414+"},{"1":"2174","2":"0","3":"2174+"},{"1":"2174","2":"0","3":"2174+"},{"1":"2263","2":"0","3":"2263+"},{"1":"2263","2":"0","3":"2263+"},{"1":"1495","2":"1","3":"1495"},{"1":"1159","2":"1","3":"1159"},{"1":"314","2":"1","3":"314"},{"1":"113","2":"1","3":"113"},{"1":"2261","2":"0","3":"2261+"},{"1":"1455","2":"1","3":"1455"},{"1":"716","2":"1","3":"716"},{"1":"398","2":"1","3":"398"},{"1":"2190","2":"0","3":"2190+"},{"1":"2190","2":"0","3":"2190+"},{"1":"2331","2":"0","3":"2331+"},{"1":"434","2":"1","3":"434"},{"1":"2187","2":"0","3":"2187+"},{"1":"2187","2":"0","3":"2187+"},{"1":"602","2":"1","3":"602"},{"1":"157","2":"1","3":"157"},{"1":"666","2":"1","3":"666"},{"1":"405","2":"1","3":"405"},{"1":"138","2":"1","3":"138"},{"1":"86","2":"1","3":"86"},{"1":"2001","2":"0","3":"2001+"},{"1":"2001","2":"0","3":"2001+"},{"1":"887","2":"1","3":"887"},{"1":"554","2":"1","3":"554"},{"1":"1207","2":"1","3":"1207"},{"1":"189","2":"1","3":"189"},{"1":"1997","2":"0","3":"1997+"},{"1":"1997","2":"0","3":"1997+"},{"1":"1864","2":"0","3":"1864+"},{"1":"1864","2":"0","3":"1864+"},{"1":"2422","2":"0","3":"2422+"},{"1":"2422","2":"0","3":"2422+"},{"1":"444","2":"1","3":"444"},{"1":"271","2":"1","3":"271"},{"1":"2375","2":"0","3":"2375+"},{"1":"2375","2":"0","3":"2375+"},{"1":"718","2":"1","3":"718"},{"1":"337","2":"1","3":"337"},{"1":"2204","2":"0","3":"2204+"},{"1":"2204","2":"0","3":"2204+"},{"1":"2120","2":"0","3":"2120+"},{"1":"2120","2":"0","3":"2120+"},{"1":"766","2":"1","3":"766"},{"1":"294","2":"1","3":"294"},{"1":"366","2":"1","3":"366"},{"1":"333","2":"1","3":"333"},{"1":"1752","2":"1","3":"1752"},{"1":"8","2":"1","3":"8"},{"1":"2183","2":"0","3":"2183+"},{"1":"2183","2":"0","3":"2183+"},{"1":"1902","2":"0","3":"1902+"},{"1":"1902","2":"0","3":"1902+"},{"1":"259","2":"1","3":"259"},{"1":"108","2":"1","3":"108"},{"1":"609","2":"1","3":"609"},{"1":"328","2":"1","3":"328"},{"1":"832","2":"1","3":"832"},{"1":"382","2":"1","3":"382"},{"1":"164","2":"1","3":"164"},{"1":"109","2":"1","3":"109"},{"1":"1828","2":"0","3":"1828+"},{"1":"1828","2":"0","3":"1828+"},{"1":"2147","2":"0","3":"2147+"},{"1":"2147","2":"0","3":"2147+"},{"1":"201","2":"1","3":"201"},{"1":"106","2":"1","3":"106"},{"1":"2221","2":"0","3":"2221+"},{"1":"2221","2":"0","3":"2221+"},{"1":"503","2":"1","3":"503"},{"1":"296","2":"1","3":"296"},{"1":"376","2":"1","3":"376"},{"1":"230","2":"1","3":"230"},{"1":"811","2":"1","3":"811"},{"1":"466","2":"1","3":"466"},{"1":"1985","2":"0","3":"1985+"},{"1":"1985","2":"0","3":"1985+"},{"1":"2076","2":"0","3":"2076+"},{"1":"2076","2":"0","3":"2076+"},{"1":"1154","2":"1","3":"1154"},{"1":"565","2":"1","3":"565"},{"1":"844","2":"1","3":"844"},{"1":"844","2":"0","3":"844+"},{"1":"1031","2":"1","3":"1031"},{"1":"577","2":"1","3":"577"},{"1":"1302","2":"1","3":"1302"},{"1":"683","2":"1","3":"683"},{"1":"2169","2":"0","3":"2169+"},{"1":"2169","2":"0","3":"2169+"},{"1":"1929","2":"0","3":"1929+"},{"1":"1929","2":"0","3":"1929+"},{"1":"1800","2":"0","3":"1800+"},{"1":"1800","2":"0","3":"1800+"},{"1":"355","2":"1","3":"355"},{"1":"85","2":"1","3":"85"},{"1":"669","2":"1","3":"669"},{"1":"599","2":"1","3":"599"},{"1":"465","2":"1","3":"465"},{"1":"166","2":"1","3":"166"},{"1":"2157","2":"0","3":"2157+"},{"1":"2157","2":"0","3":"2157+"},{"1":"929","2":"1","3":"929"},{"1":"752","2":"1","3":"752"},{"1":"2242","2":"0","3":"2242+"},{"1":"224","2":"1","3":"224"},{"1":"2212","2":"0","3":"2212+"},{"1":"2067","2":"1","3":"2067"},{"1":"2148","2":"0","3":"2148+"},{"1":"2148","2":"0","3":"2148+"},{"1":"171","2":"1","3":"171"},{"1":"35","2":"1","3":"35"},{"1":"629","2":"1","3":"629"},{"1":"366","2":"1","3":"366"},{"1":"1829","2":"1","3":"1829"},{"1":"1029","2":"1","3":"1029"},{"1":"1939","2":"0","3":"1939+"},{"1":"1939","2":"0","3":"1939+"},{"1":"529","2":"1","3":"529"},{"1":"393","2":"1","3":"393"},{"1":"2130","2":"0","3":"2130+"},{"1":"2130","2":"0","3":"2130+"},{"1":"1990","2":"0","3":"1990+"},{"1":"1990","2":"0","3":"1990+"},{"1":"587","2":"1","3":"587"},{"1":"286","2":"1","3":"286"},{"1":"1145","2":"1","3":"1145"},{"1":"482","2":"1","3":"482"},{"1":"2162","2":"0","3":"2162+"},{"1":"2162","2":"0","3":"2162+"},{"1":"643","2":"1","3":"643"},{"1":"134","2":"1","3":"134"},{"1":"2129","2":"0","3":"2129+"},{"1":"429","2":"1","3":"429"},{"1":"1437","2":"1","3":"1437"},{"1":"401","2":"1","3":"401"},{"1":"512","2":"1","3":"512"},{"1":"300","2":"1","3":"300"},{"1":"2008","2":"0","3":"2008+"},{"1":"2008","2":"0","3":"2008+"},{"1":"1814","2":"0","3":"1814+"},{"1":"1814","2":"0","3":"1814+"},{"1":"2161","2":"0","3":"2161+"},{"1":"2161","2":"0","3":"2161+"},{"1":"506","2":"1","3":"506"},{"1":"188","2":"1","3":"188"},{"1":"1482","2":"1","3":"1482"},{"1":"712","2":"1","3":"712"},{"1":"1964","2":"0","3":"1964+"},{"1":"1964","2":"0","3":"1964+"},{"1":"693","2":"1","3":"693"},{"1":"132","2":"1","3":"132"},{"1":"592","2":"1","3":"592"},{"1":"242","2":"1","3":"242"},{"1":"2207","2":"0","3":"2207+"},{"1":"2207","2":"0","3":"2207+"},{"1":"2181","2":"0","3":"2181+"},{"1":"2181","2":"0","3":"2181+"},{"1":"696","2":"1","3":"696"},{"1":"466","2":"1","3":"466"},{"1":"257","2":"1","3":"257"},{"1":"145","2":"1","3":"145"},{"1":"2171","2":"1","3":"2171"},{"1":"1551","2":"1","3":"1551"},{"1":"2209","2":"0","3":"2209+"},{"1":"2209","2":"0","3":"2209+"},{"1":"1122","2":"1","3":"1122"},{"1":"413","2":"1","3":"413"},{"1":"936","2":"1","3":"936"},{"1":"659","2":"1","3":"659"},{"1":"601","2":"1","3":"601"},{"1":"160","2":"1","3":"160"},{"1":"2265","2":"0","3":"2265+"},{"1":"2036","2":"1","3":"2036"},{"1":"2198","2":"0","3":"2198+"},{"1":"2198","2":"0","3":"2198+"},{"1":"275","2":"1","3":"275"},{"1":"173","2":"1","3":"173"},{"1":"1195","2":"1","3":"1195"},{"1":"730","2":"1","3":"730"},{"1":"2099","2":"0","3":"2099+"},{"1":"2099","2":"0","3":"2099+"},{"1":"2165","2":"0","3":"2165+"},{"1":"2165","2":"0","3":"2165+"},{"1":"2212","2":"0","3":"2212+"},{"1":"2212","2":"0","3":"2212+"},{"1":"355","2":"1","3":"355"},{"1":"355","2":"0","3":"355+"},{"1":"2097","2":"0","3":"2097+"},{"1":"2097","2":"0","3":"2097+"},{"1":"56","2":"1","3":"56"},{"1":"56","2":"0","3":"56+"},{"1":"589","2":"1","3":"589"},{"1":"386","2":"1","3":"386"},{"1":"510","2":"1","3":"510"},{"1":"378","2":"1","3":"378"},{"1":"2250","2":"0","3":"2250+"},{"1":"2250","2":"0","3":"2250+"},{"1":"612","2":"1","3":"612"},{"1":"223","2":"1","3":"223"},{"1":"2284","2":"0","3":"2284+"},{"1":"2284","2":"0","3":"2284+"},{"1":"1992","2":"0","3":"1992+"},{"1":"1992","2":"0","3":"1992+"},{"1":"251","2":"1","3":"251"},{"1":"218","2":"1","3":"218"},{"1":"2070","2":"0","3":"2070+"},{"1":"2070","2":"0","3":"2070+"},{"1":"1209","2":"1","3":"1209"},{"1":"774","2":"1","3":"774"},{"1":"2122","2":"0","3":"2122+"},{"1":"2122","2":"0","3":"2122+"},{"1":"2111","2":"0","3":"2111+"},{"1":"2111","2":"0","3":"2111+"},{"1":"274","2":"1","3":"274"},{"1":"198","2":"1","3":"198"},{"1":"1306","2":"1","3":"1306"},{"1":"1032","2":"1","3":"1032"},{"1":"1325","2":"1","3":"1325"},{"1":"751","2":"1","3":"751"},{"1":"1968","2":"0","3":"1968+"},{"1":"1968","2":"0","3":"1968+"},{"1":"753","2":"1","3":"753"},{"1":"131","2":"1","3":"131"},{"1":"760","2":"1","3":"760"},{"1":"271","2":"1","3":"271"},{"1":"1861","2":"0","3":"1861+"},{"1":"1861","2":"0","3":"1861+"},{"1":"1138","2":"1","3":"1138"},{"1":"616","2":"1","3":"616"},{"1":"2167","2":"0","3":"2167+"},{"1":"2167","2":"0","3":"2167+"},{"1":"1944","2":"0","3":"1944+"},{"1":"1743","2":"1","3":"1743"},{"1":"372","2":"1","3":"372"},{"1":"85","2":"1","3":"85"},{"1":"1792","2":"0","3":"1792+"},{"1":"1792","2":"0","3":"1792+"},{"1":"986","2":"1","3":"986"},{"1":"458","2":"1","3":"458"},{"1":"2378","2":"0","3":"2378+"},{"1":"2378","2":"0","3":"2378+"},{"1":"390","2":"1","3":"390"},{"1":"334","2":"1","3":"334"},{"1":"642","2":"1","3":"642"},{"1":"356","2":"1","3":"356"},{"1":"2345","2":"0","3":"2345+"},{"1":"1052","2":"1","3":"1052"},{"1":"2254","2":"0","3":"2254+"},{"1":"1114","2":"1","3":"1114"},{"1":"2118","2":"0","3":"2118+"},{"1":"2118","2":"0","3":"2118+"},{"1":"1831","2":"1","3":"1831"},{"1":"1831","2":"0","3":"1831+"},{"1":"2167","2":"0","3":"2167+"},{"1":"2167","2":"0","3":"2167+"},{"1":"1198","2":"1","3":"1198"},{"1":"1198","2":"0","3":"1198+"},{"1":"2050","2":"0","3":"2050+"},{"1":"2050","2":"0","3":"2050+"},{"1":"271","2":"1","3":"271"},{"1":"116","2":"1","3":"116"},{"1":"2138","2":"0","3":"2138+"},{"1":"181","2":"1","3":"181"},{"1":"1891","2":"0","3":"1891+"},{"1":"1891","2":"0","3":"1891+"},{"1":"1313","2":"1","3":"1313"},{"1":"344","2":"1","3":"344"},{"1":"1853","2":"0","3":"1853+"},{"1":"1853","2":"0","3":"1853+"},{"1":"2130","2":"0","3":"2130+"},{"1":"2130","2":"0","3":"2130+"},{"1":"150","2":"1","3":"150"},{"1":"100","2":"1","3":"100"},{"1":"759","2":"1","3":"759"},{"1":"91","2":"1","3":"91"},{"1":"2100","2":"0","3":"2100+"},{"1":"2100","2":"0","3":"2100+"},{"1":"2101","2":"0","3":"2101+"},{"1":"602","2":"1","3":"602"},{"1":"942","2":"1","3":"942"},{"1":"883","2":"1","3":"883"},{"1":"1823","2":"0","3":"1823+"},{"1":"1823","2":"0","3":"1823+"},{"1":"665","2":"1","3":"665"},{"1":"665","2":"0","3":"665+"},{"1":"1656","2":"1","3":"1656"},{"1":"1057","2":"1","3":"1057"},{"1":"1969","2":"0","3":"1969+"},{"1":"1969","2":"0","3":"1969+"},{"1":"2190","2":"0","3":"2190+"},{"1":"2190","2":"0","3":"2190+"},{"1":"576","2":"1","3":"576"},{"1":"230","2":"1","3":"230"},{"1":"1103","2":"1","3":"1103"},{"1":"1103","2":"0","3":"1103+"},{"1":"1046","2":"1","3":"1046"},{"1":"513","2":"1","3":"513"},{"1":"1929","2":"0","3":"1929+"},{"1":"1929","2":"0","3":"1929+"},{"1":"125","2":"1","3":"125"},{"1":"94","2":"1","3":"94"},{"1":"187","2":"1","3":"187"},{"1":"167","2":"1","3":"167"},{"1":"939","2":"1","3":"939"},{"1":"922","2":"1","3":"922"},{"1":"887","2":"1","3":"887"},{"1":"887","2":"0","3":"887+"},{"1":"1803","2":"0","3":"1803+"},{"1":"1803","2":"0","3":"1803+"},{"1":"2018","2":"0","3":"2018+"},{"1":"2018","2":"0","3":"2018+"},{"1":"1509","2":"1","3":"1509"},{"1":"1275","2":"1","3":"1275"},{"1":"314","2":"1","3":"314"},{"1":"274","2":"1","3":"274"},{"1":"1971","2":"0","3":"1971+"},{"1":"1971","2":"0","3":"1971+"},{"1":"1827","2":"0","3":"1827+"},{"1":"1827","2":"0","3":"1827+"},{"1":"1079","2":"1","3":"1079"},{"1":"99","2":"1","3":"99"},{"1":"2114","2":"0","3":"2114+"},{"1":"2114","2":"0","3":"2114+"},{"1":"1262","2":"1","3":"1262"},{"1":"438","2":"1","3":"438"},{"1":"259","2":"1","3":"259"},{"1":"122","2":"1","3":"122"},{"1":"323","2":"1","3":"323"},{"1":"78","2":"1","3":"78"},{"1":"678","2":"1","3":"678"},{"1":"532","2":"1","3":"532"},{"1":"1827","2":"0","3":"1827+"},{"1":"1827","2":"0","3":"1827+"},{"1":"1399","2":"1","3":"1399"},{"1":"476","2":"1","3":"476"},{"1":"1022","2":"1","3":"1022"},{"1":"329","2":"1","3":"329"},{"1":"2240","2":"0","3":"2240+"},{"1":"2240","2":"0","3":"2240+"},{"1":"2158","2":"0","3":"2158+"},{"1":"2158","2":"0","3":"2158+"},{"1":"1875","2":"0","3":"1875+"},{"1":"1875","2":"0","3":"1875+"},{"1":"2154","2":"0","3":"2154+"},{"1":"2154","2":"0","3":"2154+"},{"1":"1018","2":"1","3":"1018"},{"1":"851","2":"1","3":"851"},{"1":"2072","2":"0","3":"2072+"},{"1":"2072","2":"0","3":"2072+"},{"1":"1820","2":"0","3":"1820+"},{"1":"1820","2":"0","3":"1820+"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> --- # Kaplan-meier plot .large[ 생존분석에서 table 1의 의미 - 보통 **logrank test p-value** 를 같이 보여줌. ] <img src="index_files/figure-html/unnamed-chunk-49-1.png" width="50%" style="display: block; margin: auto;" /> --- ``` ## Call: survfit(formula = Surv(time, status) ~ rx, data = colon) ## ## rx=Obs ## time n.risk n.event survival std.err lower 95% CI upper 95% CI ## 20 630 1 0.998 0.00159 0.995 1.000 ## 36 629 1 0.997 0.00224 0.992 1.000 ## 43 628 1 0.995 0.00274 0.990 1.000 ## 45 627 1 0.994 0.00316 0.987 1.000 ## 59 626 1 0.992 0.00354 0.985 0.999 ## 72 625 1 0.990 0.00387 0.983 0.998 ## 77 624 1 0.989 0.00418 0.981 0.997 ## 79 623 1 0.987 0.00446 0.979 0.996 ## 80 622 2 0.984 0.00498 0.974 0.994 ## 85 620 1 0.983 0.00522 0.972 0.993 ## 86 619 1 0.981 0.00545 0.970 0.992 ## 88 618 1 0.979 0.00566 0.968 0.991 ## 94 617 1 0.978 0.00587 0.966 0.989 ## 98 616 1 0.976 0.00607 0.964 0.988 ## 99 615 2 0.973 0.00646 0.960 0.986 ## 101 613 1 0.971 0.00664 0.959 0.985 ## 102 612 1 0.970 0.00681 0.957 0.983 ## 103 611 1 0.968 0.00699 0.955 0.982 ## 106 610 1 0.967 0.00715 0.953 0.981 ## 108 609 1 0.965 0.00731 0.951 0.980 ## 109 608 1 0.963 0.00747 0.949 0.978 ## 113 607 2 0.960 0.00778 0.945 0.976 ## 118 605 1 0.959 0.00792 0.943 0.974 ## 121 604 1 0.957 0.00807 0.941 0.973 ## 122 603 1 0.956 0.00821 0.940 0.972 ## 125 602 1 0.954 0.00835 0.938 0.970 ## 127 601 1 0.952 0.00848 0.936 0.969 ## 131 600 1 0.951 0.00862 0.934 0.968 ## 139 599 1 0.949 0.00875 0.932 0.967 ## 143 598 1 0.948 0.00888 0.930 0.965 ## 145 597 1 0.946 0.00900 0.929 0.964 ## 154 596 1 0.944 0.00913 0.927 0.963 ## 157 595 1 0.943 0.00925 0.925 0.961 ## 161 594 1 0.941 0.00937 0.923 0.960 ## 164 593 1 0.940 0.00949 0.921 0.958 ## 165 592 2 0.937 0.00972 0.918 0.956 ## 166 590 2 0.933 0.00994 0.914 0.953 ## 167 588 1 0.932 0.01005 0.912 0.952 ## 173 587 3 0.927 0.01037 0.907 0.948 ## 174 584 1 0.925 0.01047 0.905 0.946 ## 185 583 2 0.922 0.01067 0.902 0.943 ## 187 581 1 0.921 0.01077 0.900 0.942 ## 188 580 1 0.919 0.01087 0.898 0.941 ## 189 579 1 0.917 0.01096 0.896 0.939 ## 201 578 2 0.914 0.01115 0.893 0.936 ## 203 576 1 0.913 0.01125 0.891 0.935 ## 208 575 2 0.910 0.01143 0.887 0.932 ## 215 573 2 0.906 0.01161 0.884 0.929 ## 218 571 2 0.903 0.01178 0.880 0.927 ## 221 569 1 0.902 0.01187 0.879 0.925 ## 223 568 1 0.900 0.01195 0.877 0.924 ## 227 567 1 0.898 0.01204 0.875 0.922 ## 228 566 1 0.897 0.01212 0.873 0.921 ## 229 565 1 0.895 0.01220 0.872 0.919 ## 230 564 3 0.890 0.01244 0.866 0.915 ## 237 561 1 0.889 0.01252 0.865 0.914 ## 238 560 3 0.884 0.01275 0.859 0.909 ## 241 557 1 0.883 0.01283 0.858 0.908 ## 242 556 1 0.881 0.01290 0.856 0.907 ## 243 555 1 0.879 0.01298 0.854 0.905 ## 245 554 1 0.878 0.01305 0.853 0.904 ## 253 553 1 0.876 0.01312 0.851 0.902 ## 256 552 1 0.875 0.01319 0.849 0.901 ## 257 551 1 0.873 0.01327 0.847 0.899 ## 259 550 2 0.870 0.01341 0.844 0.897 ## 263 548 1 0.868 0.01347 0.842 0.895 ## 264 547 2 0.865 0.01361 0.839 0.892 ## 271 545 1 0.863 0.01368 0.837 0.891 ## 273 544 1 0.862 0.01375 0.835 0.889 ## 275 543 1 0.860 0.01381 0.834 0.888 ## 276 542 1 0.859 0.01388 0.832 0.886 ## 279 541 1 0.857 0.01394 0.830 0.885 ## 280 540 1 0.856 0.01401 0.829 0.883 ## 286 539 1 0.854 0.01407 0.827 0.882 ## 289 538 1 0.852 0.01413 0.825 0.881 ## 291 537 1 0.851 0.01420 0.823 0.879 ## 294 536 1 0.849 0.01426 0.822 0.878 ## 296 535 1 0.848 0.01432 0.820 0.876 ## 304 534 1 0.846 0.01438 0.818 0.875 ## 308 533 1 0.844 0.01444 0.817 0.873 ## 311 532 1 0.843 0.01450 0.815 0.872 ## 313 531 1 0.841 0.01456 0.813 0.870 ## 315 530 1 0.840 0.01462 0.812 0.869 ## 322 529 1 0.838 0.01468 0.810 0.867 ## 331 528 1 0.837 0.01473 0.808 0.866 ## 334 527 1 0.835 0.01479 0.806 0.864 ## 337 526 1 0.833 0.01485 0.805 0.863 ## 344 525 1 0.832 0.01490 0.803 0.861 ## 349 524 1 0.830 0.01496 0.801 0.860 ## 352 523 1 0.829 0.01502 0.800 0.859 ## 354 522 1 0.827 0.01507 0.798 0.857 ## 360 521 1 0.825 0.01512 0.796 0.856 ## 362 520 1 0.824 0.01518 0.795 0.854 ## 365 519 1 0.822 0.01523 0.793 0.853 ## 372 518 1 0.821 0.01529 0.791 0.851 ## 374 517 1 0.819 0.01534 0.790 0.850 ## 378 516 1 0.817 0.01539 0.788 0.848 ## 379 515 1 0.816 0.01544 0.786 0.847 ## 381 514 1 0.814 0.01549 0.784 0.845 ## 382 513 1 0.813 0.01554 0.783 0.844 ## 384 512 3 0.808 0.01569 0.778 0.839 ## 390 509 1 0.806 0.01574 0.776 0.838 ## 398 508 1 0.805 0.01579 0.774 0.836 ## 401 507 1 0.803 0.01584 0.773 0.835 ## 402 506 1 0.802 0.01589 0.771 0.833 ## 406 505 1 0.800 0.01594 0.769 0.832 ## 409 504 1 0.798 0.01598 0.768 0.830 ## 411 503 2 0.795 0.01608 0.764 0.827 ## 413 501 2 0.792 0.01617 0.761 0.824 ## 417 499 1 0.790 0.01621 0.759 0.823 ## 421 498 1 0.789 0.01626 0.758 0.821 ## 433 496 2 0.786 0.01635 0.754 0.818 ## 435 494 1 0.784 0.01639 0.753 0.817 ## 437 493 2 0.781 0.01648 0.749 0.814 ## 438 491 2 0.778 0.01657 0.746 0.811 ## 459 487 1 0.776 0.01661 0.744 0.809 ## 461 486 1 0.775 0.01665 0.743 0.808 ## 462 485 1 0.773 0.01669 0.741 0.806 ## 464 484 1 0.771 0.01673 0.739 0.805 ## 465 483 2 0.768 0.01682 0.736 0.802 ## 469 481 1 0.767 0.01686 0.734 0.800 ## 474 480 1 0.765 0.01690 0.733 0.799 ## 480 479 1 0.763 0.01694 0.731 0.797 ## 485 478 1 0.762 0.01698 0.729 0.796 ## 489 476 1 0.760 0.01702 0.728 0.794 ## 493 475 1 0.759 0.01706 0.726 0.793 ## 495 474 1 0.757 0.01710 0.724 0.791 ## 496 473 1 0.755 0.01713 0.723 0.790 ## 499 472 2 0.752 0.01721 0.719 0.787 ## 506 470 1 0.751 0.01725 0.718 0.785 ## 510 469 1 0.749 0.01728 0.716 0.784 ## 523 468 1 0.747 0.01732 0.714 0.782 ## 528 467 1 0.746 0.01736 0.713 0.781 ## 532 466 1 0.744 0.01740 0.711 0.779 ## 534 465 1 0.743 0.01743 0.709 0.778 ## 537 464 1 0.741 0.01747 0.708 0.776 ## 540 463 1 0.739 0.01750 0.706 0.774 ## 542 462 1 0.738 0.01754 0.704 0.773 ## 543 461 1 0.736 0.01757 0.703 0.771 ## 547 460 1 0.735 0.01761 0.701 0.770 ## 555 459 1 0.733 0.01764 0.699 0.768 ## 561 458 1 0.731 0.01767 0.698 0.767 ## 563 457 2 0.728 0.01774 0.694 0.764 ## 570 455 1 0.727 0.01777 0.693 0.762 ## 576 454 1 0.725 0.01781 0.691 0.761 ## 577 453 1 0.723 0.01784 0.689 0.759 ## 581 452 1 0.722 0.01787 0.688 0.758 ## 587 451 1 0.720 0.01790 0.686 0.756 ## 591 450 1 0.719 0.01794 0.684 0.755 ## 593 449 1 0.717 0.01797 0.683 0.753 ## 594 448 1 0.715 0.01800 0.681 0.752 ## 595 447 1 0.714 0.01803 0.679 0.750 ## 599 446 1 0.712 0.01806 0.678 0.748 ## 608 444 1 0.711 0.01809 0.676 0.747 ## 612 443 1 0.709 0.01812 0.674 0.745 ## 622 442 1 0.707 0.01815 0.673 0.744 ## 625 441 1 0.706 0.01818 0.671 0.742 ## 632 440 1 0.704 0.01821 0.669 0.741 ## 659 439 2 0.701 0.01827 0.666 0.738 ## 663 437 2 0.698 0.01832 0.663 0.735 ## 665 435 1 0.696 0.01835 0.661 0.733 ## 670 433 1 0.695 0.01838 0.659 0.731 ## 673 432 1 0.693 0.01841 0.658 0.730 ## 685 431 1 0.691 0.01843 0.656 0.728 ## 686 430 1 0.690 0.01846 0.654 0.727 ## 687 429 1 0.688 0.01849 0.653 0.725 ## 692 428 1 0.686 0.01851 0.651 0.724 ## 700 427 1 0.685 0.01854 0.649 0.722 ## 702 426 2 0.682 0.01859 0.646 0.719 ## 709 424 1 0.680 0.01862 0.645 0.718 ## 712 423 1 0.678 0.01864 0.643 0.716 ## 716 422 1 0.677 0.01867 0.641 0.714 ## 717 421 1 0.675 0.01869 0.640 0.713 ## 718 420 1 0.674 0.01872 0.638 0.711 ## 721 419 1 0.672 0.01874 0.636 0.710 ## 726 418 1 0.670 0.01877 0.635 0.708 ## 730 417 1 0.669 0.01879 0.633 0.707 ## 731 416 1 0.667 0.01881 0.631 0.705 ## 735 415 1 0.666 0.01884 0.630 0.704 ## 739 414 1 0.664 0.01886 0.628 0.702 ## 743 413 1 0.662 0.01888 0.626 0.700 ## 748 412 1 0.661 0.01890 0.625 0.699 ## 752 411 1 0.659 0.01893 0.623 0.697 ## 753 410 1 0.658 0.01895 0.621 0.696 ## 758 409 1 0.656 0.01897 0.620 0.694 ## 760 408 1 0.654 0.01899 0.618 0.693 ## 761 407 1 0.653 0.01901 0.617 0.691 ## 770 406 1 0.651 0.01903 0.615 0.690 ## 772 405 1 0.650 0.01906 0.613 0.688 ## 774 404 2 0.646 0.01910 0.610 0.685 ## 775 402 1 0.645 0.01912 0.608 0.683 ## 803 401 1 0.643 0.01914 0.607 0.682 ## 832 400 1 0.641 0.01916 0.605 0.680 ## 833 399 1 0.640 0.01917 0.603 0.679 ## 835 398 1 0.638 0.01919 0.602 0.677 ## 840 397 1 0.637 0.01921 0.600 0.675 ## 845 396 1 0.635 0.01923 0.598 0.674 ## 854 394 1 0.633 0.01925 0.597 0.672 ## 855 393 1 0.632 0.01927 0.595 0.671 ## 863 392 1 0.630 0.01929 0.594 0.669 ## 871 391 1 0.629 0.01930 0.592 0.668 ## 874 390 1 0.627 0.01932 0.590 0.666 ## 883 389 1 0.625 0.01934 0.589 0.664 ## 887 388 1 0.624 0.01936 0.587 0.663 ## 901 386 1 0.622 0.01937 0.585 0.661 ## 912 385 1 0.621 0.01939 0.584 0.660 ## 924 384 1 0.619 0.01941 0.582 0.658 ## 928 383 1 0.617 0.01942 0.580 0.657 ## 929 382 1 0.616 0.01944 0.579 0.655 ## 930 381 1 0.614 0.01946 0.577 0.653 ## 936 380 1 0.612 0.01947 0.575 0.652 ## 949 379 1 0.611 0.01949 0.574 0.650 ## 957 378 1 0.609 0.01950 0.572 0.649 ## 961 377 1 0.608 0.01952 0.571 0.647 ## 963 376 1 0.606 0.01953 0.569 0.646 ## 966 375 1 0.604 0.01955 0.567 0.644 ## 975 374 1 0.603 0.01956 0.566 0.642 ## 976 373 1 0.601 0.01958 0.564 0.641 ## 1020 372 1 0.600 0.01959 0.562 0.639 ## 1021 371 1 0.598 0.01960 0.561 0.638 ## 1031 370 1 0.596 0.01962 0.559 0.636 ## 1042 369 1 0.595 0.01963 0.557 0.634 ## 1048 368 1 0.593 0.01964 0.556 0.633 ## 1057 367 2 0.590 0.01967 0.553 0.630 ## 1070 365 1 0.588 0.01968 0.551 0.628 ## 1079 364 1 0.587 0.01969 0.549 0.626 ## 1081 363 1 0.585 0.01971 0.548 0.625 ## 1083 362 1 0.583 0.01972 0.546 0.623 ## 1089 361 1 0.582 0.01973 0.544 0.622 ## 1101 360 1 0.580 0.01974 0.543 0.620 ## 1106 359 1 0.579 0.01975 0.541 0.619 ## 1130 358 1 0.577 0.01976 0.539 0.617 ## 1133 357 1 0.575 0.01977 0.538 0.615 ## 1134 356 1 0.574 0.01978 0.536 0.614 ## 1136 355 1 0.572 0.01979 0.535 0.612 ## 1139 354 2 0.569 0.01981 0.531 0.609 ## 1159 352 1 0.567 0.01982 0.530 0.607 ## 1166 351 1 0.566 0.01983 0.528 0.606 ## 1178 350 1 0.564 0.01984 0.526 0.604 ## 1195 349 1 0.562 0.01985 0.525 0.603 ## 1198 348 1 0.561 0.01986 0.523 0.601 ## 1209 346 1 0.559 0.01987 0.522 0.599 ## 1216 345 1 0.557 0.01988 0.520 0.598 ## 1230 344 1 0.556 0.01988 0.518 0.596 ## 1236 343 1 0.554 0.01989 0.517 0.595 ## 1237 342 1 0.553 0.01990 0.515 0.593 ## 1246 341 1 0.551 0.01991 0.513 0.591 ## 1262 340 1 0.549 0.01991 0.512 0.590 ## 1272 339 1 0.548 0.01992 0.510 0.588 ## 1274 338 1 0.546 0.01993 0.508 0.587 ## 1290 337 1 0.545 0.01993 0.507 0.585 ## 1295 336 1 0.543 0.01994 0.505 0.583 ## 1304 335 1 0.541 0.01995 0.504 0.582 ## 1313 334 1 0.540 0.01995 0.502 0.580 ## 1314 333 1 0.538 0.01996 0.500 0.579 ## 1323 331 1 0.536 0.01996 0.499 0.577 ## 1327 330 1 0.535 0.01997 0.497 0.575 ## 1353 329 1 0.533 0.01998 0.495 0.574 ## 1363 328 1 0.532 0.01998 0.494 0.572 ## 1375 326 1 0.530 0.01999 0.492 0.571 ## 1432 325 1 0.528 0.01999 0.491 0.569 ## 1434 324 1 0.527 0.02000 0.489 0.567 ## 1436 323 1 0.525 0.02000 0.487 0.566 ## 1437 322 1 0.523 0.02000 0.486 0.564 ## 1446 321 1 0.522 0.02001 0.484 0.562 ## 1447 320 1 0.520 0.02001 0.482 0.561 ## 1455 319 1 0.519 0.02002 0.481 0.559 ## 1466 318 1 0.517 0.02002 0.479 0.558 ## 1475 317 1 0.515 0.02002 0.477 0.556 ## 1482 316 1 0.514 0.02003 0.476 0.554 ## 1530 315 1 0.512 0.02003 0.474 0.553 ## 1535 314 1 0.510 0.02003 0.473 0.551 ## 1539 313 1 0.509 0.02003 0.471 0.550 ## 1548 312 1 0.507 0.02003 0.469 0.548 ## 1606 311 1 0.505 0.02004 0.468 0.546 ## 1656 310 1 0.504 0.02004 0.466 0.545 ## 1679 309 1 0.502 0.02004 0.464 0.543 ## 1692 308 1 0.501 0.02004 0.463 0.541 ## 1723 307 1 0.499 0.02004 0.461 0.540 ## 1745 306 1 0.497 0.02004 0.460 0.538 ## 1749 305 1 0.496 0.02004 0.458 0.537 ## 1759 304 1 0.494 0.02004 0.456 0.535 ## 1772 303 1 0.492 0.02004 0.455 0.533 ## 1788 302 1 0.491 0.02004 0.453 0.532 ## 1790 301 1 0.489 0.02004 0.451 0.530 ## 1818 296 1 0.487 0.02004 0.450 0.528 ## 1875 280 1 0.486 0.02005 0.448 0.527 ## 1884 279 1 0.484 0.02005 0.446 0.525 ## 1896 276 1 0.482 0.02005 0.445 0.523 ## 1907 272 1 0.480 0.02006 0.443 0.521 ## 1915 271 1 0.479 0.02006 0.441 0.520 ## 1950 266 1 0.477 0.02007 0.439 0.518 ## 1981 261 1 0.475 0.02007 0.437 0.516 ## 2035 248 1 0.473 0.02008 0.435 0.514 ## 2036 247 1 0.471 0.02009 0.433 0.512 ## 2077 242 1 0.469 0.02011 0.432 0.510 ## 2083 241 1 0.467 0.02012 0.430 0.509 ## 2085 240 1 0.465 0.02013 0.428 0.507 ## 2133 218 1 0.463 0.02015 0.425 0.505 ## 2148 214 1 0.461 0.02017 0.423 0.502 ## 2171 196 1 0.459 0.02020 0.421 0.500 ## 2213 169 1 0.456 0.02026 0.418 0.498 ## 2257 148 1 0.453 0.02036 0.415 0.495 ## 2284 138 1 0.450 0.02048 0.411 0.492 ## 2287 137 1 0.446 0.02059 0.408 0.489 ## 2288 136 1 0.443 0.02070 0.404 0.486 ## 2351 120 1 0.439 0.02085 0.400 0.482 ## 2527 84 1 0.434 0.02125 0.394 0.478 ## 2552 76 1 0.428 0.02172 0.388 0.473 ## 2695 50 1 0.420 0.02292 0.377 0.467 ## 2789 28 1 0.405 0.02656 0.356 0.460 ## ## rx=Lev ## time n.risk n.event survival std.err lower 95% CI upper 95% CI ## 19 620 1 0.998 0.00161 0.995 1.000 ## 24 619 1 0.997 0.00228 0.992 1.000 ## 28 617 1 0.995 0.00279 0.990 1.000 ## 35 616 1 0.994 0.00322 0.987 1.000 ## 38 615 1 0.992 0.00360 0.985 0.999 ## 56 614 1 0.990 0.00394 0.983 0.998 ## 62 612 2 0.987 0.00454 0.978 0.996 ## 72 610 1 0.985 0.00481 0.976 0.995 ## 77 609 1 0.984 0.00507 0.974 0.994 ## 78 608 1 0.982 0.00531 0.972 0.993 ## 80 607 1 0.981 0.00554 0.970 0.992 ## 85 606 1 0.979 0.00577 0.968 0.990 ## 91 605 1 0.977 0.00598 0.966 0.989 ## 93 604 1 0.976 0.00619 0.964 0.988 ## 98 603 2 0.973 0.00657 0.960 0.985 ## 100 601 1 0.971 0.00676 0.958 0.984 ## 105 600 1 0.969 0.00694 0.956 0.983 ## 111 599 1 0.968 0.00711 0.954 0.982 ## 113 598 2 0.964 0.00745 0.950 0.979 ## 116 596 2 0.961 0.00777 0.946 0.977 ## 119 594 1 0.960 0.00792 0.944 0.975 ## 121 593 1 0.958 0.00807 0.942 0.974 ## 122 592 1 0.956 0.00822 0.940 0.973 ## 129 591 1 0.955 0.00836 0.938 0.971 ## 133 590 1 0.953 0.00850 0.937 0.970 ## 136 589 1 0.951 0.00864 0.935 0.969 ## 141 588 1 0.950 0.00878 0.933 0.967 ## 145 587 1 0.948 0.00891 0.931 0.966 ## 146 586 1 0.947 0.00904 0.929 0.965 ## 147 585 1 0.945 0.00917 0.927 0.963 ## 150 584 1 0.943 0.00929 0.925 0.962 ## 157 583 1 0.942 0.00942 0.923 0.960 ## 165 582 1 0.940 0.00954 0.922 0.959 ## 169 581 1 0.939 0.00966 0.920 0.958 ## 171 580 2 0.935 0.00989 0.916 0.955 ## 174 578 2 0.932 0.01012 0.912 0.952 ## 175 576 1 0.930 0.01023 0.911 0.951 ## 176 575 2 0.927 0.01045 0.907 0.948 ## 179 573 1 0.926 0.01056 0.905 0.947 ## 181 572 1 0.924 0.01066 0.903 0.945 ## 183 571 1 0.922 0.01076 0.901 0.944 ## 185 570 2 0.919 0.01097 0.898 0.941 ## 189 568 1 0.917 0.01107 0.896 0.939 ## 191 567 3 0.913 0.01136 0.891 0.935 ## 196 564 1 0.911 0.01145 0.889 0.934 ## 204 563 1 0.909 0.01155 0.887 0.932 ## 206 562 1 0.908 0.01164 0.885 0.931 ## 216 561 1 0.906 0.01173 0.883 0.929 ## 218 560 1 0.905 0.01182 0.882 0.928 ## 219 559 3 0.900 0.01208 0.876 0.924 ## 222 555 1 0.898 0.01217 0.875 0.922 ## 224 554 1 0.896 0.01226 0.873 0.921 ## 226 553 1 0.895 0.01234 0.871 0.919 ## 229 552 1 0.893 0.01242 0.869 0.918 ## 230 551 2 0.890 0.01259 0.866 0.915 ## 232 549 1 0.888 0.01267 0.864 0.914 ## 235 548 1 0.887 0.01275 0.862 0.912 ## 246 547 1 0.885 0.01283 0.860 0.911 ## 250 546 1 0.883 0.01291 0.859 0.909 ## 253 545 1 0.882 0.01298 0.857 0.908 ## 257 544 1 0.880 0.01306 0.855 0.906 ## 258 543 1 0.879 0.01314 0.853 0.905 ## 260 542 1 0.877 0.01321 0.851 0.903 ## 262 541 1 0.875 0.01329 0.850 0.902 ## 263 540 1 0.874 0.01336 0.848 0.900 ## 271 539 1 0.872 0.01343 0.846 0.899 ## 274 538 1 0.871 0.01351 0.844 0.897 ## 276 537 1 0.869 0.01358 0.843 0.896 ## 279 536 2 0.866 0.01372 0.839 0.893 ## 283 534 1 0.864 0.01379 0.837 0.891 ## 286 533 2 0.861 0.01393 0.834 0.889 ## 290 531 2 0.858 0.01406 0.830 0.886 ## 294 529 1 0.856 0.01413 0.829 0.884 ## 300 528 1 0.854 0.01420 0.827 0.883 ## 313 527 1 0.853 0.01426 0.825 0.881 ## 314 526 2 0.849 0.01439 0.822 0.878 ## 316 524 1 0.848 0.01445 0.820 0.877 ## 323 523 1 0.846 0.01452 0.818 0.875 ## 325 522 1 0.845 0.01458 0.816 0.874 ## 330 521 2 0.841 0.01470 0.813 0.871 ## 333 519 1 0.840 0.01476 0.811 0.869 ## 335 518 1 0.838 0.01482 0.810 0.868 ## 336 517 1 0.836 0.01488 0.808 0.866 ## 337 516 2 0.833 0.01500 0.804 0.863 ## 341 514 1 0.832 0.01506 0.803 0.862 ## 342 513 1 0.830 0.01512 0.801 0.860 ## 343 512 1 0.828 0.01517 0.799 0.859 ## 348 511 2 0.825 0.01529 0.796 0.856 ## 349 509 1 0.824 0.01534 0.794 0.854 ## 352 508 1 0.822 0.01540 0.792 0.853 ## 355 507 1 0.820 0.01545 0.791 0.851 ## 356 506 3 0.815 0.01561 0.785 0.847 ## 362 503 1 0.814 0.01567 0.784 0.845 ## 366 502 2 0.811 0.01577 0.780 0.842 ## 369 500 1 0.809 0.01582 0.778 0.841 ## 370 499 1 0.807 0.01587 0.777 0.839 ## 372 498 1 0.806 0.01592 0.775 0.837 ## 376 497 1 0.804 0.01597 0.773 0.836 ## 380 496 1 0.802 0.01602 0.772 0.834 ## 382 495 1 0.801 0.01607 0.770 0.833 ## 386 494 1 0.799 0.01612 0.768 0.831 ## 389 493 1 0.798 0.01617 0.766 0.830 ## 402 492 1 0.796 0.01622 0.765 0.828 ## 406 491 1 0.794 0.01627 0.763 0.827 ## 413 490 1 0.793 0.01631 0.761 0.825 ## 415 489 1 0.791 0.01636 0.760 0.824 ## 420 488 1 0.789 0.01641 0.758 0.822 ## 422 487 1 0.788 0.01645 0.756 0.821 ## 429 486 1 0.786 0.01650 0.755 0.819 ## 430 485 1 0.785 0.01655 0.753 0.818 ## 438 484 1 0.783 0.01659 0.751 0.816 ## 439 483 2 0.780 0.01668 0.748 0.813 ## 440 481 1 0.778 0.01672 0.746 0.812 ## 443 480 1 0.776 0.01677 0.744 0.810 ## 444 479 1 0.775 0.01681 0.743 0.809 ## 454 478 1 0.773 0.01685 0.741 0.807 ## 458 477 1 0.772 0.01690 0.739 0.805 ## 465 476 1 0.770 0.01694 0.738 0.804 ## 472 475 1 0.768 0.01698 0.736 0.802 ## 474 474 1 0.767 0.01702 0.734 0.801 ## 475 473 1 0.765 0.01706 0.732 0.799 ## 476 472 1 0.764 0.01710 0.731 0.798 ## 482 471 1 0.762 0.01714 0.729 0.796 ## 486 470 1 0.760 0.01718 0.727 0.795 ## 490 468 1 0.759 0.01722 0.726 0.793 ## 491 467 1 0.757 0.01726 0.724 0.792 ## 498 466 1 0.755 0.01730 0.722 0.790 ## 499 465 1 0.754 0.01734 0.721 0.789 ## 504 464 1 0.752 0.01738 0.719 0.787 ## 505 463 1 0.751 0.01742 0.717 0.785 ## 511 462 1 0.749 0.01745 0.715 0.784 ## 512 461 1 0.747 0.01749 0.714 0.782 ## 513 460 1 0.746 0.01753 0.712 0.781 ## 522 459 1 0.744 0.01757 0.710 0.779 ## 525 458 1 0.742 0.01760 0.709 0.778 ## 527 457 1 0.741 0.01764 0.707 0.776 ## 532 456 1 0.739 0.01768 0.705 0.775 ## 546 455 1 0.738 0.01771 0.704 0.773 ## 548 454 1 0.736 0.01775 0.702 0.772 ## 553 453 1 0.734 0.01778 0.700 0.770 ## 559 452 1 0.733 0.01782 0.699 0.768 ## 560 451 1 0.731 0.01785 0.697 0.767 ## 565 450 1 0.729 0.01788 0.695 0.765 ## 569 449 1 0.728 0.01792 0.694 0.764 ## 573 448 3 0.723 0.01802 0.688 0.759 ## 578 445 1 0.721 0.01805 0.687 0.758 ## 580 444 1 0.720 0.01808 0.685 0.756 ## 582 443 1 0.718 0.01811 0.683 0.754 ## 583 442 1 0.716 0.01815 0.682 0.753 ## 589 441 1 0.715 0.01818 0.680 0.751 ## 593 440 1 0.713 0.01821 0.678 0.750 ## 599 439 1 0.712 0.01824 0.677 0.748 ## 602 438 2 0.708 0.01830 0.673 0.745 ## 608 436 1 0.707 0.01833 0.672 0.744 ## 613 435 1 0.705 0.01836 0.670 0.742 ## 615 434 1 0.703 0.01839 0.668 0.740 ## 628 433 1 0.702 0.01842 0.667 0.739 ## 629 431 1 0.700 0.01845 0.665 0.737 ## 638 430 1 0.699 0.01848 0.663 0.736 ## 642 429 1 0.697 0.01851 0.662 0.734 ## 643 428 1 0.695 0.01853 0.660 0.733 ## 647 427 1 0.694 0.01856 0.658 0.731 ## 653 426 1 0.692 0.01859 0.657 0.729 ## 654 425 1 0.690 0.01862 0.655 0.728 ## 663 424 1 0.689 0.01864 0.653 0.726 ## 664 423 1 0.687 0.01867 0.652 0.725 ## 668 422 1 0.686 0.01870 0.650 0.723 ## 669 421 1 0.684 0.01872 0.648 0.722 ## 672 420 1 0.682 0.01875 0.646 0.720 ## 675 419 2 0.679 0.01880 0.643 0.717 ## 678 417 1 0.677 0.01883 0.641 0.715 ## 680 416 1 0.676 0.01885 0.640 0.714 ## 684 415 1 0.674 0.01888 0.638 0.712 ## 697 414 1 0.672 0.01890 0.636 0.711 ## 706 413 1 0.671 0.01893 0.635 0.709 ## 708 412 1 0.669 0.01895 0.633 0.707 ## 709 411 1 0.668 0.01897 0.631 0.706 ## 717 410 1 0.666 0.01900 0.630 0.704 ## 720 409 1 0.664 0.01902 0.628 0.703 ## 723 408 1 0.663 0.01904 0.626 0.701 ## 729 407 1 0.661 0.01907 0.625 0.700 ## 730 406 1 0.659 0.01909 0.623 0.698 ## 739 405 1 0.658 0.01911 0.621 0.696 ## 742 404 1 0.656 0.01913 0.620 0.695 ## 743 403 1 0.655 0.01915 0.618 0.693 ## 751 402 1 0.653 0.01918 0.616 0.692 ## 755 401 1 0.651 0.01920 0.615 0.690 ## 759 400 2 0.648 0.01924 0.611 0.687 ## 764 398 1 0.646 0.01926 0.610 0.685 ## 766 397 1 0.645 0.01928 0.608 0.684 ## 795 396 1 0.643 0.01930 0.606 0.682 ## 797 395 2 0.640 0.01934 0.603 0.679 ## 806 393 1 0.638 0.01936 0.601 0.677 ## 828 392 1 0.637 0.01938 0.600 0.676 ## 833 391 1 0.635 0.01939 0.598 0.674 ## 846 390 1 0.633 0.01941 0.596 0.673 ## 851 389 1 0.632 0.01943 0.595 0.671 ## 858 388 1 0.630 0.01945 0.593 0.669 ## 875 387 1 0.629 0.01947 0.592 0.668 ## 883 386 1 0.627 0.01948 0.590 0.666 ## 885 385 1 0.625 0.01950 0.588 0.665 ## 890 384 1 0.624 0.01952 0.587 0.663 ## 891 383 1 0.622 0.01954 0.585 0.662 ## 900 382 1 0.620 0.01955 0.583 0.660 ## 902 381 1 0.619 0.01957 0.582 0.658 ## 905 380 1 0.617 0.01959 0.580 0.657 ## 909 379 1 0.615 0.01960 0.578 0.655 ## 922 378 1 0.614 0.01962 0.577 0.654 ## 931 377 1 0.612 0.01963 0.575 0.652 ## 938 376 1 0.611 0.01965 0.573 0.650 ## 939 374 1 0.609 0.01966 0.572 0.649 ## 940 373 1 0.607 0.01968 0.570 0.647 ## 942 372 1 0.606 0.01969 0.568 0.646 ## 944 371 1 0.604 0.01971 0.567 0.644 ## 952 370 1 0.602 0.01972 0.565 0.642 ## 959 369 1 0.601 0.01973 0.563 0.641 ## 960 368 1 0.599 0.01975 0.562 0.639 ## 961 367 2 0.596 0.01978 0.558 0.636 ## 968 365 1 0.594 0.01979 0.557 0.634 ## 969 364 1 0.593 0.01980 0.555 0.633 ## 986 363 1 0.591 0.01981 0.553 0.631 ## 997 362 2 0.588 0.01984 0.550 0.628 ## 1013 360 1 0.586 0.01985 0.548 0.626 ## 1018 359 1 0.584 0.01986 0.547 0.625 ## 1026 358 1 0.583 0.01987 0.545 0.623 ## 1029 357 1 0.581 0.01989 0.544 0.622 ## 1034 356 1 0.580 0.01990 0.542 0.620 ## 1037 355 1 0.578 0.01991 0.540 0.618 ## 1041 354 1 0.576 0.01992 0.539 0.617 ## 1046 353 1 0.575 0.01993 0.537 0.615 ## 1052 352 1 0.573 0.01994 0.535 0.614 ## 1055 351 1 0.571 0.01995 0.534 0.612 ## 1061 350 1 0.570 0.01996 0.532 0.610 ## 1092 349 1 0.568 0.01997 0.530 0.609 ## 1103 348 1 0.567 0.01998 0.529 0.607 ## 1105 346 1 0.565 0.01999 0.527 0.605 ## 1108 345 1 0.563 0.01999 0.525 0.604 ## 1112 344 1 0.562 0.02000 0.524 0.602 ## 1114 343 1 0.560 0.02001 0.522 0.601 ## 1117 342 1 0.558 0.02002 0.520 0.599 ## 1122 341 1 0.557 0.02003 0.519 0.597 ## 1135 340 1 0.555 0.02004 0.517 0.596 ## 1145 339 1 0.553 0.02004 0.516 0.594 ## 1154 338 1 0.552 0.02005 0.514 0.593 ## 1161 337 1 0.550 0.02006 0.512 0.591 ## 1178 336 1 0.549 0.02007 0.511 0.589 ## 1183 335 1 0.547 0.02007 0.509 0.588 ## 1186 334 1 0.545 0.02008 0.507 0.586 ## 1191 333 1 0.544 0.02009 0.506 0.584 ## 1207 332 1 0.542 0.02009 0.504 0.583 ## 1211 331 1 0.540 0.02010 0.502 0.581 ## 1215 330 1 0.539 0.02010 0.501 0.580 ## 1219 329 1 0.537 0.02011 0.499 0.578 ## 1252 328 1 0.535 0.02011 0.497 0.576 ## 1262 327 1 0.534 0.02012 0.496 0.575 ## 1275 326 1 0.532 0.02012 0.494 0.573 ## 1295 325 1 0.531 0.02013 0.492 0.571 ## 1298 324 1 0.529 0.02013 0.491 0.570 ## 1325 323 1 0.527 0.02014 0.489 0.568 ## 1399 322 1 0.526 0.02014 0.488 0.567 ## 1405 321 1 0.524 0.02014 0.486 0.565 ## 1434 320 1 0.522 0.02015 0.484 0.563 ## 1471 319 1 0.521 0.02015 0.483 0.562 ## 1509 318 1 0.519 0.02015 0.481 0.560 ## 1540 315 1 0.517 0.02016 0.479 0.558 ## 1548 314 1 0.516 0.02016 0.478 0.557 ## 1551 312 1 0.514 0.02016 0.476 0.555 ## 1561 311 1 0.512 0.02017 0.474 0.554 ## 1564 310 1 0.511 0.02017 0.473 0.552 ## 1568 309 1 0.509 0.02017 0.471 0.550 ## 1589 308 1 0.507 0.02017 0.469 0.549 ## 1606 307 1 0.506 0.02018 0.468 0.547 ## 1647 306 1 0.504 0.02018 0.466 0.545 ## 1652 305 1 0.503 0.02018 0.464 0.544 ## 1687 304 1 0.501 0.02018 0.463 0.542 ## 1709 303 1 0.499 0.02018 0.461 0.540 ## 1768 302 1 0.498 0.02018 0.460 0.539 ## 1829 297 1 0.496 0.02018 0.458 0.537 ## 1839 294 1 0.494 0.02018 0.456 0.535 ## 1850 293 1 0.493 0.02019 0.455 0.534 ## 1851 292 1 0.491 0.02019 0.453 0.532 ## 1879 289 1 0.489 0.02019 0.451 0.530 ## 1885 286 1 0.487 0.02019 0.449 0.529 ## 1895 285 1 0.486 0.02019 0.448 0.527 ## 1918 282 1 0.484 0.02019 0.446 0.525 ## 1932 280 1 0.482 0.02020 0.444 0.524 ## 1976 273 1 0.480 0.02020 0.442 0.522 ## 2012 264 1 0.479 0.02020 0.441 0.520 ## 2018 263 1 0.477 0.02021 0.439 0.518 ## 2023 262 1 0.475 0.02021 0.437 0.516 ## 2067 253 1 0.473 0.02022 0.435 0.514 ## 2079 250 1 0.471 0.02023 0.433 0.513 ## 2128 236 1 0.469 0.02024 0.431 0.511 ## 2152 221 1 0.467 0.02026 0.429 0.509 ## 2171 214 1 0.465 0.02028 0.427 0.506 ## 2231 188 1 0.462 0.02033 0.424 0.504 ## 2458 119 1 0.459 0.02052 0.420 0.501 ## 2593 76 1 0.453 0.02112 0.413 0.496 ## 2683 60 1 0.445 0.02208 0.404 0.490 ## 2718 47 1 0.436 0.02355 0.392 0.484 ## 2910 16 1 0.408 0.03438 0.346 0.482 ## ## rx=Lev+5FU ## time n.risk n.event survival std.err lower 95% CI upper 95% CI ## 8 608 1 0.998 0.00164 0.995 1.000 ## 9 607 1 0.997 0.00232 0.992 1.000 ## 23 606 1 0.995 0.00284 0.990 1.000 ## 34 604 1 0.993 0.00328 0.987 1.000 ## 40 603 1 0.992 0.00367 0.985 0.999 ## 45 602 1 0.990 0.00401 0.982 0.998 ## 49 600 1 0.988 0.00433 0.980 0.997 ## 52 599 1 0.987 0.00463 0.978 0.996 ## 63 598 1 0.985 0.00491 0.976 0.995 ## 68 597 1 0.984 0.00517 0.973 0.994 ## 79 596 1 0.982 0.00542 0.971 0.993 ## 86 595 1 0.980 0.00565 0.969 0.991 ## 91 594 1 0.979 0.00588 0.967 0.990 ## 101 593 1 0.977 0.00610 0.965 0.989 ## 116 592 1 0.975 0.00631 0.963 0.988 ## 127 591 1 0.974 0.00651 0.961 0.986 ## 132 590 1 0.972 0.00670 0.959 0.985 ## 134 589 1 0.970 0.00689 0.957 0.984 ## 138 588 1 0.969 0.00707 0.955 0.983 ## 141 587 1 0.967 0.00725 0.953 0.981 ## 144 586 1 0.965 0.00742 0.951 0.980 ## 146 585 1 0.964 0.00759 0.949 0.979 ## 154 584 1 0.962 0.00776 0.947 0.977 ## 157 583 1 0.960 0.00792 0.945 0.976 ## 160 582 1 0.959 0.00807 0.943 0.975 ## 161 581 1 0.957 0.00823 0.941 0.973 ## 165 580 1 0.955 0.00838 0.939 0.972 ## 168 579 1 0.954 0.00852 0.937 0.971 ## 183 578 1 0.952 0.00867 0.935 0.969 ## 185 577 1 0.951 0.00881 0.933 0.968 ## 186 576 2 0.947 0.00908 0.930 0.965 ## 198 574 1 0.946 0.00921 0.928 0.964 ## 199 573 1 0.944 0.00934 0.926 0.962 ## 205 572 1 0.942 0.00947 0.924 0.961 ## 208 571 1 0.941 0.00960 0.922 0.960 ## 215 570 1 0.939 0.00972 0.920 0.958 ## 218 569 1 0.937 0.00984 0.918 0.957 ## 237 568 1 0.936 0.00996 0.916 0.955 ## 242 567 1 0.934 0.01008 0.914 0.954 ## 245 566 1 0.932 0.01020 0.913 0.953 ## 248 565 1 0.931 0.01031 0.911 0.951 ## 251 564 1 0.929 0.01043 0.909 0.950 ## 252 563 1 0.927 0.01054 0.907 0.948 ## 255 562 1 0.926 0.01065 0.905 0.947 ## 256 561 1 0.924 0.01076 0.903 0.945 ## 260 560 1 0.922 0.01086 0.901 0.944 ## 261 559 1 0.921 0.01097 0.900 0.943 ## 269 558 1 0.919 0.01107 0.898 0.941 ## 271 557 1 0.918 0.01117 0.896 0.940 ## 274 556 1 0.916 0.01127 0.894 0.938 ## 276 555 1 0.914 0.01137 0.892 0.937 ## 279 554 1 0.913 0.01147 0.890 0.935 ## 283 553 1 0.911 0.01157 0.889 0.934 ## 285 552 1 0.909 0.01167 0.887 0.932 ## 293 551 1 0.908 0.01176 0.885 0.931 ## 296 550 1 0.906 0.01186 0.883 0.929 ## 302 549 1 0.904 0.01195 0.881 0.928 ## 303 548 1 0.903 0.01204 0.879 0.927 ## 304 547 1 0.901 0.01213 0.878 0.925 ## 315 546 1 0.899 0.01222 0.876 0.924 ## 322 545 2 0.896 0.01240 0.872 0.921 ## 324 543 1 0.894 0.01248 0.870 0.919 ## 326 542 1 0.893 0.01257 0.868 0.918 ## 328 540 1 0.891 0.01265 0.867 0.916 ## 329 539 1 0.889 0.01274 0.865 0.915 ## 336 538 1 0.888 0.01282 0.863 0.913 ## 340 537 1 0.886 0.01290 0.861 0.912 ## 355 535 1 0.884 0.01298 0.859 0.910 ## 360 533 1 0.883 0.01307 0.858 0.909 ## 363 532 1 0.881 0.01315 0.856 0.907 ## 365 531 1 0.880 0.01323 0.854 0.906 ## 380 530 1 0.878 0.01330 0.852 0.904 ## 386 529 1 0.876 0.01338 0.850 0.903 ## 389 528 1 0.875 0.01346 0.849 0.901 ## 392 527 1 0.873 0.01354 0.847 0.900 ## 393 526 1 0.871 0.01361 0.845 0.898 ## 400 525 1 0.870 0.01369 0.843 0.897 ## 405 524 1 0.868 0.01376 0.841 0.895 ## 408 523 1 0.866 0.01383 0.840 0.894 ## 415 522 1 0.865 0.01391 0.838 0.892 ## 422 521 1 0.863 0.01398 0.836 0.891 ## 428 520 1 0.861 0.01405 0.834 0.889 ## 430 519 1 0.860 0.01412 0.832 0.888 ## 431 518 1 0.858 0.01419 0.831 0.886 ## 434 517 1 0.856 0.01426 0.829 0.885 ## 441 516 1 0.855 0.01433 0.827 0.883 ## 443 515 1 0.853 0.01440 0.825 0.882 ## 448 514 2 0.850 0.01453 0.822 0.879 ## 449 512 1 0.848 0.01460 0.820 0.877 ## 454 511 2 0.845 0.01473 0.816 0.874 ## 458 509 1 0.843 0.01479 0.815 0.872 ## 460 508 1 0.841 0.01485 0.813 0.871 ## 466 507 2 0.838 0.01498 0.809 0.868 ## 484 505 1 0.836 0.01504 0.807 0.866 ## 485 504 1 0.835 0.01510 0.806 0.865 ## 490 503 1 0.833 0.01516 0.804 0.863 ## 491 502 1 0.831 0.01522 0.802 0.862 ## 497 501 1 0.830 0.01528 0.800 0.860 ## 498 500 1 0.828 0.01534 0.799 0.859 ## 499 499 1 0.826 0.01540 0.797 0.857 ## 503 498 1 0.825 0.01546 0.795 0.856 ## 510 497 1 0.823 0.01552 0.793 0.854 ## 526 496 1 0.821 0.01558 0.791 0.853 ## 529 495 1 0.820 0.01563 0.790 0.851 ## 536 494 1 0.818 0.01569 0.788 0.849 ## 543 493 1 0.816 0.01574 0.786 0.848 ## 550 492 1 0.815 0.01580 0.784 0.846 ## 554 491 2 0.811 0.01591 0.781 0.843 ## 576 489 1 0.810 0.01596 0.779 0.842 ## 578 488 2 0.806 0.01607 0.776 0.839 ## 580 486 1 0.805 0.01612 0.774 0.837 ## 583 485 1 0.803 0.01617 0.772 0.836 ## 591 484 1 0.802 0.01622 0.770 0.834 ## 592 483 1 0.800 0.01628 0.769 0.832 ## 593 482 1 0.798 0.01633 0.767 0.831 ## 594 481 1 0.797 0.01638 0.765 0.829 ## 601 480 1 0.795 0.01643 0.763 0.828 ## 602 479 1 0.793 0.01647 0.762 0.826 ## 603 478 1 0.792 0.01652 0.760 0.825 ## 604 477 1 0.790 0.01657 0.758 0.823 ## 609 476 1 0.788 0.01662 0.756 0.822 ## 614 475 1 0.787 0.01667 0.755 0.820 ## 616 474 2 0.783 0.01676 0.751 0.817 ## 617 472 1 0.782 0.01681 0.749 0.815 ## 622 471 1 0.780 0.01685 0.748 0.814 ## 636 470 1 0.778 0.01690 0.746 0.812 ## 641 469 1 0.777 0.01695 0.744 0.811 ## 642 468 1 0.775 0.01699 0.742 0.809 ## 643 467 1 0.773 0.01703 0.741 0.807 ## 649 466 1 0.772 0.01708 0.739 0.806 ## 657 465 1 0.770 0.01712 0.737 0.804 ## 666 464 1 0.768 0.01717 0.735 0.803 ## 674 463 1 0.767 0.01721 0.734 0.801 ## 683 462 1 0.765 0.01725 0.732 0.800 ## 692 461 2 0.762 0.01734 0.728 0.796 ## 693 459 1 0.760 0.01738 0.727 0.795 ## 696 458 1 0.758 0.01742 0.725 0.793 ## 700 457 1 0.757 0.01746 0.723 0.792 ## 701 456 1 0.755 0.01750 0.722 0.790 ## 711 455 1 0.753 0.01754 0.720 0.789 ## 712 454 1 0.752 0.01758 0.718 0.787 ## 736 453 1 0.750 0.01762 0.716 0.785 ## 765 452 1 0.748 0.01766 0.715 0.784 ## 802 451 2 0.745 0.01773 0.711 0.781 ## 805 449 1 0.743 0.01777 0.709 0.779 ## 806 448 1 0.742 0.01781 0.708 0.778 ## 811 447 1 0.740 0.01785 0.706 0.776 ## 827 446 1 0.738 0.01788 0.704 0.774 ## 844 445 1 0.737 0.01792 0.702 0.773 ## 849 443 1 0.735 0.01796 0.701 0.771 ## 853 442 1 0.733 0.01799 0.699 0.770 ## 862 441 1 0.732 0.01803 0.697 0.768 ## 884 440 1 0.730 0.01807 0.696 0.766 ## 887 438 2 0.727 0.01814 0.692 0.763 ## 904 436 1 0.725 0.01817 0.690 0.762 ## 905 435 1 0.723 0.01821 0.689 0.760 ## 911 434 1 0.722 0.01824 0.687 0.758 ## 916 433 1 0.720 0.01827 0.685 0.757 ## 918 432 1 0.718 0.01831 0.683 0.755 ## 934 431 1 0.717 0.01834 0.682 0.754 ## 936 430 1 0.715 0.01837 0.680 0.752 ## 961 429 1 0.713 0.01841 0.678 0.750 ## 968 428 1 0.712 0.01844 0.677 0.749 ## 977 427 1 0.710 0.01847 0.675 0.747 ## 993 426 1 0.708 0.01850 0.673 0.746 ## 1022 425 1 0.707 0.01853 0.671 0.744 ## 1024 424 1 0.705 0.01856 0.670 0.742 ## 1025 423 1 0.703 0.01860 0.668 0.741 ## 1032 422 1 0.702 0.01863 0.666 0.739 ## 1037 421 1 0.700 0.01866 0.665 0.738 ## 1122 420 1 0.698 0.01869 0.663 0.736 ## 1138 419 1 0.697 0.01872 0.661 0.734 ## 1142 418 1 0.695 0.01874 0.659 0.733 ## 1145 417 1 0.693 0.01877 0.658 0.731 ## 1151 416 1 0.692 0.01880 0.656 0.730 ## 1159 415 1 0.690 0.01883 0.654 0.728 ## 1193 414 1 0.688 0.01886 0.652 0.726 ## 1201 413 1 0.687 0.01889 0.651 0.725 ## 1212 412 1 0.685 0.01891 0.649 0.723 ## 1233 411 1 0.683 0.01894 0.647 0.722 ## 1246 410 1 0.682 0.01897 0.646 0.720 ## 1273 409 1 0.680 0.01900 0.644 0.718 ## 1276 408 2 0.677 0.01905 0.640 0.715 ## 1277 406 1 0.675 0.01907 0.639 0.714 ## 1279 405 1 0.673 0.01910 0.637 0.712 ## 1302 402 1 0.672 0.01913 0.635 0.710 ## 1306 401 1 0.670 0.01915 0.634 0.709 ## 1329 400 1 0.668 0.01918 0.632 0.707 ## 1365 399 1 0.667 0.01920 0.630 0.705 ## 1387 398 1 0.665 0.01923 0.628 0.704 ## 1388 397 1 0.663 0.01925 0.627 0.702 ## 1424 394 1 0.662 0.01927 0.625 0.701 ## 1439 393 1 0.660 0.01930 0.623 0.699 ## 1446 392 1 0.658 0.01932 0.622 0.697 ## 1488 389 1 0.657 0.01935 0.620 0.696 ## 1495 388 1 0.655 0.01937 0.618 0.694 ## 1511 387 1 0.653 0.01940 0.616 0.692 ## 1521 386 1 0.652 0.01942 0.615 0.691 ## 1550 385 1 0.650 0.01944 0.613 0.689 ## 1607 383 1 0.648 0.01947 0.611 0.688 ## 1620 381 1 0.647 0.01949 0.609 0.686 ## 1637 380 1 0.645 0.01951 0.608 0.684 ## 1644 379 1 0.643 0.01953 0.606 0.683 ## 1668 378 2 0.640 0.01958 0.602 0.679 ## 1671 376 1 0.638 0.01960 0.601 0.678 ## 1723 375 1 0.636 0.01962 0.599 0.676 ## 1743 374 1 0.635 0.01964 0.597 0.674 ## 1752 373 1 0.633 0.01966 0.596 0.673 ## 1767 372 1 0.631 0.01968 0.594 0.671 ## 1783 371 1 0.629 0.01970 0.592 0.669 ## 1786 370 1 0.628 0.01972 0.590 0.668 ## 1798 369 1 0.626 0.01974 0.589 0.666 ## 1812 366 1 0.624 0.01976 0.587 0.664 ## 1831 357 1 0.623 0.01979 0.585 0.663 ## 1856 353 1 0.621 0.01981 0.583 0.661 ## 1876 347 1 0.619 0.01983 0.581 0.659 ## 1995 331 1 0.617 0.01986 0.579 0.657 ## 2021 322 1 0.615 0.01989 0.578 0.656 ## 2028 319 1 0.613 0.01992 0.576 0.654 ## 2031 316 1 0.611 0.01995 0.574 0.652 ## 2052 309 1 0.609 0.01999 0.572 0.650 ## 2074 299 1 0.607 0.02002 0.569 0.648 ## 2127 279 1 0.605 0.02007 0.567 0.646 ## 2174 261 1 0.603 0.02013 0.565 0.644 ## 2197 243 1 0.600 0.02020 0.562 0.641 ## 2318 194 1 0.597 0.02033 0.559 0.639 ## 2482 139 1 0.593 0.02063 0.554 0.635 ## 2542 103 1 0.587 0.02122 0.547 0.630 ## 2725 68 1 0.579 0.02260 0.536 0.625 ``` --- # Logrank test 구간별로 예상/기대 발생 수 계산 후 합쳐서 카이제곱검정 ``` ## Call: ## survdiff(formula = Surv(time, status) ~ rx, data = colon) ## ## N Observed Expected (O-E)^2/E (O-E)^2/V ## rx=Obs 630 345 299 7.01 10.40 ## rx=Lev 620 333 295 4.93 7.26 ## rx=Lev+5FU 608 242 326 21.61 33.54 ## ## Chisq= 33.6 on 2 degrees of freedom, p= 5e-08 ``` 각 구간들의 결과를 합친다? - 구간별 **발생 양상이 비슷**하다는 가정 (**비례위험(proportional hazards) 가정**) --- # Cox model .large[ Hazard function: `\(h(t)\)` - `\(t\)` 까진 생존하고 `\(t\)` 직후에 사망할 가능성 Cox model: **Hazard Ratio(HR)** 을 평가 $$ `\begin{aligned} h(t) &= \exp({\beta_0 + \beta_1 X_1 + \beta_2 X_2 + \cdots}) \\\\ &= h_0(t) \exp({\beta_1 X_1 + \beta_2 X_2 + \cdots}) \end{aligned}` $$ `\(X_1\)` 1 증가할 때 `\(h(t)\)` 는 `\(\exp(\beta_1)\)` 배 증가. 즉 `$$\text{HR} = \exp{(\beta_1)}$$` ] --- # 특징 .large[ Kaplan-meier 와 마찬가지로 구간별로 통계량을 계산. - 구간별 양상 비슷하다는 **비례위험가정** **Time independent HR**: 시간은 `\(h_0(t)\)` 에만. - 모형이 심플: HR 값이 시간에 상관없이 일정함 - Time dependent cox 도 가능. `\(h_0(t)\)` 는 구하지 않는다. 계산 간단해지는 장점 - Cox 가 준모수(semi-parametric) 방법이라고 불리는 이유 - 예측모형 만들땐 문제. `\(h_0(t)\)` 를 따로 얻어야 함. ] --- ``` ## Call: ## coxph(formula = Surv(time, status) ~ sex + age + rx, data = colon) ## ## n= 1858, number of events= 920 ## ## coef exp(coef) se(coef) z Pr(>|z|) ## sex -0.050352 0.950894 0.066079 -0.762 0.446 ## age -0.002034 0.997968 0.002805 -0.725 0.468 ## rxLev -0.018333 0.981834 0.076871 -0.238 0.811 ## rxLev+5FU -0.440908 0.643452 0.083961 -5.251 1.51e-07 *** ## --- ## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 ## ## exp(coef) exp(-coef) lower .95 upper .95 ## sex 0.9509 1.052 0.8354 1.0824 ## age 0.9980 1.002 0.9925 1.0035 ## rxLev 0.9818 1.019 0.8445 1.1415 ## rxLev+5FU 0.6435 1.554 0.5458 0.7585 ## ## Concordance= 0.548 (se = 0.01 ) ## Likelihood ratio test= 36.35 on 4 df, p=2e-07 ## Wald test = 34.24 on 4 df, p=7e-07 ## Score (logrank) test = 34.75 on 4 df, p=5e-07 ``` ---
--- # 생존분석: 비례위험가정 .large[ 트렌드 일정하다는 가정: **생존곡선 겹치면 안됨** ] - 비례위험가정 test까진 필요없음: 그림으로 확인 <center> <img src="https://i.stack.imgur.com/TzLk8.png" width=55%></a> </center> --- # Landmark-analysis .large[ 시간 나눠 따로 분석] <center> <img src="https://blog.zarathu.com/posts/2020-10-29-survivalpractice/survivalpractice_files/figure-html5/unnamed-chunk-6-1.png" width=50%></a> </center> --- # Time-dependent cox <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["trt"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["celltype"],"name":[2],"type":["fct"],"align":["left"]},{"label":["karno"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["diagtime"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["age"],"name":[5],"type":["dbl"],"align":["right"]},{"label":["prior"],"name":[6],"type":["dbl"],"align":["right"]},{"label":["id"],"name":[7],"type":["int"],"align":["right"]},{"label":["tstart"],"name":[8],"type":["dbl"],"align":["right"]},{"label":["time"],"name":[9],"type":["dbl"],"align":["right"]},{"label":["status"],"name":[10],"type":["dbl"],"align":["right"]},{"label":["tgroup"],"name":[11],"type":["dbl"],"align":["right"]}],"data":[{"1":"1","2":"squamous","3":"60","4":"7","5":"69","6":"0","7":"1","8":"0","9":"72","10":"1","11":"1"},{"1":"1","2":"squamous","3":"70","4":"5","5":"64","6":"10","7":"2","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"squamous","3":"70","4":"5","5":"64","6":"10","7":"2","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"squamous","3":"70","4":"5","5":"64","6":"10","7":"2","8":"180","9":"411","10":"1","11":"3"},{"1":"1","2":"squamous","3":"60","4":"3","5":"38","6":"0","7":"3","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"squamous","3":"60","4":"3","5":"38","6":"0","7":"3","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"squamous","3":"60","4":"3","5":"38","6":"0","7":"3","8":"180","9":"228","10":"1","11":"3"},{"1":"1","2":"squamous","3":"60","4":"9","5":"63","6":"10","7":"4","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"squamous","3":"60","4":"9","5":"63","6":"10","7":"4","8":"90","9":"126","10":"1","11":"2"},{"1":"1","2":"squamous","3":"70","4":"11","5":"65","6":"10","7":"5","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"squamous","3":"70","4":"11","5":"65","6":"10","7":"5","8":"90","9":"118","10":"1","11":"2"},{"1":"1","2":"squamous","3":"20","4":"5","5":"49","6":"0","7":"6","8":"0","9":"10","10":"1","11":"1"},{"1":"1","2":"squamous","3":"40","4":"10","5":"69","6":"10","7":"7","8":"0","9":"82","10":"1","11":"1"},{"1":"1","2":"squamous","3":"80","4":"29","5":"68","6":"0","7":"8","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"squamous","3":"80","4":"29","5":"68","6":"0","7":"8","8":"90","9":"110","10":"1","11":"2"},{"1":"1","2":"squamous","3":"50","4":"18","5":"43","6":"0","7":"9","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"squamous","3":"50","4":"18","5":"43","6":"0","7":"9","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"squamous","3":"50","4":"18","5":"43","6":"0","7":"9","8":"180","9":"314","10":"1","11":"3"},{"1":"1","2":"squamous","3":"70","4":"6","5":"70","6":"0","7":"10","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"squamous","3":"70","4":"6","5":"70","6":"0","7":"10","8":"90","9":"100","10":"0","11":"2"},{"1":"1","2":"squamous","3":"60","4":"4","5":"81","6":"0","7":"11","8":"0","9":"42","10":"1","11":"1"},{"1":"1","2":"squamous","3":"40","4":"58","5":"63","6":"10","7":"12","8":"0","9":"8","10":"1","11":"1"},{"1":"1","2":"squamous","3":"30","4":"4","5":"63","6":"0","7":"13","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"squamous","3":"30","4":"4","5":"63","6":"0","7":"13","8":"90","9":"144","10":"1","11":"2"},{"1":"1","2":"squamous","3":"80","4":"9","5":"52","6":"10","7":"14","8":"0","9":"25","10":"0","11":"1"},{"1":"1","2":"squamous","3":"70","4":"11","5":"48","6":"10","7":"15","8":"0","9":"11","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"60","4":"3","5":"61","6":"0","7":"16","8":"0","9":"30","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"60","4":"9","5":"42","6":"0","7":"17","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"smallcell","3":"60","4":"9","5":"42","6":"0","7":"17","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"smallcell","3":"60","4":"9","5":"42","6":"0","7":"17","8":"180","9":"384","10":"1","11":"3"},{"1":"1","2":"smallcell","3":"40","4":"2","5":"35","6":"0","7":"18","8":"0","9":"4","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"80","4":"4","5":"63","6":"10","7":"19","8":"0","9":"54","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"60","4":"4","5":"56","6":"0","7":"20","8":"0","9":"13","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"40","4":"3","5":"55","6":"0","7":"21","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"smallcell","3":"40","4":"3","5":"55","6":"0","7":"21","8":"90","9":"123","10":"0","11":"2"},{"1":"1","2":"smallcell","3":"60","4":"5","5":"67","6":"0","7":"22","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"smallcell","3":"60","4":"5","5":"67","6":"0","7":"22","8":"90","9":"97","10":"0","11":"2"},{"1":"1","2":"smallcell","3":"60","4":"14","5":"63","6":"10","7":"23","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"smallcell","3":"60","4":"14","5":"63","6":"10","7":"23","8":"90","9":"153","10":"1","11":"2"},{"1":"1","2":"smallcell","3":"30","4":"2","5":"65","6":"0","7":"24","8":"0","9":"59","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"80","4":"3","5":"46","6":"0","7":"25","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"smallcell","3":"80","4":"3","5":"46","6":"0","7":"25","8":"90","9":"117","10":"1","11":"2"},{"1":"1","2":"smallcell","3":"30","4":"4","5":"53","6":"10","7":"26","8":"0","9":"16","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"50","4":"12","5":"69","6":"0","7":"27","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"smallcell","3":"50","4":"12","5":"69","6":"0","7":"27","8":"90","9":"151","10":"1","11":"2"},{"1":"1","2":"smallcell","3":"60","4":"4","5":"68","6":"0","7":"28","8":"0","9":"22","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"80","4":"12","5":"43","6":"10","7":"29","8":"0","9":"56","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"40","4":"2","5":"55","6":"10","7":"30","8":"0","9":"21","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"20","4":"15","5":"42","6":"0","7":"31","8":"0","9":"18","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"80","4":"2","5":"64","6":"0","7":"32","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"smallcell","3":"80","4":"2","5":"64","6":"0","7":"32","8":"90","9":"139","10":"1","11":"2"},{"1":"1","2":"smallcell","3":"30","4":"5","5":"65","6":"0","7":"33","8":"0","9":"20","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"75","4":"3","5":"65","6":"0","7":"34","8":"0","9":"31","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"70","4":"2","5":"55","6":"0","7":"35","8":"0","9":"52","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"60","4":"25","5":"66","6":"10","7":"36","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"smallcell","3":"60","4":"25","5":"66","6":"10","7":"36","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"smallcell","3":"60","4":"25","5":"66","6":"10","7":"36","8":"180","9":"287","10":"1","11":"3"},{"1":"1","2":"smallcell","3":"30","4":"4","5":"60","6":"0","7":"37","8":"0","9":"18","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"60","4":"1","5":"67","6":"0","7":"38","8":"0","9":"51","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"80","4":"28","5":"53","6":"0","7":"39","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"smallcell","3":"80","4":"28","5":"53","6":"0","7":"39","8":"90","9":"122","10":"1","11":"2"},{"1":"1","2":"smallcell","3":"60","4":"8","5":"62","6":"0","7":"40","8":"0","9":"27","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"70","4":"1","5":"67","6":"0","7":"41","8":"0","9":"54","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"50","4":"7","5":"72","6":"0","7":"42","8":"0","9":"7","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"50","4":"11","5":"48","6":"0","7":"43","8":"0","9":"63","10":"1","11":"1"},{"1":"1","2":"smallcell","3":"40","4":"4","5":"68","6":"0","7":"44","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"smallcell","3":"40","4":"4","5":"68","6":"0","7":"44","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"smallcell","3":"40","4":"4","5":"68","6":"0","7":"44","8":"180","9":"392","10":"1","11":"3"},{"1":"1","2":"smallcell","3":"40","4":"23","5":"67","6":"10","7":"45","8":"0","9":"10","10":"1","11":"1"},{"1":"1","2":"adeno","3":"20","4":"19","5":"61","6":"10","7":"46","8":"0","9":"8","10":"1","11":"1"},{"1":"1","2":"adeno","3":"70","4":"10","5":"60","6":"0","7":"47","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"adeno","3":"70","4":"10","5":"60","6":"0","7":"47","8":"90","9":"92","10":"1","11":"2"},{"1":"1","2":"adeno","3":"40","4":"6","5":"62","6":"0","7":"48","8":"0","9":"35","10":"1","11":"1"},{"1":"1","2":"adeno","3":"80","4":"2","5":"38","6":"0","7":"49","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"adeno","3":"80","4":"2","5":"38","6":"0","7":"49","8":"90","9":"117","10":"1","11":"2"},{"1":"1","2":"adeno","3":"80","4":"5","5":"50","6":"0","7":"50","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"adeno","3":"80","4":"5","5":"50","6":"0","7":"50","8":"90","9":"132","10":"1","11":"2"},{"1":"1","2":"adeno","3":"50","4":"4","5":"63","6":"10","7":"51","8":"0","9":"12","10":"1","11":"1"},{"1":"1","2":"adeno","3":"80","4":"5","5":"64","6":"0","7":"52","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"adeno","3":"80","4":"5","5":"64","6":"0","7":"52","8":"90","9":"162","10":"1","11":"2"},{"1":"1","2":"adeno","3":"30","4":"3","5":"43","6":"0","7":"53","8":"0","9":"3","10":"1","11":"1"},{"1":"1","2":"adeno","3":"80","4":"4","5":"34","6":"0","7":"54","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"adeno","3":"80","4":"4","5":"34","6":"0","7":"54","8":"90","9":"95","10":"1","11":"2"},{"1":"1","2":"large","3":"50","4":"16","5":"66","6":"10","7":"55","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"50","4":"16","5":"66","6":"10","7":"55","8":"90","9":"177","10":"1","11":"2"},{"1":"1","2":"large","3":"80","4":"5","5":"62","6":"0","7":"56","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"80","4":"5","5":"62","6":"0","7":"56","8":"90","9":"162","10":"1","11":"2"},{"1":"1","2":"large","3":"50","4":"15","5":"52","6":"0","7":"57","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"50","4":"15","5":"52","6":"0","7":"57","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"large","3":"50","4":"15","5":"52","6":"0","7":"57","8":"180","9":"216","10":"1","11":"3"},{"1":"1","2":"large","3":"70","4":"2","5":"47","6":"0","7":"58","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"70","4":"2","5":"47","6":"0","7":"58","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"large","3":"70","4":"2","5":"47","6":"0","7":"58","8":"180","9":"553","10":"1","11":"3"},{"1":"1","2":"large","3":"60","4":"12","5":"63","6":"0","7":"59","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"60","4":"12","5":"63","6":"0","7":"59","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"large","3":"60","4":"12","5":"63","6":"0","7":"59","8":"180","9":"278","10":"1","11":"3"},{"1":"1","2":"large","3":"40","4":"12","5":"68","6":"10","7":"60","8":"0","9":"12","10":"1","11":"1"},{"1":"1","2":"large","3":"80","4":"5","5":"45","6":"0","7":"61","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"80","4":"5","5":"45","6":"0","7":"61","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"large","3":"80","4":"5","5":"45","6":"0","7":"61","8":"180","9":"260","10":"1","11":"3"},{"1":"1","2":"large","3":"80","4":"12","5":"41","6":"10","7":"62","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"80","4":"12","5":"41","6":"10","7":"62","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"large","3":"80","4":"12","5":"41","6":"10","7":"62","8":"180","9":"200","10":"1","11":"3"},{"1":"1","2":"large","3":"70","4":"2","5":"66","6":"0","7":"63","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"70","4":"2","5":"66","6":"0","7":"63","8":"90","9":"156","10":"1","11":"2"},{"1":"1","2":"large","3":"90","4":"2","5":"62","6":"0","7":"64","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"90","4":"2","5":"62","6":"0","7":"64","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"large","3":"90","4":"2","5":"62","6":"0","7":"64","8":"180","9":"182","10":"0","11":"3"},{"1":"1","2":"large","3":"90","4":"8","5":"60","6":"0","7":"65","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"90","4":"8","5":"60","6":"0","7":"65","8":"90","9":"143","10":"1","11":"2"},{"1":"1","2":"large","3":"80","4":"11","5":"66","6":"0","7":"66","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"80","4":"11","5":"66","6":"0","7":"66","8":"90","9":"105","10":"1","11":"2"},{"1":"1","2":"large","3":"80","4":"5","5":"38","6":"0","7":"67","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"80","4":"5","5":"38","6":"0","7":"67","8":"90","9":"103","10":"1","11":"2"},{"1":"1","2":"large","3":"70","4":"8","5":"53","6":"10","7":"68","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"70","4":"8","5":"53","6":"10","7":"68","8":"90","9":"180","10":"0","11":"2"},{"1":"1","2":"large","3":"70","4":"8","5":"53","6":"10","7":"68","8":"180","9":"250","10":"1","11":"3"},{"1":"1","2":"large","3":"60","4":"13","5":"37","6":"10","7":"69","8":"0","9":"90","10":"0","11":"1"},{"1":"1","2":"large","3":"60","4":"13","5":"37","6":"10","7":"69","8":"90","9":"100","10":"1","11":"2"},{"1":"2","2":"squamous","3":"90","4":"12","5":"54","6":"10","7":"70","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"90","4":"12","5":"54","6":"10","7":"70","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"squamous","3":"90","4":"12","5":"54","6":"10","7":"70","8":"180","9":"999","10":"1","11":"3"},{"1":"2","2":"squamous","3":"80","4":"6","5":"60","6":"0","7":"71","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"80","4":"6","5":"60","6":"0","7":"71","8":"90","9":"112","10":"1","11":"2"},{"1":"2","2":"squamous","3":"80","4":"3","5":"48","6":"0","7":"72","8":"0","9":"87","10":"0","11":"1"},{"1":"2","2":"squamous","3":"50","4":"8","5":"52","6":"10","7":"73","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"50","4":"8","5":"52","6":"10","7":"73","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"squamous","3":"50","4":"8","5":"52","6":"10","7":"73","8":"180","9":"231","10":"0","11":"3"},{"1":"2","2":"squamous","3":"50","4":"1","5":"70","6":"0","7":"74","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"50","4":"1","5":"70","6":"0","7":"74","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"squamous","3":"50","4":"1","5":"70","6":"0","7":"74","8":"180","9":"242","10":"1","11":"3"},{"1":"2","2":"squamous","3":"70","4":"7","5":"50","6":"10","7":"75","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"70","4":"7","5":"50","6":"10","7":"75","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"squamous","3":"70","4":"7","5":"50","6":"10","7":"75","8":"180","9":"991","10":"1","11":"3"},{"1":"2","2":"squamous","3":"70","4":"3","5":"62","6":"0","7":"76","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"70","4":"3","5":"62","6":"0","7":"76","8":"90","9":"111","10":"1","11":"2"},{"1":"2","2":"squamous","3":"20","4":"21","5":"65","6":"10","7":"77","8":"0","9":"1","10":"1","11":"1"},{"1":"2","2":"squamous","3":"60","4":"3","5":"58","6":"0","7":"78","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"60","4":"3","5":"58","6":"0","7":"78","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"squamous","3":"60","4":"3","5":"58","6":"0","7":"78","8":"180","9":"587","10":"1","11":"3"},{"1":"2","2":"squamous","3":"90","4":"2","5":"62","6":"0","7":"79","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"90","4":"2","5":"62","6":"0","7":"79","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"squamous","3":"90","4":"2","5":"62","6":"0","7":"79","8":"180","9":"389","10":"1","11":"3"},{"1":"2","2":"squamous","3":"30","4":"6","5":"64","6":"0","7":"80","8":"0","9":"33","10":"1","11":"1"},{"1":"2","2":"squamous","3":"20","4":"36","5":"63","6":"0","7":"81","8":"0","9":"25","10":"1","11":"1"},{"1":"2","2":"squamous","3":"70","4":"13","5":"58","6":"0","7":"82","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"70","4":"13","5":"58","6":"0","7":"82","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"squamous","3":"70","4":"13","5":"58","6":"0","7":"82","8":"180","9":"357","10":"1","11":"3"},{"1":"2","2":"squamous","3":"90","4":"2","5":"64","6":"0","7":"83","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"90","4":"2","5":"64","6":"0","7":"83","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"squamous","3":"90","4":"2","5":"64","6":"0","7":"83","8":"180","9":"467","10":"1","11":"3"},{"1":"2","2":"squamous","3":"80","4":"28","5":"52","6":"10","7":"84","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"80","4":"28","5":"52","6":"10","7":"84","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"squamous","3":"80","4":"28","5":"52","6":"10","7":"84","8":"180","9":"201","10":"1","11":"3"},{"1":"2","2":"squamous","3":"50","4":"7","5":"35","6":"0","7":"85","8":"0","9":"1","10":"1","11":"1"},{"1":"2","2":"squamous","3":"70","4":"11","5":"63","6":"0","7":"86","8":"0","9":"30","10":"1","11":"1"},{"1":"2","2":"squamous","3":"60","4":"13","5":"70","6":"10","7":"87","8":"0","9":"44","10":"1","11":"1"},{"1":"2","2":"squamous","3":"90","4":"2","5":"51","6":"0","7":"88","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"squamous","3":"90","4":"2","5":"51","6":"0","7":"88","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"squamous","3":"90","4":"2","5":"51","6":"0","7":"88","8":"180","9":"283","10":"1","11":"3"},{"1":"2","2":"squamous","3":"50","4":"13","5":"40","6":"10","7":"89","8":"0","9":"15","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"30","4":"2","5":"69","6":"0","7":"90","8":"0","9":"25","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"70","4":"22","5":"36","6":"10","7":"91","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"smallcell","3":"70","4":"22","5":"36","6":"10","7":"91","8":"90","9":"103","10":"0","11":"2"},{"1":"2","2":"smallcell","3":"20","4":"4","5":"71","6":"0","7":"92","8":"0","9":"21","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"30","4":"2","5":"62","6":"0","7":"93","8":"0","9":"13","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"60","4":"2","5":"60","6":"0","7":"94","8":"0","9":"87","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"40","4":"36","5":"44","6":"10","7":"95","8":"0","9":"2","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"30","4":"9","5":"54","6":"10","7":"96","8":"0","9":"20","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"20","4":"11","5":"66","6":"0","7":"97","8":"0","9":"7","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"60","4":"8","5":"49","6":"0","7":"98","8":"0","9":"24","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"70","4":"3","5":"72","6":"0","7":"99","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"smallcell","3":"70","4":"3","5":"72","6":"0","7":"99","8":"90","9":"99","10":"1","11":"2"},{"1":"2","2":"smallcell","3":"80","4":"2","5":"68","6":"0","7":"100","8":"0","9":"8","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"85","4":"4","5":"62","6":"0","7":"101","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"smallcell","3":"85","4":"4","5":"62","6":"0","7":"101","8":"90","9":"99","10":"1","11":"2"},{"1":"2","2":"smallcell","3":"70","4":"2","5":"71","6":"0","7":"102","8":"0","9":"61","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"70","4":"2","5":"70","6":"0","7":"103","8":"0","9":"25","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"70","4":"1","5":"61","6":"0","7":"104","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"smallcell","3":"70","4":"1","5":"61","6":"0","7":"104","8":"90","9":"95","10":"1","11":"2"},{"1":"2","2":"smallcell","3":"50","4":"17","5":"71","6":"0","7":"105","8":"0","9":"80","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"30","4":"87","5":"59","6":"10","7":"106","8":"0","9":"51","10":"1","11":"1"},{"1":"2","2":"smallcell","3":"40","4":"8","5":"67","6":"0","7":"107","8":"0","9":"29","10":"1","11":"1"},{"1":"2","2":"adeno","3":"40","4":"2","5":"60","6":"0","7":"108","8":"0","9":"24","10":"1","11":"1"},{"1":"2","2":"adeno","3":"40","4":"5","5":"69","6":"10","7":"109","8":"0","9":"18","10":"1","11":"1"},{"1":"2","2":"adeno","3":"99","4":"3","5":"57","6":"0","7":"110","8":"0","9":"83","10":"0","11":"1"},{"1":"2","2":"adeno","3":"80","4":"3","5":"39","6":"0","7":"111","8":"0","9":"31","10":"1","11":"1"},{"1":"2","2":"adeno","3":"60","4":"5","5":"62","6":"0","7":"112","8":"0","9":"51","10":"1","11":"1"},{"1":"2","2":"adeno","3":"60","4":"22","5":"50","6":"10","7":"113","8":"0","9":"90","10":"1","11":"1"},{"1":"2","2":"adeno","3":"60","4":"3","5":"43","6":"0","7":"114","8":"0","9":"52","10":"1","11":"1"},{"1":"2","2":"adeno","3":"60","4":"3","5":"70","6":"0","7":"115","8":"0","9":"73","10":"1","11":"1"},{"1":"2","2":"adeno","3":"50","4":"5","5":"66","6":"0","7":"116","8":"0","9":"8","10":"1","11":"1"},{"1":"2","2":"adeno","3":"70","4":"8","5":"61","6":"0","7":"117","8":"0","9":"36","10":"1","11":"1"},{"1":"2","2":"adeno","3":"10","4":"4","5":"81","6":"0","7":"118","8":"0","9":"48","10":"1","11":"1"},{"1":"2","2":"adeno","3":"40","4":"4","5":"58","6":"0","7":"119","8":"0","9":"7","10":"1","11":"1"},{"1":"2","2":"adeno","3":"70","4":"3","5":"63","6":"0","7":"120","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"adeno","3":"70","4":"3","5":"63","6":"0","7":"120","8":"90","9":"140","10":"1","11":"2"},{"1":"2","2":"adeno","3":"90","4":"3","5":"60","6":"0","7":"121","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"adeno","3":"90","4":"3","5":"60","6":"0","7":"121","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"adeno","3":"90","4":"3","5":"60","6":"0","7":"121","8":"180","9":"186","10":"1","11":"3"},{"1":"2","2":"adeno","3":"80","4":"4","5":"62","6":"10","7":"122","8":"0","9":"84","10":"1","11":"1"},{"1":"2","2":"adeno","3":"50","4":"10","5":"42","6":"0","7":"123","8":"0","9":"19","10":"1","11":"1"},{"1":"2","2":"adeno","3":"40","4":"3","5":"69","6":"0","7":"124","8":"0","9":"45","10":"1","11":"1"},{"1":"2","2":"adeno","3":"40","4":"4","5":"63","6":"0","7":"125","8":"0","9":"80","10":"1","11":"1"},{"1":"2","2":"large","3":"60","4":"4","5":"45","6":"0","7":"126","8":"0","9":"52","10":"1","11":"1"},{"1":"2","2":"large","3":"70","4":"15","5":"68","6":"10","7":"127","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"large","3":"70","4":"15","5":"68","6":"10","7":"127","8":"90","9":"164","10":"1","11":"2"},{"1":"2","2":"large","3":"30","4":"4","5":"39","6":"10","7":"128","8":"0","9":"19","10":"1","11":"1"},{"1":"2","2":"large","3":"60","4":"12","5":"66","6":"0","7":"129","8":"0","9":"53","10":"1","11":"1"},{"1":"2","2":"large","3":"30","4":"5","5":"63","6":"0","7":"130","8":"0","9":"15","10":"1","11":"1"},{"1":"2","2":"large","3":"60","4":"11","5":"49","6":"10","7":"131","8":"0","9":"43","10":"1","11":"1"},{"1":"2","2":"large","3":"80","4":"10","5":"64","6":"10","7":"132","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"large","3":"80","4":"10","5":"64","6":"10","7":"132","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"large","3":"80","4":"10","5":"64","6":"10","7":"132","8":"180","9":"340","10":"1","11":"3"},{"1":"2","2":"large","3":"75","4":"1","5":"65","6":"0","7":"133","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"large","3":"75","4":"1","5":"65","6":"0","7":"133","8":"90","9":"133","10":"1","11":"2"},{"1":"2","2":"large","3":"60","4":"5","5":"64","6":"0","7":"134","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"large","3":"60","4":"5","5":"64","6":"0","7":"134","8":"90","9":"111","10":"1","11":"2"},{"1":"2","2":"large","3":"70","4":"18","5":"67","6":"10","7":"135","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"large","3":"70","4":"18","5":"67","6":"10","7":"135","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"large","3":"70","4":"18","5":"67","6":"10","7":"135","8":"180","9":"231","10":"1","11":"3"},{"1":"2","2":"large","3":"80","4":"4","5":"65","6":"0","7":"136","8":"0","9":"90","10":"0","11":"1"},{"1":"2","2":"large","3":"80","4":"4","5":"65","6":"0","7":"136","8":"90","9":"180","10":"0","11":"2"},{"1":"2","2":"large","3":"80","4":"4","5":"65","6":"0","7":"136","8":"180","9":"378","10":"1","11":"3"},{"1":"2","2":"large","3":"30","4":"3","5":"37","6":"0","7":"137","8":"0","9":"49","10":"1","11":"1"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> --- # Time-dependet cox ``` ## Call: ## coxph(formula = Surv(tstart, time, status) ~ trt + prior + karno:strata(tgroup), ## data = vet2) ## ## n= 225, number of events= 128 ## ## coef exp(coef) se(coef) z Pr(>|z|) ## trt -0.011025 0.989035 0.189062 -0.058 0.953 ## prior -0.006107 0.993912 0.020355 -0.300 0.764 ## karno:strata(tgroup)tgroup=1 -0.048755 0.952414 0.006222 -7.836 4.64e-15 *** ## karno:strata(tgroup)tgroup=2 0.008050 1.008083 0.012823 0.628 0.530 ## karno:strata(tgroup)tgroup=3 -0.008349 0.991686 0.014620 -0.571 0.568 ## --- ## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 ## ## exp(coef) exp(-coef) lower .95 upper .95 ## trt 0.9890 1.011 0.6828 1.4327 ## prior 0.9939 1.006 0.9550 1.0344 ## karno:strata(tgroup)tgroup=1 0.9524 1.050 0.9409 0.9641 ## karno:strata(tgroup)tgroup=2 1.0081 0.992 0.9831 1.0337 ## karno:strata(tgroup)tgroup=3 0.9917 1.008 0.9637 1.0205 ## ## Concordance= 0.725 (se = 0.024 ) ## Likelihood ratio test= 63.04 on 5 df, p=3e-12 ## Wald test = 63.7 on 5 df, p=2e-12 ## Score (logrank) test = 71.33 on 5 df, p=5e-14 ``` --- # Time-dependent covariate .large[ 생존분석 **모든 변수는 Index date 이전에 측정**해야 ] - 예) F/U lab, medication .large[ Time-dependent covariate 다루려면 이를 고려한 cox 필요 ] <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["id"],"name":[1],"type":["int"],"align":["right"]},{"label":["status"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["time"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["z"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["grp"],"name":[5],"type":["dbl"],"align":["right"]},{"label":["age"],"name":[6],"type":["dbl"],"align":["right"]},{"label":["tstart"],"name":[7],"type":["dbl"],"align":["right"]},{"label":["tstop"],"name":[8],"type":["dbl"],"align":["right"]},{"label":["status1"],"name":[9],"type":["dbl"],"align":["right"]},{"label":["crp"],"name":[10],"type":["dbl"],"align":["right"]}],"data":[{"1":"1","2":"1","3":"48","4":"1","5":"0","6":"80","7":"0","8":"48","9":"1","10":"101.4"},{"1":"2","2":"0","3":"121","4":"1","5":"1","6":"86","7":"0","8":"99","9":"0","10":"74.1"},{"1":"2","2":"0","3":"121","4":"1","5":"1","6":"86","7":"99","8":"121","9":"0","10":"13.7"},{"1":"3","2":"1","3":"31","4":"1","5":"1","6":"72","7":"0","8":"17","9":"0","10":"77.1"},{"1":"3","2":"1","3":"31","4":"1","5":"1","6":"72","7":"17","8":"31","9":"1","10":"160.2"},{"1":"4","2":"0","3":"500","4":"1","5":"0","6":"92","7":"0","8":"115","9":"0","10":"34.0"},{"1":"4","2":"0","3":"500","4":"1","5":"0","6":"92","7":"115","8":"122","9":"0","10":"86.0"},{"1":"4","2":"0","3":"500","4":"1","5":"0","6":"92","7":"122","8":"187","9":"0","10":"130.3"},{"1":"4","2":"0","3":"500","4":"1","5":"0","6":"92","7":"187","8":"318","9":"0","10":"78.4"},{"1":"4","2":"0","3":"500","4":"1","5":"0","6":"92","7":"318","8":"329","9":"0","10":"109.1"},{"1":"4","2":"0","3":"500","4":"1","5":"0","6":"92","7":"329","8":"434","9":"0","10":"119.7"},{"1":"4","2":"0","3":"500","4":"1","5":"0","6":"92","7":"434","8":"457","9":"0","10":"110.7"},{"1":"4","2":"0","3":"500","4":"1","5":"0","6":"92","7":"457","8":"500","9":"0","10":"126.1"},{"1":"5","2":"1","3":"70","4":"1","5":"1","6":"77","7":"0","8":"70","9":"1","10":"95.1"},{"1":"6","2":"1","3":"233","4":"1","5":"1","6":"87","7":"0","8":"32","9":"0","10":"96.3"},{"1":"6","2":"1","3":"233","4":"1","5":"1","6":"87","7":"32","8":"102","9":"0","10":"117.2"},{"1":"6","2":"1","3":"233","4":"1","5":"1","6":"87","7":"102","8":"104","9":"0","10":"121.4"},{"1":"6","2":"1","3":"233","4":"1","5":"1","6":"87","7":"104","8":"124","9":"0","10":"77.8"},{"1":"6","2":"1","3":"233","4":"1","5":"1","6":"87","7":"124","8":"129","9":"0","10":"171.2"},{"1":"6","2":"1","3":"233","4":"1","5":"1","6":"87","7":"129","8":"233","9":"1","10":"111.5"},{"1":"7","2":"1","3":"156","4":"1","5":"1","6":"60","7":"0","8":"36","9":"0","10":"195.9"},{"1":"7","2":"1","3":"156","4":"1","5":"1","6":"60","7":"36","8":"71","9":"0","10":"100.4"},{"1":"7","2":"1","3":"156","4":"1","5":"1","6":"60","7":"71","8":"75","9":"0","10":"165.3"},{"1":"7","2":"1","3":"156","4":"1","5":"1","6":"60","7":"75","8":"156","9":"1","10":"42.5"},{"1":"8","2":"1","3":"258","4":"1","5":"0","6":"66","7":"0","8":"42","9":"0","10":"59.8"},{"1":"8","2":"1","3":"258","4":"1","5":"0","6":"66","7":"42","8":"258","9":"1","10":"100.8"},{"1":"9","2":"1","3":"84","4":"1","5":"0","6":"84","7":"0","8":"32","9":"0","10":"11.0"},{"1":"9","2":"1","3":"84","4":"1","5":"0","6":"84","7":"32","8":"33","9":"0","10":"149.4"},{"1":"9","2":"1","3":"84","4":"1","5":"0","6":"84","7":"33","8":"75","9":"0","10":"50.4"},{"1":"9","2":"1","3":"84","4":"1","5":"0","6":"84","7":"75","8":"84","9":"1","10":"118.2"},{"1":"10","2":"1","3":"172","4":"1","5":"1","6":"59","7":"0","8":"172","9":"1","10":"106.6"},{"1":"11","2":"1","3":"175","4":"1","5":"1","6":"53","7":"0","8":"85","9":"0","10":"17.9"},{"1":"11","2":"1","3":"175","4":"1","5":"1","6":"53","7":"85","8":"175","9":"1","10":"34.5"},{"1":"12","2":"1","3":"310","4":"1","5":"1","6":"82","7":"0","8":"40","9":"0","10":"141.9"},{"1":"12","2":"1","3":"310","4":"1","5":"1","6":"82","7":"40","8":"79","9":"0","10":"117.4"},{"1":"12","2":"1","3":"310","4":"1","5":"1","6":"82","7":"79","8":"96","9":"0","10":"128.6"},{"1":"12","2":"1","3":"310","4":"1","5":"1","6":"82","7":"96","8":"190","9":"0","10":"136.7"},{"1":"12","2":"1","3":"310","4":"1","5":"1","6":"82","7":"190","8":"199","9":"0","10":"6.4"},{"1":"12","2":"1","3":"310","4":"1","5":"1","6":"82","7":"199","8":"224","9":"0","10":"144.4"},{"1":"12","2":"1","3":"310","4":"1","5":"1","6":"82","7":"224","8":"310","9":"1","10":"80.6"},{"1":"13","2":"1","3":"269","4":"1","5":"1","6":"28","7":"0","8":"89","9":"0","10":"134.9"},{"1":"13","2":"1","3":"269","4":"1","5":"1","6":"28","7":"89","8":"259","9":"0","10":"86.1"},{"1":"13","2":"1","3":"269","4":"1","5":"1","6":"28","7":"259","8":"269","9":"1","10":"120.7"},{"1":"14","2":"0","3":"500","4":"1","5":"0","6":"54","7":"0","8":"75","9":"0","10":"145.0"},{"1":"14","2":"0","3":"500","4":"1","5":"0","6":"54","7":"75","8":"123","9":"0","10":"179.0"},{"1":"14","2":"0","3":"500","4":"1","5":"0","6":"54","7":"123","8":"317","9":"0","10":"88.7"},{"1":"14","2":"0","3":"500","4":"1","5":"0","6":"54","7":"317","8":"318","9":"0","10":"47.1"},{"1":"14","2":"0","3":"500","4":"1","5":"0","6":"54","7":"318","8":"351","9":"0","10":"90.4"},{"1":"14","2":"0","3":"500","4":"1","5":"0","6":"54","7":"351","8":"500","9":"0","10":"91.4"},{"1":"15","2":"1","3":"133","4":"1","5":"0","6":"68","7":"0","8":"49","9":"0","10":"106.1"},{"1":"15","2":"1","3":"133","4":"1","5":"0","6":"68","7":"49","8":"133","9":"1","10":"168.5"},{"1":"16","2":"1","3":"130","4":"1","5":"0","6":"75","7":"0","8":"130","9":"1","10":"131.2"},{"1":"17","2":"1","3":"139","4":"1","5":"1","6":"53","7":"0","8":"31","9":"0","10":"56.4"},{"1":"17","2":"1","3":"139","4":"1","5":"1","6":"53","7":"31","8":"139","9":"1","10":"65.1"},{"1":"18","2":"0","3":"219","4":"1","5":"0","6":"92","7":"0","8":"46","9":"0","10":"106.6"},{"1":"18","2":"0","3":"219","4":"1","5":"0","6":"92","7":"46","8":"60","9":"0","10":"114.6"},{"1":"18","2":"0","3":"219","4":"1","5":"0","6":"92","7":"60","8":"75","9":"0","10":"122.1"},{"1":"18","2":"0","3":"219","4":"1","5":"0","6":"92","7":"75","8":"185","9":"0","10":"75.9"},{"1":"18","2":"0","3":"219","4":"1","5":"0","6":"92","7":"185","8":"219","9":"0","10":"60.3"},{"1":"19","2":"0","3":"500","4":"1","5":"0","6":"56","7":"0","8":"114","9":"0","10":"96.2"},{"1":"19","2":"0","3":"500","4":"1","5":"0","6":"56","7":"114","8":"245","9":"0","10":"64.2"},{"1":"19","2":"0","3":"500","4":"1","5":"0","6":"56","7":"245","8":"278","9":"0","10":"17.2"},{"1":"19","2":"0","3":"500","4":"1","5":"0","6":"56","7":"278","8":"311","9":"0","10":"106.0"},{"1":"19","2":"0","3":"500","4":"1","5":"0","6":"56","7":"311","8":"318","9":"0","10":"96.8"},{"1":"19","2":"0","3":"500","4":"1","5":"0","6":"56","7":"318","8":"373","9":"0","10":"96.1"},{"1":"19","2":"0","3":"500","4":"1","5":"0","6":"56","7":"373","8":"408","9":"0","10":"108.6"},{"1":"19","2":"0","3":"500","4":"1","5":"0","6":"56","7":"408","8":"493","9":"0","10":"135.3"},{"1":"19","2":"0","3":"500","4":"1","5":"0","6":"56","7":"493","8":"500","9":"0","10":"108.2"},{"1":"20","2":"1","3":"201","4":"1","5":"1","6":"56","7":"0","8":"12","9":"0","10":"75.3"},{"1":"20","2":"1","3":"201","4":"1","5":"1","6":"56","7":"12","8":"44","9":"0","10":"70.6"},{"1":"20","2":"1","3":"201","4":"1","5":"1","6":"56","7":"44","8":"201","9":"1","10":"94.7"},{"1":"21","2":"0","3":"500","4":"1","5":"1","6":"64","7":"0","8":"165","9":"0","10":"122.0"},{"1":"21","2":"0","3":"500","4":"1","5":"1","6":"64","7":"165","8":"172","9":"0","10":"149.5"},{"1":"21","2":"0","3":"500","4":"1","5":"1","6":"64","7":"172","8":"177","9":"0","10":"105.6"},{"1":"21","2":"0","3":"500","4":"1","5":"1","6":"64","7":"177","8":"275","9":"0","10":"116.4"},{"1":"21","2":"0","3":"500","4":"1","5":"1","6":"64","7":"275","8":"322","9":"0","10":"77.7"},{"1":"21","2":"0","3":"500","4":"1","5":"1","6":"64","7":"322","8":"500","9":"0","10":"124.2"},{"1":"22","2":"0","3":"500","4":"1","5":"0","6":"53","7":"0","8":"77","9":"0","10":"79.7"},{"1":"22","2":"0","3":"500","4":"1","5":"0","6":"53","7":"77","8":"500","9":"0","10":"43.2"},{"1":"23","2":"0","3":"421","4":"1","5":"1","6":"78","7":"0","8":"56","9":"0","10":"105.1"},{"1":"23","2":"0","3":"421","4":"1","5":"1","6":"78","7":"56","8":"94","9":"0","10":"177.8"},{"1":"23","2":"0","3":"421","4":"1","5":"1","6":"78","7":"94","8":"103","9":"0","10":"132.0"},{"1":"23","2":"0","3":"421","4":"1","5":"1","6":"78","7":"103","8":"108","9":"0","10":"146.6"},{"1":"23","2":"0","3":"421","4":"1","5":"1","6":"78","7":"108","8":"144","9":"0","10":"114.4"},{"1":"23","2":"0","3":"421","4":"1","5":"1","6":"78","7":"144","8":"389","9":"0","10":"75.7"},{"1":"23","2":"0","3":"421","4":"1","5":"1","6":"78","7":"389","8":"421","9":"0","10":"91.9"},{"1":"24","2":"1","3":"77","4":"1","5":"1","6":"68","7":"0","8":"26","9":"0","10":"81.3"},{"1":"24","2":"1","3":"77","4":"1","5":"1","6":"68","7":"26","8":"56","9":"0","10":"128.2"},{"1":"24","2":"1","3":"77","4":"1","5":"1","6":"68","7":"56","8":"77","9":"1","10":"52.1"},{"1":"25","2":"1","3":"364","4":"1","5":"1","6":"60","7":"0","8":"10","9":"0","10":"197.2"},{"1":"25","2":"1","3":"364","4":"1","5":"1","6":"60","7":"10","8":"38","9":"0","10":"77.7"},{"1":"25","2":"1","3":"364","4":"1","5":"1","6":"60","7":"38","8":"173","9":"0","10":"133.8"},{"1":"25","2":"1","3":"364","4":"1","5":"1","6":"60","7":"173","8":"219","9":"0","10":"68.7"},{"1":"25","2":"1","3":"364","4":"1","5":"1","6":"60","7":"219","8":"294","9":"0","10":"144.4"},{"1":"25","2":"1","3":"364","4":"1","5":"1","6":"60","7":"294","8":"307","9":"0","10":"110.0"},{"1":"25","2":"1","3":"364","4":"1","5":"1","6":"60","7":"307","8":"364","9":"1","10":"166.1"},{"1":"26","2":"1","3":"147","4":"1","5":"1","6":"70","7":"0","8":"147","9":"1","10":"78.9"},{"1":"27","2":"1","3":"130","4":"1","5":"1","6":"60","7":"0","8":"130","9":"1","10":"56.5"},{"1":"28","2":"1","3":"95","4":"1","5":"1","6":"66","7":"0","8":"95","9":"1","10":"103.2"},{"1":"29","2":"0","3":"330","4":"1","5":"0","6":"62","7":"0","8":"33","9":"0","10":"41.7"},{"1":"29","2":"0","3":"330","4":"1","5":"0","6":"62","7":"33","8":"330","9":"0","10":"68.7"},{"1":"30","2":"1","3":"280","4":"1","5":"1","6":"74","7":"0","8":"64","9":"0","10":"154.8"},{"1":"30","2":"1","3":"280","4":"1","5":"1","6":"74","7":"64","8":"165","9":"0","10":"126.9"},{"1":"30","2":"1","3":"280","4":"1","5":"1","6":"74","7":"165","8":"199","9":"0","10":"102.9"},{"1":"30","2":"1","3":"280","4":"1","5":"1","6":"74","7":"199","8":"280","9":"1","10":"39.7"},{"1":"31","2":"1","3":"191","4":"1","5":"1","6":"64","7":"0","8":"26","9":"0","10":"87.3"},{"1":"31","2":"1","3":"191","4":"1","5":"1","6":"64","7":"26","8":"191","9":"1","10":"95.9"},{"1":"32","2":"1","3":"231","4":"1","5":"0","6":"72","7":"0","8":"32","9":"0","10":"52.7"},{"1":"32","2":"1","3":"231","4":"1","5":"0","6":"72","7":"32","8":"175","9":"0","10":"119.9"},{"1":"32","2":"1","3":"231","4":"1","5":"0","6":"72","7":"175","8":"229","9":"0","10":"58.4"},{"1":"32","2":"1","3":"231","4":"1","5":"0","6":"72","7":"229","8":"231","9":"1","10":"91.0"},{"1":"33","2":"1","3":"342","4":"1","5":"1","6":"74","7":"0","8":"45","9":"0","10":"123.3"},{"1":"33","2":"1","3":"342","4":"1","5":"1","6":"74","7":"45","8":"123","9":"0","10":"47.3"},{"1":"33","2":"1","3":"342","4":"1","5":"1","6":"74","7":"123","8":"243","9":"0","10":"12.4"},{"1":"33","2":"1","3":"342","4":"1","5":"1","6":"74","7":"243","8":"296","9":"0","10":"118.6"},{"1":"33","2":"1","3":"342","4":"1","5":"1","6":"74","7":"296","8":"342","9":"1","10":"133.6"},{"1":"34","2":"1","3":"408","4":"1","5":"0","6":"72","7":"0","8":"36","9":"0","10":"88.6"},{"1":"34","2":"1","3":"408","4":"1","5":"0","6":"72","7":"36","8":"353","9":"0","10":"120.2"},{"1":"34","2":"1","3":"408","4":"1","5":"0","6":"72","7":"353","8":"408","9":"1","10":"53.8"},{"1":"35","2":"1","3":"104","4":"1","5":"0","6":"85","7":"0","8":"40","9":"0","10":"94.9"},{"1":"35","2":"1","3":"104","4":"1","5":"0","6":"85","7":"40","8":"50","9":"0","10":"22.3"},{"1":"35","2":"1","3":"104","4":"1","5":"0","6":"85","7":"50","8":"68","9":"0","10":"147.2"},{"1":"35","2":"1","3":"104","4":"1","5":"0","6":"85","7":"68","8":"104","9":"1","10":"174.4"},{"1":"36","2":"0","3":"500","4":"1","5":"0","6":"61","7":"0","8":"55","9":"0","10":"131.6"},{"1":"36","2":"0","3":"500","4":"1","5":"0","6":"61","7":"55","8":"121","9":"0","10":"91.6"},{"1":"36","2":"0","3":"500","4":"1","5":"0","6":"61","7":"121","8":"310","9":"0","10":"73.7"},{"1":"36","2":"0","3":"500","4":"1","5":"0","6":"61","7":"310","8":"500","9":"0","10":"43.5"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"0","8":"11","9":"0","10":"88.0"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"11","8":"12","9":"0","10":"66.0"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"12","8":"30","9":"0","10":"84.1"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"30","8":"164","9":"0","10":"51.3"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"164","8":"216","9":"0","10":"167.5"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"216","8":"302","9":"0","10":"99.4"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"302","8":"351","9":"0","10":"143.0"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"351","8":"412","9":"0","10":"4.1"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"412","8":"466","9":"0","10":"81.9"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"466","8":"471","9":"0","10":"73.0"},{"1":"37","2":"0","3":"500","4":"1","5":"0","6":"67","7":"471","8":"500","9":"0","10":"51.1"},{"1":"38","2":"1","3":"250","4":"1","5":"1","6":"76","7":"0","8":"216","9":"0","10":"161.9"},{"1":"38","2":"1","3":"250","4":"1","5":"1","6":"76","7":"216","8":"250","9":"1","10":"43.4"},{"1":"39","2":"1","3":"33","4":"1","5":"1","6":"88","7":"0","8":"33","9":"1","10":"107.1"},{"1":"40","2":"0","3":"500","4":"1","5":"0","6":"67","7":"0","8":"70","9":"0","10":"137.6"},{"1":"40","2":"0","3":"500","4":"1","5":"0","6":"67","7":"70","8":"74","9":"0","10":"106.8"},{"1":"40","2":"0","3":"500","4":"1","5":"0","6":"67","7":"74","8":"202","9":"0","10":"57.5"},{"1":"40","2":"0","3":"500","4":"1","5":"0","6":"67","7":"202","8":"310","9":"0","10":"44.5"},{"1":"40","2":"0","3":"500","4":"1","5":"0","6":"67","7":"310","8":"388","9":"0","10":"183.5"},{"1":"40","2":"0","3":"500","4":"1","5":"0","6":"67","7":"388","8":"407","9":"0","10":"72.9"},{"1":"40","2":"0","3":"500","4":"1","5":"0","6":"67","7":"407","8":"482","9":"0","10":"25.8"},{"1":"40","2":"0","3":"500","4":"1","5":"0","6":"67","7":"482","8":"500","9":"0","10":"121.3"},{"1":"41","2":"1","3":"450","4":"1","5":"1","6":"75","7":"0","8":"92","9":"0","10":"112.4"},{"1":"41","2":"1","3":"450","4":"1","5":"1","6":"75","7":"92","8":"102","9":"0","10":"45.8"},{"1":"41","2":"1","3":"450","4":"1","5":"1","6":"75","7":"102","8":"124","9":"0","10":"22.3"},{"1":"41","2":"1","3":"450","4":"1","5":"1","6":"75","7":"124","8":"169","9":"0","10":"95.3"},{"1":"41","2":"1","3":"450","4":"1","5":"1","6":"75","7":"169","8":"211","9":"0","10":"145.6"},{"1":"41","2":"1","3":"450","4":"1","5":"1","6":"75","7":"211","8":"251","9":"0","10":"125.4"},{"1":"41","2":"1","3":"450","4":"1","5":"1","6":"75","7":"251","8":"450","9":"1","10":"80.3"},{"1":"42","2":"1","3":"153","4":"1","5":"0","6":"94","7":"0","8":"48","9":"0","10":"66.6"},{"1":"42","2":"1","3":"153","4":"1","5":"0","6":"94","7":"48","8":"153","9":"1","10":"110.8"},{"1":"43","2":"1","3":"190","4":"1","5":"1","6":"62","7":"0","8":"179","9":"0","10":"136.0"},{"1":"43","2":"1","3":"190","4":"1","5":"1","6":"62","7":"179","8":"190","9":"1","10":"66.8"},{"1":"44","2":"0","3":"500","4":"1","5":"0","6":"85","7":"0","8":"16","9":"0","10":"104.3"},{"1":"44","2":"0","3":"500","4":"1","5":"0","6":"85","7":"16","8":"192","9":"0","10":"124.4"},{"1":"44","2":"0","3":"500","4":"1","5":"0","6":"85","7":"192","8":"316","9":"0","10":"42.0"},{"1":"44","2":"0","3":"500","4":"1","5":"0","6":"85","7":"316","8":"328","9":"0","10":"119.2"},{"1":"44","2":"0","3":"500","4":"1","5":"0","6":"85","7":"328","8":"338","9":"0","10":"66.9"},{"1":"44","2":"0","3":"500","4":"1","5":"0","6":"85","7":"338","8":"344","9":"0","10":"140.8"},{"1":"44","2":"0","3":"500","4":"1","5":"0","6":"85","7":"344","8":"380","9":"0","10":"121.5"},{"1":"44","2":"0","3":"500","4":"1","5":"0","6":"85","7":"380","8":"500","9":"0","10":"130.8"},{"1":"45","2":"1","3":"209","4":"1","5":"1","6":"73","7":"0","8":"47","9":"0","10":"104.8"},{"1":"45","2":"1","3":"209","4":"1","5":"1","6":"73","7":"47","8":"209","9":"1","10":"134.5"},{"1":"46","2":"1","3":"384","4":"1","5":"1","6":"38","7":"0","8":"61","9":"0","10":"98.9"},{"1":"46","2":"1","3":"384","4":"1","5":"1","6":"38","7":"61","8":"384","9":"1","10":"10.0"},{"1":"47","2":"1","3":"67","4":"1","5":"1","6":"69","7":"0","8":"67","9":"1","10":"108.2"},{"1":"48","2":"1","3":"137","4":"1","5":"0","6":"60","7":"0","8":"11","9":"0","10":"21.5"},{"1":"48","2":"1","3":"137","4":"1","5":"0","6":"60","7":"11","8":"137","9":"1","10":"55.2"},{"1":"49","2":"0","3":"500","4":"1","5":"0","6":"76","7":"0","8":"71","9":"0","10":"115.3"},{"1":"49","2":"0","3":"500","4":"1","5":"0","6":"76","7":"71","8":"79","9":"0","10":"139.3"},{"1":"49","2":"0","3":"500","4":"1","5":"0","6":"76","7":"79","8":"190","9":"0","10":"70.9"},{"1":"49","2":"0","3":"500","4":"1","5":"0","6":"76","7":"190","8":"225","9":"0","10":"60.1"},{"1":"49","2":"0","3":"500","4":"1","5":"0","6":"76","7":"225","8":"328","9":"0","10":"58.3"},{"1":"49","2":"0","3":"500","4":"1","5":"0","6":"76","7":"328","8":"485","9":"0","10":"83.4"},{"1":"49","2":"0","3":"500","4":"1","5":"0","6":"76","7":"485","8":"500","9":"0","10":"90.4"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"0","8":"7","9":"0","10":"119.3"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"7","8":"13","9":"0","10":"87.1"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"13","8":"99","9":"0","10":"16.9"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"99","8":"201","9":"0","10":"96.3"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"201","8":"245","9":"0","10":"147.5"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"245","8":"249","9":"0","10":"147.7"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"249","8":"256","9":"0","10":"68.4"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"256","8":"340","9":"0","10":"38.1"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"340","8":"396","9":"0","10":"198.3"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"396","8":"462","9":"0","10":"93.5"},{"1":"50","2":"1","3":"476","4":"1","5":"1","6":"82","7":"462","8":"476","9":"1","10":"96.1"},{"1":"51","2":"1","3":"229","4":"1","5":"1","6":"39","7":"0","8":"73","9":"0","10":"116.8"},{"1":"51","2":"1","3":"229","4":"1","5":"1","6":"39","7":"73","8":"220","9":"0","10":"35.4"},{"1":"51","2":"1","3":"229","4":"1","5":"1","6":"39","7":"220","8":"224","9":"0","10":"70.9"},{"1":"51","2":"1","3":"229","4":"1","5":"1","6":"39","7":"224","8":"229","9":"1","10":"38.4"},{"1":"52","2":"1","3":"299","4":"1","5":"0","6":"39","7":"0","8":"34","9":"0","10":"111.6"},{"1":"52","2":"1","3":"299","4":"1","5":"0","6":"39","7":"34","8":"184","9":"0","10":"63.8"},{"1":"52","2":"1","3":"299","4":"1","5":"0","6":"39","7":"184","8":"189","9":"0","10":"109.1"},{"1":"52","2":"1","3":"299","4":"1","5":"0","6":"39","7":"189","8":"211","9":"0","10":"129.9"},{"1":"52","2":"1","3":"299","4":"1","5":"0","6":"39","7":"211","8":"299","9":"1","10":"142.4"},{"1":"53","2":"1","3":"112","4":"1","5":"1","6":"49","7":"0","8":"112","9":"1","10":"96.5"},{"1":"54","2":"0","3":"500","4":"1","5":"0","6":"84","7":"0","8":"16","9":"0","10":"145.0"},{"1":"54","2":"0","3":"500","4":"1","5":"0","6":"84","7":"16","8":"74","9":"0","10":"133.4"},{"1":"54","2":"0","3":"500","4":"1","5":"0","6":"84","7":"74","8":"98","9":"0","10":"88.5"},{"1":"54","2":"0","3":"500","4":"1","5":"0","6":"84","7":"98","8":"330","9":"0","10":"114.9"},{"1":"54","2":"0","3":"500","4":"1","5":"0","6":"84","7":"330","8":"398","9":"0","10":"116.1"},{"1":"54","2":"0","3":"500","4":"1","5":"0","6":"84","7":"398","8":"487","9":"0","10":"58.3"},{"1":"54","2":"0","3":"500","4":"1","5":"0","6":"84","7":"487","8":"500","9":"0","10":"30.9"},{"1":"55","2":"0","3":"500","4":"1","5":"0","6":"46","7":"0","8":"136","9":"0","10":"125.7"},{"1":"55","2":"0","3":"500","4":"1","5":"0","6":"46","7":"136","8":"149","9":"0","10":"38.8"},{"1":"55","2":"0","3":"500","4":"1","5":"0","6":"46","7":"149","8":"194","9":"0","10":"100.1"},{"1":"55","2":"0","3":"500","4":"1","5":"0","6":"46","7":"194","8":"207","9":"0","10":"110.0"},{"1":"55","2":"0","3":"500","4":"1","5":"0","6":"46","7":"207","8":"243","9":"0","10":"122.6"},{"1":"55","2":"0","3":"500","4":"1","5":"0","6":"46","7":"243","8":"289","9":"0","10":"107.6"},{"1":"55","2":"0","3":"500","4":"1","5":"0","6":"46","7":"289","8":"344","9":"0","10":"70.7"},{"1":"55","2":"0","3":"500","4":"1","5":"0","6":"46","7":"344","8":"353","9":"0","10":"139.5"},{"1":"55","2":"0","3":"500","4":"1","5":"0","6":"46","7":"353","8":"500","9":"0","10":"169.5"},{"1":"56","2":"1","3":"246","4":"1","5":"1","6":"63","7":"0","8":"246","9":"1","10":"135.2"},{"1":"57","2":"1","3":"68","4":"1","5":"1","6":"75","7":"0","8":"16","9":"0","10":"121.0"},{"1":"57","2":"1","3":"68","4":"1","5":"1","6":"75","7":"16","8":"68","9":"1","10":"124.9"},{"1":"58","2":"0","3":"54","4":"1","5":"1","6":"60","7":"0","8":"54","9":"0","10":"97.0"},{"1":"59","2":"1","3":"129","4":"1","5":"0","6":"74","7":"0","8":"129","9":"1","10":"195.3"},{"1":"60","2":"0","3":"500","4":"1","5":"1","6":"99","7":"0","8":"348","9":"0","10":"108.3"},{"1":"60","2":"0","3":"500","4":"1","5":"1","6":"99","7":"348","8":"420","9":"0","10":"11.6"},{"1":"60","2":"0","3":"500","4":"1","5":"1","6":"99","7":"420","8":"500","9":"0","10":"207.7"},{"1":"61","2":"0","3":"500","4":"1","5":"0","6":"59","7":"0","8":"211","9":"0","10":"80.7"},{"1":"61","2":"0","3":"500","4":"1","5":"0","6":"59","7":"211","8":"497","9":"0","10":"195.0"},{"1":"61","2":"0","3":"500","4":"1","5":"0","6":"59","7":"497","8":"500","9":"0","10":"115.0"},{"1":"62","2":"1","3":"211","4":"1","5":"0","6":"43","7":"0","8":"147","9":"0","10":"161.5"},{"1":"62","2":"1","3":"211","4":"1","5":"0","6":"43","7":"147","8":"151","9":"0","10":"95.6"},{"1":"62","2":"1","3":"211","4":"1","5":"0","6":"43","7":"151","8":"204","9":"0","10":"120.5"},{"1":"62","2":"1","3":"211","4":"1","5":"0","6":"43","7":"204","8":"211","9":"1","10":"108.6"},{"1":"63","2":"1","3":"106","4":"1","5":"1","6":"69","7":"0","8":"23","9":"0","10":"92.2"},{"1":"63","2":"1","3":"106","4":"1","5":"1","6":"69","7":"23","8":"46","9":"0","10":"121.6"},{"1":"63","2":"1","3":"106","4":"1","5":"1","6":"69","7":"46","8":"89","9":"0","10":"124.7"},{"1":"63","2":"1","3":"106","4":"1","5":"1","6":"69","7":"89","8":"106","9":"1","10":"124.7"},{"1":"64","2":"0","3":"500","4":"1","5":"0","6":"95","7":"0","8":"205","9":"0","10":"33.3"},{"1":"64","2":"0","3":"500","4":"1","5":"0","6":"95","7":"205","8":"278","9":"0","10":"82.5"},{"1":"64","2":"0","3":"500","4":"1","5":"0","6":"95","7":"278","8":"281","9":"0","10":"118.3"},{"1":"64","2":"0","3":"500","4":"1","5":"0","6":"95","7":"281","8":"342","9":"0","10":"35.3"},{"1":"64","2":"0","3":"500","4":"1","5":"0","6":"95","7":"342","8":"500","9":"0","10":"111.2"},{"1":"65","2":"1","3":"82","4":"1","5":"1","6":"88","7":"0","8":"82","9":"1","10":"175.1"},{"1":"66","2":"1","3":"112","4":"1","5":"1","6":"63","7":"0","8":"25","9":"0","10":"76.3"},{"1":"66","2":"1","3":"112","4":"1","5":"1","6":"63","7":"25","8":"36","9":"0","10":"131.9"},{"1":"66","2":"1","3":"112","4":"1","5":"1","6":"63","7":"36","8":"112","9":"1","10":"21.7"},{"1":"67","2":"0","3":"47","4":"1","5":"0","6":"53","7":"0","8":"5","9":"0","10":"113.3"},{"1":"67","2":"0","3":"47","4":"1","5":"0","6":"53","7":"5","8":"47","9":"0","10":"93.2"},{"1":"68","2":"1","3":"42","4":"1","5":"1","6":"73","7":"0","8":"42","9":"1","10":"134.2"},{"1":"69","2":"1","3":"372","4":"1","5":"0","6":"76","7":"0","8":"48","9":"0","10":"97.0"},{"1":"69","2":"1","3":"372","4":"1","5":"0","6":"76","7":"48","8":"218","9":"0","10":"186.5"},{"1":"69","2":"1","3":"372","4":"1","5":"0","6":"76","7":"218","8":"267","9":"0","10":"111.1"},{"1":"69","2":"1","3":"372","4":"1","5":"0","6":"76","7":"267","8":"271","9":"0","10":"93.7"},{"1":"69","2":"1","3":"372","4":"1","5":"0","6":"76","7":"271","8":"343","9":"0","10":"0.3"},{"1":"69","2":"1","3":"372","4":"1","5":"0","6":"76","7":"343","8":"372","9":"1","10":"37.4"},{"1":"70","2":"1","3":"27","4":"1","5":"0","6":"59","7":"0","8":"12","9":"0","10":"108.3"},{"1":"70","2":"1","3":"27","4":"1","5":"0","6":"59","7":"12","8":"27","9":"1","10":"111.1"},{"1":"71","2":"0","3":"270","4":"1","5":"1","6":"75","7":"0","8":"55","9":"0","10":"50.8"},{"1":"71","2":"0","3":"270","4":"1","5":"1","6":"75","7":"55","8":"109","9":"0","10":"129.7"},{"1":"71","2":"0","3":"270","4":"1","5":"1","6":"75","7":"109","8":"147","9":"0","10":"96.7"},{"1":"71","2":"0","3":"270","4":"1","5":"1","6":"75","7":"147","8":"236","9":"0","10":"131.6"},{"1":"71","2":"0","3":"270","4":"1","5":"1","6":"75","7":"236","8":"264","9":"0","10":"89.3"},{"1":"71","2":"0","3":"270","4":"1","5":"1","6":"75","7":"264","8":"270","9":"0","10":"76.3"},{"1":"72","2":"0","3":"130","4":"1","5":"0","6":"66","7":"0","8":"130","9":"0","10":"42.3"},{"1":"73","2":"1","3":"333","4":"1","5":"0","6":"105","7":"0","8":"254","9":"0","10":"76.1"},{"1":"73","2":"1","3":"333","4":"1","5":"0","6":"105","7":"254","8":"333","9":"1","10":"131.6"},{"1":"74","2":"1","3":"114","4":"1","5":"0","6":"57","7":"0","8":"31","9":"0","10":"92.3"},{"1":"74","2":"1","3":"114","4":"1","5":"0","6":"57","7":"31","8":"114","9":"1","10":"111.4"},{"1":"75","2":"1","3":"311","4":"1","5":"1","6":"77","7":"0","8":"33","9":"0","10":"69.6"},{"1":"75","2":"1","3":"311","4":"1","5":"1","6":"77","7":"33","8":"108","9":"0","10":"207.4"},{"1":"75","2":"1","3":"311","4":"1","5":"1","6":"77","7":"108","8":"153","9":"0","10":"81.7"},{"1":"75","2":"1","3":"311","4":"1","5":"1","6":"77","7":"153","8":"155","9":"0","10":"102.6"},{"1":"75","2":"1","3":"311","4":"1","5":"1","6":"77","7":"155","8":"157","9":"0","10":"126.0"},{"1":"75","2":"1","3":"311","4":"1","5":"1","6":"77","7":"157","8":"203","9":"0","10":"99.0"},{"1":"75","2":"1","3":"311","4":"1","5":"1","6":"77","7":"203","8":"311","9":"1","10":"74.3"},{"1":"76","2":"0","3":"500","4":"1","5":"1","6":"65","7":"0","8":"56","9":"0","10":"98.8"},{"1":"76","2":"0","3":"500","4":"1","5":"1","6":"65","7":"56","8":"63","9":"0","10":"122.5"},{"1":"76","2":"0","3":"500","4":"1","5":"1","6":"65","7":"63","8":"72","9":"0","10":"96.1"},{"1":"76","2":"0","3":"500","4":"1","5":"1","6":"65","7":"72","8":"296","9":"0","10":"140.7"},{"1":"76","2":"0","3":"500","4":"1","5":"1","6":"65","7":"296","8":"348","9":"0","10":"53.8"},{"1":"76","2":"0","3":"500","4":"1","5":"1","6":"65","7":"348","8":"364","9":"0","10":"192.8"},{"1":"76","2":"0","3":"500","4":"1","5":"1","6":"65","7":"364","8":"464","9":"0","10":"75.9"},{"1":"76","2":"0","3":"500","4":"1","5":"1","6":"65","7":"464","8":"481","9":"0","10":"41.6"},{"1":"76","2":"0","3":"500","4":"1","5":"1","6":"65","7":"481","8":"500","9":"0","10":"86.0"},{"1":"77","2":"0","3":"77","4":"1","5":"1","6":"79","7":"0","8":"15","9":"0","10":"105.9"},{"1":"77","2":"0","3":"77","4":"1","5":"1","6":"79","7":"15","8":"40","9":"0","10":"164.9"},{"1":"77","2":"0","3":"77","4":"1","5":"1","6":"79","7":"40","8":"77","9":"0","10":"136.4"},{"1":"78","2":"0","3":"500","4":"1","5":"0","6":"57","7":"0","8":"75","9":"0","10":"25.6"},{"1":"78","2":"0","3":"500","4":"1","5":"0","6":"57","7":"75","8":"130","9":"0","10":"145.2"},{"1":"78","2":"0","3":"500","4":"1","5":"0","6":"57","7":"130","8":"146","9":"0","10":"78.9"},{"1":"78","2":"0","3":"500","4":"1","5":"0","6":"57","7":"146","8":"366","9":"0","10":"166.6"},{"1":"78","2":"0","3":"500","4":"1","5":"0","6":"57","7":"366","8":"386","9":"0","10":"54.4"},{"1":"78","2":"0","3":"500","4":"1","5":"0","6":"57","7":"386","8":"500","9":"0","10":"105.7"},{"1":"79","2":"0","3":"500","4":"1","5":"0","6":"81","7":"0","8":"128","9":"0","10":"56.0"},{"1":"79","2":"0","3":"500","4":"1","5":"0","6":"81","7":"128","8":"500","9":"0","10":"136.1"},{"1":"80","2":"1","3":"320","4":"1","5":"1","6":"68","7":"0","8":"121","9":"0","10":"159.4"},{"1":"80","2":"1","3":"320","4":"1","5":"1","6":"68","7":"121","8":"122","9":"0","10":"178.0"},{"1":"80","2":"1","3":"320","4":"1","5":"1","6":"68","7":"122","8":"147","9":"0","10":"131.9"},{"1":"80","2":"1","3":"320","4":"1","5":"1","6":"68","7":"147","8":"194","9":"0","10":"173.7"},{"1":"80","2":"1","3":"320","4":"1","5":"1","6":"68","7":"194","8":"215","9":"0","10":"149.9"},{"1":"80","2":"1","3":"320","4":"1","5":"1","6":"68","7":"215","8":"240","9":"0","10":"94.7"},{"1":"80","2":"1","3":"320","4":"1","5":"1","6":"68","7":"240","8":"261","9":"0","10":"119.1"},{"1":"80","2":"1","3":"320","4":"1","5":"1","6":"68","7":"261","8":"262","9":"0","10":"61.1"},{"1":"80","2":"1","3":"320","4":"1","5":"1","6":"68","7":"262","8":"297","9":"0","10":"92.6"},{"1":"80","2":"1","3":"320","4":"1","5":"1","6":"68","7":"297","8":"320","9":"1","10":"148.8"},{"1":"81","2":"1","3":"89","4":"1","5":"0","6":"82","7":"0","8":"89","9":"1","10":"118.3"},{"1":"82","2":"1","3":"65","4":"1","5":"0","6":"76","7":"0","8":"61","9":"0","10":"72.0"},{"1":"82","2":"1","3":"65","4":"1","5":"0","6":"76","7":"61","8":"65","9":"1","10":"109.6"},{"1":"83","2":"1","3":"53","4":"1","5":"0","6":"77","7":"0","8":"30","9":"0","10":"75.0"},{"1":"83","2":"1","3":"53","4":"1","5":"0","6":"77","7":"30","8":"53","9":"1","10":"133.0"},{"1":"84","2":"1","3":"40","4":"1","5":"1","6":"80","7":"0","8":"40","9":"1","10":"28.8"},{"1":"85","2":"0","3":"149","4":"1","5":"0","6":"58","7":"0","8":"149","9":"0","10":"126.6"},{"1":"86","2":"1","3":"109","4":"1","5":"0","6":"52","7":"0","8":"40","9":"0","10":"117.2"},{"1":"86","2":"1","3":"109","4":"1","5":"0","6":"52","7":"40","8":"109","9":"1","10":"107.6"},{"1":"87","2":"1","3":"255","4":"1","5":"0","6":"80","7":"0","8":"104","9":"0","10":"91.4"},{"1":"87","2":"1","3":"255","4":"1","5":"0","6":"80","7":"104","8":"255","9":"1","10":"154.7"},{"1":"88","2":"1","3":"30","4":"1","5":"0","6":"47","7":"0","8":"30","9":"1","10":"66.2"},{"1":"89","2":"0","3":"500","4":"1","5":"1","6":"63","7":"0","8":"15","9":"0","10":"180.3"},{"1":"89","2":"0","3":"500","4":"1","5":"1","6":"63","7":"15","8":"72","9":"0","10":"89.1"},{"1":"89","2":"0","3":"500","4":"1","5":"1","6":"63","7":"72","8":"155","9":"0","10":"51.4"},{"1":"89","2":"0","3":"500","4":"1","5":"1","6":"63","7":"155","8":"166","9":"0","10":"94.3"},{"1":"89","2":"0","3":"500","4":"1","5":"1","6":"63","7":"166","8":"177","9":"0","10":"59.8"},{"1":"89","2":"0","3":"500","4":"1","5":"1","6":"63","7":"177","8":"292","9":"0","10":"106.2"},{"1":"89","2":"0","3":"500","4":"1","5":"1","6":"63","7":"292","8":"313","9":"0","10":"109.3"},{"1":"89","2":"0","3":"500","4":"1","5":"1","6":"63","7":"313","8":"500","9":"0","10":"114.2"},{"1":"90","2":"1","3":"193","4":"1","5":"0","6":"78","7":"0","8":"86","9":"0","10":"35.1"},{"1":"90","2":"1","3":"193","4":"1","5":"0","6":"78","7":"86","8":"193","9":"1","10":"108.8"},{"1":"91","2":"0","3":"500","4":"1","5":"1","6":"53","7":"0","8":"72","9":"0","10":"112.4"},{"1":"91","2":"0","3":"500","4":"1","5":"1","6":"53","7":"72","8":"142","9":"0","10":"43.2"},{"1":"91","2":"0","3":"500","4":"1","5":"1","6":"53","7":"142","8":"236","9":"0","10":"138.2"},{"1":"91","2":"0","3":"500","4":"1","5":"1","6":"53","7":"236","8":"363","9":"0","10":"131.4"},{"1":"91","2":"0","3":"500","4":"1","5":"1","6":"53","7":"363","8":"473","9":"0","10":"192.0"},{"1":"91","2":"0","3":"500","4":"1","5":"1","6":"53","7":"473","8":"498","9":"0","10":"106.3"},{"1":"91","2":"0","3":"500","4":"1","5":"1","6":"53","7":"498","8":"500","9":"0","10":"101.9"},{"1":"92","2":"1","3":"125","4":"1","5":"0","6":"84","7":"0","8":"19","9":"0","10":"103.9"},{"1":"92","2":"1","3":"125","4":"1","5":"0","6":"84","7":"19","8":"64","9":"0","10":"102.8"},{"1":"92","2":"1","3":"125","4":"1","5":"0","6":"84","7":"64","8":"109","9":"0","10":"26.1"},{"1":"92","2":"1","3":"125","4":"1","5":"0","6":"84","7":"109","8":"121","9":"0","10":"33.2"},{"1":"92","2":"1","3":"125","4":"1","5":"0","6":"84","7":"121","8":"125","9":"1","10":"96.9"},{"1":"93","2":"1","3":"249","4":"1","5":"1","6":"86","7":"0","8":"4","9":"0","10":"56.1"},{"1":"93","2":"1","3":"249","4":"1","5":"1","6":"86","7":"4","8":"10","9":"0","10":"68.0"},{"1":"93","2":"1","3":"249","4":"1","5":"1","6":"86","7":"10","8":"154","9":"0","10":"103.2"},{"1":"93","2":"1","3":"249","4":"1","5":"1","6":"86","7":"154","8":"157","9":"0","10":"87.1"},{"1":"93","2":"1","3":"249","4":"1","5":"1","6":"86","7":"157","8":"185","9":"0","10":"105.9"},{"1":"93","2":"1","3":"249","4":"1","5":"1","6":"86","7":"185","8":"208","9":"0","10":"192.2"},{"1":"93","2":"1","3":"249","4":"1","5":"1","6":"86","7":"208","8":"249","9":"1","10":"55.0"},{"1":"94","2":"1","3":"102","4":"1","5":"1","6":"42","7":"0","8":"102","9":"1","10":"96.7"},{"1":"95","2":"0","3":"500","4":"1","5":"1","6":"75","7":"0","8":"30","9":"0","10":"57.7"},{"1":"95","2":"0","3":"500","4":"1","5":"1","6":"75","7":"30","8":"35","9":"0","10":"166.2"},{"1":"95","2":"0","3":"500","4":"1","5":"1","6":"75","7":"35","8":"115","9":"0","10":"127.0"},{"1":"95","2":"0","3":"500","4":"1","5":"1","6":"75","7":"115","8":"208","9":"0","10":"57.0"},{"1":"95","2":"0","3":"500","4":"1","5":"1","6":"75","7":"208","8":"277","9":"0","10":"118.2"},{"1":"95","2":"0","3":"500","4":"1","5":"1","6":"75","7":"277","8":"371","9":"0","10":"91.5"},{"1":"95","2":"0","3":"500","4":"1","5":"1","6":"75","7":"371","8":"423","9":"0","10":"112.5"},{"1":"95","2":"0","3":"500","4":"1","5":"1","6":"75","7":"423","8":"500","9":"0","10":"96.4"},{"1":"96","2":"0","3":"139","4":"1","5":"1","6":"87","7":"0","8":"38","9":"0","10":"142.8"},{"1":"96","2":"0","3":"139","4":"1","5":"1","6":"87","7":"38","8":"125","9":"0","10":"46.0"},{"1":"96","2":"0","3":"139","4":"1","5":"1","6":"87","7":"125","8":"139","9":"0","10":"79.1"},{"1":"97","2":"0","3":"298","4":"1","5":"0","6":"43","7":"0","8":"36","9":"0","10":"99.3"},{"1":"97","2":"0","3":"298","4":"1","5":"0","6":"43","7":"36","8":"46","9":"0","10":"94.7"},{"1":"97","2":"0","3":"298","4":"1","5":"0","6":"43","7":"46","8":"266","9":"0","10":"2.0"},{"1":"97","2":"0","3":"298","4":"1","5":"0","6":"43","7":"266","8":"293","9":"0","10":"141.6"},{"1":"97","2":"0","3":"298","4":"1","5":"0","6":"43","7":"293","8":"298","9":"0","10":"110.0"},{"1":"98","2":"1","3":"305","4":"1","5":"1","6":"66","7":"0","8":"11","9":"0","10":"82.1"},{"1":"98","2":"1","3":"305","4":"1","5":"1","6":"66","7":"11","8":"118","9":"0","10":"211.9"},{"1":"98","2":"1","3":"305","4":"1","5":"1","6":"66","7":"118","8":"135","9":"0","10":"213.3"},{"1":"98","2":"1","3":"305","4":"1","5":"1","6":"66","7":"135","8":"172","9":"0","10":"51.3"},{"1":"98","2":"1","3":"305","4":"1","5":"1","6":"66","7":"172","8":"196","9":"0","10":"118.8"},{"1":"98","2":"1","3":"305","4":"1","5":"1","6":"66","7":"196","8":"239","9":"0","10":"91.6"},{"1":"98","2":"1","3":"305","4":"1","5":"1","6":"66","7":"239","8":"269","9":"0","10":"107.5"},{"1":"98","2":"1","3":"305","4":"1","5":"1","6":"66","7":"269","8":"305","9":"1","10":"109.1"},{"1":"99","2":"1","3":"47","4":"1","5":"1","6":"73","7":"0","8":"47","9":"1","10":"93.4"},{"1":"100","2":"1","3":"30","4":"1","5":"0","6":"85","7":"0","8":"5","9":"0","10":"156.6"},{"1":"100","2":"1","3":"30","4":"1","5":"0","6":"85","7":"5","8":"6","9":"0","10":"116.8"},{"1":"100","2":"1","3":"30","4":"1","5":"0","6":"85","7":"6","8":"30","9":"1","10":"128.8"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> --- class: center, middle # Others --- # PS matching: Stratified cox .large[ Propensity score 매칭 후 **stratified cox 필수 아님** ] - Stratified: 매칭쌍끼리는 **baseline hazard**가 같고, **다른 쌍끼린 다르다**는 가정. - No stratified: baseline hazard **전부 동일**하다는 가정 .large[ 1:1 매칭이면 `\(\dfrac{N}{2}\)` 개나 strata가 생김. 의미 없음 1:다 매칭으로 strata갯수가 적으면 고려할 수도? ] --- # 국민건강영양조사 **2-stage cluster sampling** - **psu(1차집락)**: 서울전체 랜덤 200명(X), 서울 특정 지역 골라서 200명(O) - **kstrata(2차집락)**: 지역과 집의 형태 (아파트/일반주택) - **wt(가중치)**: 인원이 적은데 사회적으로 혹은 학문적으로 배려해야 할 경우 대상자를 조금 많이 모집한 후 가중치를 줄여서 반영, 영양/설문/임상 검사에 따라 가중치종류 다름름 **SAS** surveyreg surveylogistic, **R** svyglm svycox <center> <img src="https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FxpFlG%2FbtqAyxBZnBG%2FnSjUohAQ00nKktNcEqwEq0%2Fimg.png" width=40%></a> </center> --- # Executive summary **Table 1** - 연속변수 2그룹: 정규분포 **t-test**, 아니면 **Wilcox-test** - 연속변수 3그룹이상: 정규분포 **ANOVA**, 아니면 **Kruskal–Wallis ANOVA** - 범주형 변수: 샘플수 충분하면 **Chisq-test**, 아니면 **Fisher-test** **회귀분석** - **Univariate, multivariate** 같이 보여주기, **Subgroup** 분석 추천 - **Stepwise selection 비추천**: 예측모형 목적 아님, 임상맥락 고려X **생존분석** - Kaplan-meier 그림선 겹치면 안됨: **Time stratification** 필요 - 보정할 변수가 Index time 이후면 안됨: **Time-dependent covariate** 필요 - Propensity score 매칭 후 pair 고려한 **stratified cox 는 필수아님** **국민건강영양조사** - **표본추출정보를 고려**한 통계분석: Survey table1/GLM/Cox --- class: center, middle # END