class: center, middle, inverse, title-slide # 4.2 — Difference-in-Difference Models ## ECON 480 • Econometrics • Fall 2021 ### Ryan Safner
Assistant Professor of Economics
safner@hood.edu
ryansafner/metricsF21
metricsF21.classes.ryansafner.com
--- class: inverse # Outline ### [Difference-in-Difference Models](#3) ### [Example I: HOPE in Georgia](#32) ### [Generalizing DND Models](#74) ### [Example II: "The" Card-Kreuger Minimum Wage Study](#88) --- # Clever Research Designs Identify Causality Again, **this toolkit** of research designs to **identify causal effects** is the economist’s **comparative advantage** that firms and governments want! <img src="4.2-slides_files/figure-html/unnamed-chunk-1-1.png" width="1008" style="display: block; margin: auto;" /> --- class: inverse, center, middle # Difference-in-Difference Models --- # Natural Experiments .center[ ![](../images/federalismnaturalexperiements.png) ] --- # Difference-in-Difference Models I .pull-left[ .smallest[ - Often, we want to examine the consequences of a change, such as a law or policy intervention ] ] --- # Difference-in-Difference Models I .pull-left[ .smallest[ - Often, we want to examine the consequences of a change, such as a law or policy intervention - .green[**Example**]: how do States that implement policy `\(X\)` see changes in `\(Y\)` - **Treatment**: States that implement `\(X\)` - **Control**: States that did not implement `\(X\)` ] ] --- # Difference-in-Difference Models I .pull-left[ .smallest[ - Often, we want to examine the consequences of a change, such as a law or policy intervention - .green[**Example**]: how do States that implement policy `\(X\)` see changes in `\(Y\)` - **Treatment**: States that implement `\(X\)` - **Control**: States that did not implement `\(X\)` - If we have **panel data** with observations for all states **before** and **after** the change... - Find the *difference* between treatment & control groups *in* their *differences* before and after the treatment period ] ] -- .pull-right[ .center[ ![](https://www.dropbox.com/s/vpk560fok07yo9t/dndhot.jpg?raw=1) ] ] --- # Difference-in-Difference Models I .pull-left[ .smallest[ - Often, we want to examine the consequences of a change, such as a law or policy intervention - .green[**Example**]: how do States that implement policy `\(X\)` see changes in `\(Y\)` - **Treatment**: States that implement `\(X\)` - **Control**: States that did not implement `\(X\)` - If we have **panel data** with observations for all states **before** *and* **after** the change... - Find the *difference* between treatment & control groups *in* their *differences* before and after the treatment period ] ] .pull-right[ <img src="4.2-slides_files/figure-html/unnamed-chunk-2-1.png" width="504" /> ] --- # Difference-in-Difference Models II .smallest[ - The .hi[difference-in-difference model] (aka .hi[“diff-in-diff”] or .hi[“DND”]) identifies treatment effect by differencing the difference pre- and post-treatment values of `\(Y\)` between treatment and control groups ] -- .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] -- .quitesmall[ - `\(Treated_i= \begin{cases}1 \text{ if } i \text{ is in treatment group}\\ 0 \text{ if } i \text{ is not in treatment group}\end{cases} \quad After_t= \begin{cases}1 \text{ if } t \text{ is after treatment period}\\ 0 \text{ if } t \text{ is before treatment period}\end{cases}\)` ] -- .smallest[ | | Control | Treatment | **Group Diff** `\((\Delta Y_i)\)` | |----|---------|-----------|---------------------------| | Before | `\(\beta_0\)` | `\(\beta_0+\beta_1\)` | `\(\beta_1\)` | | After | `\(\beta_0+\beta_2\)` | `\(\beta_0+\beta_1+\beta_2+\beta_3\)` | `\(\beta_1+\beta_3\)` | | **Time Diff** `\((\Delta Y_t)\)` | `\(\beta_2\)` | `\(\beta_2+\beta_3\)` | **Diff-in-diff** `\(\Delta_i \Delta_t: \beta_3\)` | ] --- # Silly Example: Hot Dogs .pull-left[ .center[ ![:scale 50%](../images/hotdogs-small.jpg) ] .quitesmall[ Is there a discount when you get cheese *and* chili? <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["price"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["cheese"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["chili"],"name":[3],"type":["dbl"],"align":["right"]}],"data":[{"1":"2.00","2":"0","3":"0"},{"1":"2.35","2":"1","3":"0"},{"1":"2.35","2":"0","3":"1"},{"1":"2.70","2":"1","3":"1"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] -- .pull-right[ .smallest[ ```r lm(price ~ cheese + chili + cheese*chili, data = hotdogs) %>% tidy() ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["term"],"name":[1],"type":["chr"],"align":["left"]},{"label":["estimate"],"name":[2],"type":["dbl"],"align":["right"]}],"data":[{"1":"(Intercept)","2":"2.00"},{"1":"cheese","2":"0.35"},{"1":"chili","2":"0.35"},{"1":"cheese:chili","2":"0.00"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] --- # Silly Example: Hot Dogs .pull-left[ .center[ ![:scale 50%](../images/hotdogs-small.jpg) ] .quitesmall[ Is there a discount when you get cheese *and* chili? | | No Cheese | Cheese | **Cheese Diff**| |----|---------|-----------|---------------------------| | No Chili | $2.00 | $2.35 | $0.35 | | Chili | $2.35 | $2.70 | $0.35 | | **Chili Diff** | $0.35 | $0.35 | $0.00 (**Diff-in-diff**) | ] ] .pull-right[ .smallest[ ```r lm(price ~ cheese + chili + cheese*chili, data = hotdogs) %>% tidy() ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["term"],"name":[1],"type":["chr"],"align":["left"]},{"label":["estimate"],"name":[2],"type":["dbl"],"align":["right"]}],"data":[{"1":"(Intercept)","2":"2.00"},{"1":"cheese","2":"0.35"},{"1":"chili","2":"0.35"},{"1":"cheese:chili","2":"0.00"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] -- .smallest[ - Diff-n-diff is just a model with an interaction term between two dummies! ] --- # Visualizing Diff-in-Diff .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-10-1.png" width="504" /> ] .pull-right[ .smallest[ - .red[Control group `\\((\text{Treated_i} = 0)\\)`] - .red[`\\(\hat{\beta_0}\\)`]: value of `\(Y\)` for **control** group **before** treatment - .red[`\\(\hat{\beta_2}\\)`]: time *difference* (for **control** group) ] ] --- # Visualizing Diff-in-Diff .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-11-1.png" width="504" /> ] .pull-right[ .smallest[ - .red[Control group `\\((\text{Treated_i} = 0)\\)`] - .red[`\\(\hat{\beta_0}\\)`]: value of `\(Y\)` for **control** group **before** treatment - .red[`\\(\hat{\beta_2}\\)`]: time *difference* (for **control** group) - .green[Treatment group `\\((\text{Treated}_i = 1)\\)`] ] ] --- # Visualizing Diff-in-Diff .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-12-1.png" width="504" /> ] .pull-right[ .smallest[ - .red[Control group `\\((\text{Treated_i} = 0)\\)`] - .red[`\\(\hat{\beta_0}\\)`]: value of `\(Y\)` for **control** group **before** treatment - .red[`\\(\hat{\beta_2}\\)`]: time *difference* (for **control** group) - .green[Treatment group `\\((\text{Treated}_i = 1)\\)`] - .green[`\\(\hat{\beta_1}\\)`]: *difference* between groups **before** treatment ] ] --- # Visualizing Diff-in-Diff .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-13-1.png" width="504" /> ] .pull-right[ .smallest[ - .red[Control group `\\((\text{Treated_i} = 0)\\)`] - .red[`\\(\hat{\beta_0}\\)`]: value of `\(Y\)` for **control** group **before** treatment - .red[`\\(\hat{\beta_2}\\)`]: time *difference* (for **control** group) - .green[Treatment group `\\((\text{Treated}_i = 1)\\)`] - .green[`\\(\hat{\beta_1}\\)`]: *difference* between groups **before** treatment - .blue[`\\(\hat{\beta_3}\\)`]: .hi-blue[difference-in-difference (treatment effect)] ] ] --- # Visualizing Diff-in-Diff II .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-14-1.png" width="504" /> ] .pull-right[ .smallest[ - `\(\bar{Y_i}\)` for **Control** group **before**: `\(\hat{\beta_0}\)` ] ] --- # Visualizing Diff-in-Diff II .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-15-1.png" width="504" /> ] .pull-right[ .smallest[ - `\(\bar{Y_i}\)` for **Control** group **before**: `\(\hat{\beta_0}\)` - `\(\bar{Y_i}\)` for **Control** group **after**: `\(\hat{\beta_0}+\hat{\beta_2}\)` ] ] --- # Visualizing Diff-in-Diff II .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-16-1.png" width="504" /> ] .pull-right[ .smallest[ - `\(\bar{Y_i}\)` for **Control** group **before**: `\(\hat{\beta_0}\)` - `\(\bar{Y_i}\)` for **Control** group **after**: `\(\hat{\beta_0}+\hat{\beta_2}\)` - `\(\bar{Y_i}\)` for **Treatment** group **before**: `\(\hat{\beta_0}+\hat{\beta_1}\)` ] ] --- # Visualizing Diff-in-Diff II .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-17-1.png" width="504" /> ] .pull-right[ .smallest[ - `\(\bar{Y_i}\)` for **Control** group **before**: `\(\hat{\beta_0}\)` - `\(\bar{Y_i}\)` for **Control** group **after**: `\(\hat{\beta_0}+\hat{\beta_2}\)` - `\(\bar{Y_i}\)` for **Treatment** group **before**: `\(\hat{\beta_0}+\hat{\beta_1}\)` - `\(\bar{Y_i}\)` for **Treatment** group **after**: `\(\hat{\beta_0}+\hat{\beta_1}+\hat{\beta_2}+\hat{\beta_3}\)` ] ] --- # Visualizing Diff-in-Diff II .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-18-1.png" width="504" /> ] .pull-right[ .smallest[ - `\(\bar{Y_i}\)` for **Control** group **before**: `\(\hat{\beta_0}\)` - `\(\bar{Y_i}\)` for **Control** group **after**: `\(\hat{\beta_0}+\hat{\beta_2}\)` - `\(\bar{Y_i}\)` for **Treatment** group **before**: `\(\hat{\beta_0}+\hat{\beta_1}\)` - `\(\bar{Y_i}\)` for **Treatment** group **after**: `\(\hat{\beta_0}+\hat{\beta_1}+\hat{\beta_2}+\hat{\beta_3}\)` - **Group Difference (before)**: `\(\hat{\beta_1}\)` ] ] --- # Visualizing Diff-in-Diff II .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-19-1.png" width="504" /> ] .pull-right[ .smallest[ - `\(\bar{Y_i}\)` for **Control** group **before**: `\(\hat{\beta_0}\)` - `\(\bar{Y_i}\)` for **Control** group **after**: `\(\hat{\beta_0}+\hat{\beta_2}\)` - `\(\bar{Y_i}\)` for **Treatment** group **before**: `\(\hat{\beta_0}+\hat{\beta_1}\)` - `\(\bar{Y_i}\)` for **Treatment** group **after**: `\(\hat{\beta_0}+\hat{\beta_1}+\hat{\beta_2}+\hat{\beta_3}\)` - **Group Difference (before)**: `\(\hat{\beta_1}\)` - **Time Difference**: `\(\hat{\beta_2}\)` ] ] --- # Visualizing Diff-in-Diff II .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-20-1.png" width="504" /> ] .pull-right[ .smallest[ - `\(\bar{Y_i}\)` for **Control** group **before**: `\(\hat{\beta_0}\)` - `\(\bar{Y_i}\)` for **Control** group **after**: `\(\hat{\beta_0}+\hat{\beta_2}\)` - `\(\bar{Y_i}\)` for **Treatment** group **before**: `\(\hat{\beta_0}+\hat{\beta_1}\)` - `\(\bar{Y_i}\)` for **Treatment** group **after**: `\(\hat{\beta_0}+\hat{\beta_1}+\hat{\beta_2}+\hat{\beta_3}\)` - **Group Difference (before)**: `\(\hat{\beta_1}\)` - **Time Difference**: `\(\hat{\beta_2}\)` - .blue[**Difference-in-difference**: `\\(\hat{\beta_3}\\)` (treatment effect)] ] ] --- # Comparing Group Means (Again) .smallest[ `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` ] | | Control | Treatment | **Group Diff** `\((\Delta Y_i)\)` | |----|---------|-----------|---------------------------| | Before | `\(\beta_0\)` | `\(\beta_0+\beta_1\)` | `\(\beta_1\)` | | After | `\(\beta_0+\beta_2\)` | `\(\beta_0+\beta_1+\beta_2+\beta_3\)` | `\(\beta_1+\beta_3\)` | | **Time Diff** `\((\Delta Y_t)\)` | `\(\beta_2\)` | `\(\beta_2+\beta_3\)` | **Diff-in-diff** `\(\Delta_i \Delta_t: \beta_3\)` | --- # Key Assumption: Counterfactual `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-21-1.png" width="504" /> ] .pull-right[ .smaller[ - Key assumption for DND: **time trends** (for treatment and control) are **parallel** - Treatment and control groups assumed to be identical over time on average, **except for treatment** - .hi[Counterfactual]: if the treatment group had not recieved treatment, it would have changed identically over time as the control group `\((\hat{\beta_2})\)` ] ] --- # Key Assumption: Counterfactual `$$\hat{Y_{it}}=\beta_0+\beta_1 \text{Treated}_i +\beta_2 \text{After}_{t}+\beta_3 (\text{Treated}_i \times \text{After}_{t})+u_{it}$$` .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-22-1.png" width="504" /> ] .pull-right[ - If the time-trends would have been *different*, a **biased** measure of the treatment effect `\((\hat{\beta_3})\)`! ] --- class: inverse, center, middle # Example I: HOPE in Georgia --- # Diff-in-Diff Example I .content-box-green[ .smallest[ .green[**Example**]: In 1993 Georgia initiated a HOPE scholarship program to let state residents with at least a B average in high school attend public college in Georgia for free. Did it increase college enrollment? ] ] .smallest[ - Micro-level data on 4,291 young individuals ] -- .smallest[ - `\(\text{InCollege}_{it}=\begin{cases}1 \text{ if } i \text{ is in college during year }t\\ 0 \text{ if } i \text{ is not in college during year }t\\ \end{cases}\)` ] -- .smallest[ - `\(\text{Georgia}_i=\begin{cases}1 \text{ if } i \text{ is a Georgia resident}\\ 0 \text{ if } i \text{ is not a Georgia resident}\\ \end{cases}\)` ] -- .smallest[ - `\(\text{After}_t=\begin{cases}1 \text{ if } t \text{ is after 1992}\\ 0 \text{ if } t \text{ is after 1992}\\ \end{cases}\)` ] .source[Dynarski, Susan, 1999, “Hope for Whom? Financial Aid for the Middle Class and its Impact on College Attendance,” *National Tax Journal* 53(3): 629-661] .tiny[Note: With a dummy *dependent* (Y) variable, coefficients estimate the probability `\\(Y=1\\)`, i.e. the *probability* a person is enrolled in college] --- # Diff-in-Diff Example II - We can use a DND model to measure the effect of HOPE scholarship on enrollments - Georgia and nearby States, if not for HOPE, changes should be the same over time -- - Treatment period: after 1992 -- - Treatment: Georgia -- - Differences-in-differences: `$$\Delta_i \Delta_t Enrolled = (\text{GA}_{after}-\text{GA}_{before})-(\text{neighbors}_{after}-\text{neighbors}_{before})$$` -- - Regression equation: `$$\widehat{\text{Enrolled}_{it}} = \beta_0+\beta_1 \, \text{Georgia}_{i}+\beta_2 \, \text{After}_{t}+\beta_3 \, (\text{Georgia}_{i} \times \text{After}_{t})$$` --- # Example: Data .smallest[ <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["StateCode"],"name":[1],"type":["fct"],"align":["left"]},{"label":["Age"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["Year"],"name":[3],"type":["fct"],"align":["left"]},{"label":["Weight"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["Age18"],"name":[5],"type":["dbl"],"align":["right"]},{"label":["LowIncome"],"name":[6],"type":["dbl"],"align":["right"]},{"label":["InCollege"],"name":[7],"type":["dbl"],"align":["right"]},{"label":["After"],"name":[8],"type":["dbl"],"align":["right"]},{"label":["Georgia"],"name":[9],"type":["dbl"],"align":["right"]},{"label":["AfterGeorgia"],"name":[10],"type":["dbl"],"align":["right"]},{"label":["Black"],"name":[11],"type":["dbl"],"align":["right"]}],"data":[{"1":"56","2":"19","3":"89","4":"1396","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1080","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"924","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"891","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1395","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1106","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"965","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"958","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1006","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1183","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1209","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1069","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"835","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1196","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1380","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1244","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"857","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1105","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1104","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1268","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1008","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"970","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1004","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1009","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1262","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1091","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1006","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"898","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1195","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"997","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1131","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1037","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1117","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1044","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"935","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1299","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1877","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1159","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"992","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"960","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1000","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1144","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1062","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1161","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1061","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1101","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1176","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1251","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1395","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"995","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1115","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1150","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1495","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1026","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1003","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"802","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"890","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1249","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"928","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1148","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"917","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"904","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"952","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"935","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1151","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1038","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"925","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1148","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1396","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"924","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1198","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1112","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"938","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"936","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1774","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1142","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1202","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"935","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1115","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"913","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1214","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1019","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1164","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"925","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1486","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1084","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1156","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1008","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1143","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1090","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1043","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"996","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1050","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1105","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1893","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1115","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1351","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"919","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1087","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1013","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1051","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1039","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1196","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1132","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1348","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1265","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1204","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1059","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1265","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1029","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1220","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1082","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1019","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1211","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1268","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"891","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1080","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1214","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"NA","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1157","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"912","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"916","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1182","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"978","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1082","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1157","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"943","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"961","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"860","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"924","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"924","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1196","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"942","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"911","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1392","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1143","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1103","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1164","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1296","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1453","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"902","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1074","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1089","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"999","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"996","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1206","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1135","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1080","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"847","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1004","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"959","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"946","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1241","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1036","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"923","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1196","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1480","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1028","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"997","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1163","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"894","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1073","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1520","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"925","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1088","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1026","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"856","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1195","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1063","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"924","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1084","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1044","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1024","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"960","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1021","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1309","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"791","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1081","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1161","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"968","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"906","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"913","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"909","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"965","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1257","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1096","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1224","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"89","4":"1227","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1032","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1201","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1227","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1038","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"89","4":"1092","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"89","4":"1207","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1131","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"89","4":"1243","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"852","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1057","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1016","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1209","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1037","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"849","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1016","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1139","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1029","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1647","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1362","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"848","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"863","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1082","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1198","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1164","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1141","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"918","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1172","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1144","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"948","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1180","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1006","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1123","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1360","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1018","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1035","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"769","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1172","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1919","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"2013","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1074","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1164","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1043","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1088","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1436","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"969","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1186","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"967","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"919","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1180","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"912","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1030","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1026","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"878","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"862","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1539","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1120","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"864","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1109","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1208","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1223","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1088","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1188","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1141","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1181","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1139","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1369","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1030","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1141","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1050","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"945","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1032","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1047","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"984","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1058","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1172","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"972","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1042","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1160","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1178","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1155","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"924","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"966","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1083","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1162","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1048","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1204","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"964","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1487","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1105","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1615","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1029","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"925","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1434","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1063","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1121","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1032","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1546","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"799","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1162","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1234","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"951","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"960","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1180","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1204","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"868","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1411","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"944","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"908","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1138","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1040","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"951","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1045","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1002","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1054","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1290","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1167","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1018","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1615","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"868","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1145","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1142","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1029","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"874","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1072","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1190","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1146","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1006","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1050","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"903","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1183","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1254","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"932","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1007","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"860","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"945","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1034","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1126","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1137","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"918","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1039","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1044","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1077","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1290","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1145","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1126","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1036","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1022","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"869","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1188","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1328","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1149","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1158","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1054","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1140","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1032","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1297","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1198","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1891","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1223","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"840","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1160","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"930","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1029","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1416","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1109","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"886","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1236","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"970","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1052","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"951","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"1155","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1162","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1369","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"929","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1281","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"1198","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1172","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"966","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1155","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"838","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"90","4":"1173","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1115","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"90","4":"873","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1188","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1292","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"90","4":"1485","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"90","4":"886","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1200","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1112","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1681","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1241","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1078","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1321","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1674","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1409","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1302","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1045","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1123","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1089","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1018","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"932","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1260","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1251","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"739","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1010","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1017","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1378","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1089","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"882","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1126","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1463","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1297","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"911","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"991","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1282","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1222","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1209","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1267","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1377","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1045","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1395","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1200","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1014","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1101","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"899","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1019","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1238","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1291","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1152","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1017","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1448","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1484","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1441","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1383","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1039","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1119","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1200","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1247","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"739","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"870","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1187","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1230","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"994","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1286","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"912","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1031","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"982","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1328","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1140","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1377","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1222","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1430","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1441","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1301","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1312","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1417","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"931","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1294","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1078","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1225","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1506","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"878","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1200","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"767","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1089","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1124","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"NA","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"900","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1289","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1139","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1329","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1095","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"899","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1076","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"996","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1392","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1286","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1196","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"967","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1033","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1007","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"899","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1463","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1003","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1022","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1405","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1443","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1232","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"850","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1578","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1330","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1330","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1007","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1134","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1097","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1087","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1023","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1338","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1689","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1408","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1068","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1486","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1129","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"895","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1330","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1077","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1167","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"882","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1150","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1237","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1072","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1095","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"717","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1078","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1006","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1023","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1006","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1258","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"1080","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1383","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1020","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"942","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1221","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1224","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"91","4":"900","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"931","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1064","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1114","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1147","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"1153","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"718","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"1003","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"91","4":"1124","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"91","4":"952","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"91","4":"892","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1246","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"2263","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1227","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"1012","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1000","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"992","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1134","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1618","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1039","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1286","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1052","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"1376","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"867","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1280","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"878","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1056","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"883","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1664","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1558","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1104","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1248","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"894","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1290","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"NA","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1229","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"754","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"752","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1396","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1058","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1228","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"905","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"848","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1591","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"950","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1022","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1349","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1313","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1077","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"1148","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1313","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1260","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1669","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1365","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1014","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1364","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1233","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1469","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1063","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"952","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1018","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1166","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1129","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"881","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1195","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"1361","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1080","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1017","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1105","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"995","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"877","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1063","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1381","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1376","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1451","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1324","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1008","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1244","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"861","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"877","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1000","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1020","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1425","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1417","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"874","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1020","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1078","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"1200","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1160","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1267","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"846","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"1228","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1104","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1017","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"974","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"NA","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1245","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1219","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1564","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"872","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1521","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1163","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1262","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1018","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1240","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"1027","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1331","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1359","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1294","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1086","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1059","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1388","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1141","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1199","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1267","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1152","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1348","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1440","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"944","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1396","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1203","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1097","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1215","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"876","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"904","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"901","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1169","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"867","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1626","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"874","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"985","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1158","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"720","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1591","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1034","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1093","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"880","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"926","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"92","4":"1133","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"1145","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1076","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"92","4":"1222","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"92","4":"936","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"867","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"92","4":"1150","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1226","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1405","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1098","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1273","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1173","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"1456","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1239","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1662","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1660","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"737","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"968","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1645","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"804","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1272","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"1389","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1260","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1234","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1174","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1085","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"978","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1213","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1314","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1727","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1356","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1217","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1076","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"958","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1654","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1113","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1004","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1271","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1397","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"1167","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"794","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1191","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"1331","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"979","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1332","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1122","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1146","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"942","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1113","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1270","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1295","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1627","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"723","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1087","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1185","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1374","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1008","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1710","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1229","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1058","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1166","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"742","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1048","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1103","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1460","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"968","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1906","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1052","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"1645","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1714","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1112","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1290","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1012","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1718","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"793","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1020","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1055","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1191","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"959","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1077","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1459","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1440","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1159","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"975","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1157","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"968","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1456","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1100","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1338","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"964","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1677","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1061","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1727","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1097","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1253","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1001","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1336","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"794","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1085","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1024","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1405","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1135","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1212","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1041","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1020","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1254","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"737","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1019","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1901","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"951","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1171","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1326","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1158","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"1163","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"93","4":"1140","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"963","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1059","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"1232","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"902","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1144","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"999","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"990","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1409","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1399","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"969","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1441","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"1375","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"93","4":"729","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"1460","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1409","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"1150","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"93","4":"963","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"850","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1029","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1058","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"93","4":"1667","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"981","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1138","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1336","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1989","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1385","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"952","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1383","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1361","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1143","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1355","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1194","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1082","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1280","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1280","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1355","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1643","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"831","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1025","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1707","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1676","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1306","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1195","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1188","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1358","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1385","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1281","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1446","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1077","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1022","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1346","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1286","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1204","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1240","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1462","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1298","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1180","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1341","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1433","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1416","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1493","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1436","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1180","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1067","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1630","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1291","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"878","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1330","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1055","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1850","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1731","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1087","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"943","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1541","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1055","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1207","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"582","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1475","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1255","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1793","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1169","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1366","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1360","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"922","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"836","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1622","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"981","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1048","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1189","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1278","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1355","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1189","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1306","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1593","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1381","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1424","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1360","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1570","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"922","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1490","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1065","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1311","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1593","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"849","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1432","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1374","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1389","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1032","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"3796","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1446","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1021","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1036","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1179","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1467","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1021","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1301","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1802","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1189","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1355","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"691","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1398","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1284","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1462","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1707","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"3695","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1048","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1544","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1158","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1294","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1643","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1241","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1693","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1336","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1063","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1264","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1593","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1346","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1640","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1665","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"991","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1147","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1294","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1370","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1069","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1290","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1180","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1180","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1280","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1439","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1159","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1452","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1371","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1065","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1494","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1416","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1423","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"94","4":"1048","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1050","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1319","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"94","4":"1158","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"94","4":"1409","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"94","4":"1133","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1426","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1828","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1161","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"2265","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"2265","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1495","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1080","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1320","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1297","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1541","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1618","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1297","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1644","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1498","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1746","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1511","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1099","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"769","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1546","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1089","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1737","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1085","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1349","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1743","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1342","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1554","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1068","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1328","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1390","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1615","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1314","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1413","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"758","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1285","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1509","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1328","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1298","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1387","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1370","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1413","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1300","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1135","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1389","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1186","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1999","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1503","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1160","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1086","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1380","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1324","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1327","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1165","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1999","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1079","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1641","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1955","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1743","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"439","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1255","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1503","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1355","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1301","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1779","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1592","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1511","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1400","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1362","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1757","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1176","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1387","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1352","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1545","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1424","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1522","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1757","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1537","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1475","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1688","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1446","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1937","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1144","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1475","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1152","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1295","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1546","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1263","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1785","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1506","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1342","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1419","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1615","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1791","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1931","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1108","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1554","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"2392","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1509","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1380","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1911","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"758","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1366","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1825","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1154","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1554","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1416","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1324","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1506","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1511","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1958","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1331","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1089","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"95","4":"1543","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1791","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"0","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1958","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1292","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1734","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"95","4":"1378","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1089","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1188","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"1554","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1358","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1705","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"95","4":"1771","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"95","4":"989","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2769","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"1993","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2888","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"96","4":"2057","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2954","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"96","4":"2164","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2749","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2629","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"3010","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2211","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2413","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2090","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2610","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2987","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2045","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2946","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2090","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2270","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"0","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"96","4":"2769","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"1997","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"0","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"1997","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"5115","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"96","4":"2045","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2954","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"96","4":"2457","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"3334","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2627","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"3044","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2080","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"3119","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"96","4":"3044","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2542","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"96","4":"3453","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2127","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"3559","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2954","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"96","4":"3839","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2954","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"96","4":"2378","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2368","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"96","4":"2857","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2611","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"3364","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"1854","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2010","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2127","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2872","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2654","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2289","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"1799","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"3234","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2783","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"96","4":"4033","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"96","4":"2690","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2153","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"3095","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"3224","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2148","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2842","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2053","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"2706","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2521","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"96","4":"3902","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2658","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"96","4":"2975","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"2029","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2771","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2486","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"2603","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"3596","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"4064","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"2915","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2522","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"3008","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2403","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"3101","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"2587","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2606","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2148","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2429","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2321","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2600","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"2275","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"1588","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"2021","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2784","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2374","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"3502","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"2890","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2374","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2593","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"2346","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2321","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2309","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"3045","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2603","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2276","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2429","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2401","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2327","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2505","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2045","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"3728","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"2327","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2321","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2798","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2798","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2223","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2419","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"3237","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2513","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"3945","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"3164","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"2136","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"3252","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"2327","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2321","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"3128","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"2321","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2183","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2136","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"1969","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2383","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"2719","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2653","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2418","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2913","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"3055","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2213","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2207","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2326","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2774","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2321","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2183","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2453","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2486","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"2570","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"1885","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"1969","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2553","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2806","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"3028","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2542","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"4147","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"2471","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2125","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2210","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2951","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"2379","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2728","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2517","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2361","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2360","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"4267","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"19","3":"97","4":"2818","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2939","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2321","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2122","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2418","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"5694","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2751","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2478","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2205","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"56","2":"18","3":"97","4":"2032","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"19","3":"97","4":"2787","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2032","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2223","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"56","2":"18","3":"97","4":"2032","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"2278","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1275","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"2366","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"2245","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1685","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1336","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"1887","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1398","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1244","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"1630","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1218","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1218","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1233","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"2054","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1715","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1695","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1286","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"1235","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1967","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1893","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1772","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1398","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1612","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"1887","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1615","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1419","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"2216","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"2216","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"1226","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1553","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1671","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"2234","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1536","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1499","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1305","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1451","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"1707","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1744","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1592","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1336","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1563","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1451","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1576","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1198","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1627","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1831","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1466","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1553","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"1337","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1734","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1810","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1398","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1372","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"2204","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"1244","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"2175","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1579","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1452","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"2915","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"1312","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1233","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1579","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1716","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"2088","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"89","4":"1707","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1715","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1387","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1522","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"89","4":"1890","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1537","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1962","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1311","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"89","4":"1762","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"89","4":"1729","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"90","4":"2163","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"90","4":"1710","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"2287","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"1315","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"2194","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1837","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1401","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1886","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"2246","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"1766","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1712","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1395","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1689","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1634","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"1624","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1864","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"2202","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1326","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"2342","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"90","4":"1334","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"2282","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1869","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1500","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"90","4":"1209","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"1223","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"2587","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"1647","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1739","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1877","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"2123","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"1351","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1577","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"90","4":"2202","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1660","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"2449","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1413","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"1550","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1256","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1527","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"1377","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"2132","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"90","4":"1385","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1337","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1634","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"90","4":"1152","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1236","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"90","4":"1315","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"2045","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"2246","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1829","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"90","4":"1654","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"1224","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"2647","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1345","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"1691","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1786","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"2246","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"1647","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"90","4":"2149","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"90","4":"2095","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"2017","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"90","4":"1223","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1343","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"91","4":"3295","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"1388","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1721","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1693","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"91","4":"1566","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1647","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"91","4":"1367","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1369","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1108","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1914","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1650","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1279","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1385","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1549","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"91","4":"1572","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1531","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"2376","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1365","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1670","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"3230","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"91","4":"1299","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"91","4":"2111","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1510","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"2214","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1595","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"1798","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"1353","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1601","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1455","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"2380","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1571","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"2574","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"3602","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"1612","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1755","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"1295","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1746","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"2738","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"91","4":"1455","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"91","4":"1844","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1863","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1740","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1523","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"1426","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"91","4":"1725","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"91","4":"1914","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1517","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1298","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1908","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"1343","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"1759","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"91","4":"3386","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"1738","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"3236","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"91","4":"1605","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1348","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1612","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"91","4":"1548","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"1591","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2146","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2319","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2054","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"1935","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"1569","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"1987","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"2114","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"1872","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2108","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"1557","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"1653","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"1739","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"1759","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"1846","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"1465","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"2188","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"1197","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"1896","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2118","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"2317","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"2030","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"1384","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2750","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"2244","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"2323","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"1399","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2319","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"1314","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"1800","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2014","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"1846","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"1810","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"92","4":"2329","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"1974","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"2259","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"2677","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"92","4":"2147","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"92","4":"1917","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"1895","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"1523","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"92","4":"2141","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"1856","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"1694","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2332","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"2675","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2374","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"1652","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"92","4":"2869","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"1551","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"92","4":"1702","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"2017","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"1632","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"1313","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"92","4":"2086","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"92","4":"2087","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"92","4":"2141","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"93","4":"1608","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"93","4":"1700","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"2380","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"1661","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"2962","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"2199","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"93","4":"1385","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"2331","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"93","4":"1628","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"93","4":"3125","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"1731","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"2494","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"93","4":"2621","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"93","4":"1410","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"93","4":"3526","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"4590","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"93","4":"2185","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"1538","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"1422","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"1411","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"1319","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"93","4":"1809","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"93","4":"2512","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"93","4":"1952","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"1383","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"2354","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"93","4":"1809","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"93","4":"1617","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"1739","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"2098","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"2657","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"2494","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"93","4":"2225","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"2662","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"1420","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"93","4":"2222","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"3589","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"2336","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"2380","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"1750","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"2496","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"93","4":"2244","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"93","4":"2193","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"94","4":"2588","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"2984","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"94","4":"3198","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"94","4":"3664","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"94","4":"2095","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"3421","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"94","4":"1777","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"94","4":"1860","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"2079","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"2999","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"94","4":"3804","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"94","4":"2300","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"94","4":"2319","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"3804","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"94","4":"2411","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"2685","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"94","4":"1535","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"94","4":"2973","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"94","4":"1535","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"94","4":"2979","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"94","4":"4509","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"94","4":"3588","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"94","4":"2095","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"94","4":"3229","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"2582","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"3656","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"94","4":"3066","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"94","4":"2066","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"3982","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"3173","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"2411","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"1535","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"94","4":"1346","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"5385","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"95","4":"2657","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"5107","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"3173","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"3173","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"3169","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"95","4":"2878","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"95","4":"3935","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"3698","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"95","4":"3169","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"95","4":"4911","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"4215","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"2914","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"95","4":"3519","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"95","4":"2560","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"95","4":"2716","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"95","4":"3210","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"3947","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"2714","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"95","4":"3841","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"95","4":"2152","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"95","4":"3684","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"95","4":"3412","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"95","4":"3519","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"95","4":"3282","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"2772","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"95","4":"3480","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"95","4":"3251","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"3073","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"95","4":"2729","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"95","4":"3706","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"95","4":"2915","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"95","4":"3152","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"96","4":"4265","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"96","4":"3059","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"96","4":"3145","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"96","4":"3254","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"2317","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"2900","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"2531","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"2673","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"96","4":"3154","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"2443","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"2638","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"2317","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"96","4":"2940","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"3059","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"96","4":"2370","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"96","4":"2551","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"96","4":"2715","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"96","4":"2552","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"96","4":"2498","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"96","4":"4501","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"96","4":"2508","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"2715","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"96","4":"2551","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"96","4":"3836","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"2263","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"96","4":"2673","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"96","4":"3262","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"96","4":"2113","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"96","4":"2714","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"96","4":"3494","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"96","4":"2715","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"96","4":"2452","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"96","4":"2715","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"97","4":"2926","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"3235","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"2631","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"2165","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"97","4":"3211","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"97","4":"3038","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"3235","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"1710","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"2543","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"97","4":"4384","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"97","4":"2862","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"3917","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"2795","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"1804","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"2522","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"2165","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"97","4":"2108","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"2419","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"3274","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"3010","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"2165","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"97","4":"2631","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"2551","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"2402","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"97","4":"3402","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"97","4":"3395","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"2988","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"2734","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"2165","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"97","4":"2108","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"19","3":"97","4":"3213","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"19","3":"97","4":"2582","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"57","2":"18","3":"97","4":"2161","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"2905","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"57","2":"18","3":"97","4":"2835","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"2935","5":"1","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3727","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"4284","5":"0","6":"NA","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"7141","5":"1","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3542","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3677","5":"0","6":"NA","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3759","5":"1","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"2767","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3990","5":"0","6":"NA","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3109","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"4063","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"89","4":"5201","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"89","4":"3199","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"4099","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3893","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3872","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"4426","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3524","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3885","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"2787","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"89","4":"4412","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"89","4":"3774","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3898","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3295","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"89","4":"3104","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"89","4":"3201","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3662","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"4283","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"4216","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"89","4":"2379","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"89","4":"3737","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"89","4":"2980","5":"0","6":"NA","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"89","4":"2693","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3488","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3437","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3427","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3530","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"89","4":"2838","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"89","4":"2980","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"89","4":"3629","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"4109","5":"0","6":"NA","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3130","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3835","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"89","4":"3617","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"89","4":"3609","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3650","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"2574","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"89","4":"4311","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"89","4":"3214","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"89","4":"3345","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3071","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"89","4":"3175","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"89","4":"3140","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"4208","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"90","4":"4012","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"4737","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"8999","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"90","4":"3782","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"90","4":"3144","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"90","4":"5067","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"90","4":"4655","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"90","4":"4336","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"90","4":"3652","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"90","4":"3413","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"90","4":"5242","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"90","4":"4501","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"90","4":"3061","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"3291","5":"1","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"5784","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"90","4":"3652","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"90","4":"3699","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"5959","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"4234","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"90","4":"3520","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"90","4":"4696","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"90","4":"3303","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"90","4":"7033","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"3186","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"90","4":"5432","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"90","4":"3782","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"5236","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"90","4":"7914","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"4215","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"8341","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"90","4":"3466","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"3746","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"90","4":"3434","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"3724","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"90","4":"5725","5":"1","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"4165","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"90","4":"3782","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"90","4":"4131","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"90","4":"4460","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"90","4":"3385","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"5028","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"3541","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"91","4":"4760","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"5493","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"3492","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"3569","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"6100","5":"0","6":"NA","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"4744","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"91","4":"3923","5":"1","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"4553","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"3571","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"4845","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"6127","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"2949","5":"0","6":"NA","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"4865","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"3431","5":"1","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"3734","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"5066","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"91","4":"6421","5":"1","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"4168","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"5736","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"3611","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"3545","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"3726","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"91","4":"3633","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"2876","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"3290","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"4591","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"91","4":"5101","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"91","4":"3647","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"5261","5":"1","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"5098","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"3507","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"2995","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"2974","5":"1","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"5493","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"3513","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"3974","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"3923","5":"1","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"91","4":"2864","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"91","4":"2920","5":"1","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"3411","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"91","4":"3841","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"91","4":"5404","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"5232","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"3867","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"3910","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"3478","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"3970","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"92","4":"3985","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"3867","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"3605","5":"1","6":"NA","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"3608","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"4003","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"3572","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"4698","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"3574","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"92","4":"3175","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"4405","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"3985","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"3253","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"3948","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"5030","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"92","4":"3305","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"92","4":"4099","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"92","4":"3349","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"92","4":"4061","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"2851","5":"1","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"92","4":"5232","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"3860","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"92","4":"3860","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"92","4":"2628","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"92","4":"6717","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"2981","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"2594","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"92","4":"3751","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"4760","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"92","4":"3340","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"4105","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"3515","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"3367","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"18","3":"92","4":"4047","5":"1","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"5233","5":"1","6":"NA","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"4885","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"92","4":"3528","5":"0","6":"NA","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"3344","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"3366","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"19","3":"92","4":"3206","5":"0","6":"NA","7":"1","8":"0","9":"1","10":"0","11":"0"},{"1":"58","2":"18","3":"92","4":"5225","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1"},{"1":"58","2":"19","3":"93","4":"6310","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"2064","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"4342","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"6686","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"93","4":"3301","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"4552","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"2981","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"3048","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"4552","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"3204","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"5760","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"4479","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"2784","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"3988","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"5104","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"4718","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"4394","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"3301","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"4754","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"6686","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"93","4":"4445","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"4294","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"4281","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"3359","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"4146","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"5450","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"3822","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"4039","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"3143","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"8064","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"3090","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"5450","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"3278","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"4294","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"3626","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"3669","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"3638","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"3775","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"4574","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"4022","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"4753","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"93","4":"3879","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"3501","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"5848","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"4101","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"3257","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"2064","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"2232","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"6056","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"93","4":"4240","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"3157","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"2543","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"1975","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"4199","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"93","4":"3700","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"3517","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"93","4":"4342","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"93","4":"4199","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1390","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"3641","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"4614","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1485","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"4614","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1374","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"5837","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1453","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"1690","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1045","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"2019","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"3814","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"4158","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1439","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"4959","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1351","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"3849","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1320","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1045","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1290","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"3965","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1536","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"94","4":"3654","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"3672","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"1812","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1439","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"7265","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1423","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1428","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"4966","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"5059","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1475","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"94","4":"3001","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1423","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1475","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"3310","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"3411","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"94","4":"1045","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"3223","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"5366","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"94","4":"4438","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"5972","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1485","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1217","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1351","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1423","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1439","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"3814","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"1290","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1320","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"3068","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"4614","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1628","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"94","4":"2982","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"5972","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1548","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"3310","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"819","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"3837","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1466","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1556","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"4752","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"4166","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"1634","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"1428","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"94","4":"4622","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"94","4":"4225","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"94","4":"1351","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"3210","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"94","4":"1756","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"3683","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"3380","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"4514","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"2659","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"4075","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"3187","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"4514","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"3047","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"4692","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"3302","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"3667","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"4777","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"3962","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"5766","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"95","4":"4957","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"2738","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"4317","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"4914","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"5377","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"2525","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"3935","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"5056","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"3302","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"4692","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"95","4":"1408","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"1850","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"4957","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"5183","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"3683","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"5099","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"2738","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"95","4":"4514","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"4060","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"4180","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"5690","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"3192","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"3047","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"95","4":"3840","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"4575","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"95","4":"4792","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"5041","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"4146","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"0","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"4652","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"4514","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"95","4":"4418","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"5169","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"2717","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"4019","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"5981","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"3380","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"95","4":"4803","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"4957","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"4168","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"2650","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"95","4":"3976","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"95","4":"3047","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"96","4":"2955","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"3756","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"3979","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"96","4":"4041","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"3321","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"5302","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"96","4":"3461","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"96","4":"3930","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"4750","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"3645","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"96","4":"2914","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"4357","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"3762","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"4692","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"3939","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"3655","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"96","4":"5366","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"96","4":"3341","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"96","4":"4278","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"3742","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"4567","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"96","4":"3183","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"4591","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"96","4":"2935","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"4041","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"4603","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"4694","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"3905","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"4680","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"96","4":"3299","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"3013","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"5204","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"96","4":"3101","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"4656","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"2787","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"3990","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"6305","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"96","4":"3939","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"3738","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"3101","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"3728","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"2726","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"4970","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"96","4":"3640","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"4294","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"5366","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"96","4":"4551","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"3984","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"3348","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"96","4":"3497","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"4959","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"4265","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"96","4":"3001","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"96","4":"3738","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"96","4":"3321","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"3717","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"97","4":"3415","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"4009","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"5934","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"97","4":"4464","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"4286","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"3474","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"3855","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"3755","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"2929","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"3755","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"5661","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"97","4":"3079","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"3296","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"4286","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"3425","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"3755","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"3717","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"97","4":"4218","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"97","4":"3333","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"3433","5":"0","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"4183","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"97","4":"3755","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"3801","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"3801","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"3755","5":"1","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"5878","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"97","4":"4311","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"97","4":"3828","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"4237","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"3948","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"4168","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"4177","5":"0","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"97","4":"4619","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"4120","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"2776","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"97","4":"5060","5":"1","6":"NA","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"5483","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"97","4":"3801","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"4208","5":"1","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"19","3":"97","4":"4183","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"5483","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"18","3":"97","4":"4215","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"97","4":"5225","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"58","2":"19","3":"97","4":"4009","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"3177","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"4785","5":"1","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0"},{"1":"58","2":"18","3":"97","4":"4940","5":"1","6":"NA","7":"0","8":"1","9":"1","10":"1","11":"1"},{"1":"59","2":"19","3":"89","4":"1515","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1852","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2391","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"2245","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1336","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2832","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1593","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1653","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2046","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1843","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1313","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2610","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1568","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1515","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1788","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1798","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1704","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2593","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1859","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2325","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2634","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1906","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1601","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1665","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2994","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2539","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"2004","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2395","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1702","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2061","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1869","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2240","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1640","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1689","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1830","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1723","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1796","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1716","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1253","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"2329","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1995","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1694","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1847","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1933","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1801","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1730","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1638","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1802","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1969","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1703","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1800","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2198","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2175","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1832","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1833","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1536","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"2008","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1679","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1905","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1833","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1568","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1694","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1905","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1798","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1800","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1666","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2358","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1741","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1614","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1956","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1641","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2119","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1767","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1780","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2008","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1837","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1703","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"2475","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1656","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1773","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1945","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1563","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1732","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1808","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2198","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2181","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1502","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1833","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1890","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1798","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1661","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1751","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1885","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1597","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1756","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"2047","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"NA","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1654","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1325","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1821","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1852","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1719","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1957","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1694","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1314","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1838","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1709","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1931","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1906","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1681","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1752","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1742","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1800","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1568","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1717","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1809","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1772","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1885","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1899","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2353","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1484","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1833","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2190","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1960","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1967","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1832","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1974","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2994","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1719","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1800","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1723","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1593","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1890","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1809","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1800","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1752","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1879","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1693","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1848","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1838","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1328","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1357","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1956","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1889","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1324","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2252","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2100","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1704","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2398","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1773","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1510","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1734","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1917","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"2281","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"3630","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1745","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1967","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2655","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"2113","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2489","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1325","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2164","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1843","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2245","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1865","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"2217","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1808","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2240","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1825","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1549","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1784","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1639","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1732","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2391","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1680","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1523","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1791","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1980","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1773","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1436","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1890","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1568","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1448","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1582","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2370","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"2131","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"2020","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1808","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1852","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"89","4":"1884","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1752","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"1467","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1995","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"89","4":"1740","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1885","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1740","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"89","4":"1812","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"89","4":"2024","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1594","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2411","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2096","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2732","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1586","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2099","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"1946","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1980","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2229","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1527","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1818","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1925","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2096","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1641","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1497","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1851","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"2047","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1754","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1958","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"4048","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1786","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2732","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1947","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2430","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1536","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2171","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"NA","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1588","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1875","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"2328","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1870","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1928","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1990","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2580","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1887","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"2086","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"1833","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"1654","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1960","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2646","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"2218","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2013","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2466","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"2797","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"1514","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2085","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2124","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2047","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1586","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1755","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1687","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1946","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1945","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2684","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"2091","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1786","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1755","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1732","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"2654","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1619","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2069","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1745","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2106","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1958","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2160","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1765","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2050","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2268","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1807","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1835","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2027","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2047","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1461","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1960","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2224","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1561","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1749","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1455","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1775","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1880","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"2580","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1756","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2469","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2326","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2338","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1902","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1731","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1699","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1792","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2152","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1597","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1960","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2208","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1995","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1512","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1471","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2133","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1750","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2011","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1596","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1472","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2160","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"3013","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2131","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2179","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"1690","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2236","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1980","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2062","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1477","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2905","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1926","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2047","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1561","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2304","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2265","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1495","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1660","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1627","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2539","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2030","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1755","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1834","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1926","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2213","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1822","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1931","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1834","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1619","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2177","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2472","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2304","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1975","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1801","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1492","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1881","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"1643","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2259","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2131","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2149","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1328","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1721","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1925","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2626","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1990","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1965","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1714","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2170","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1972","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1603","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2693","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"1789","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2716","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1795","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1567","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1557","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2231","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1792","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2779","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"90","4":"1802","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1783","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"3026","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"1746","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"90","4":"1806","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"2236","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1980","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1921","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1471","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"90","4":"1878","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1906","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"1960","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"90","4":"2084","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1608","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1618","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2409","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1543","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1615","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2453","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2211","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2009","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2610","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"2267","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1511","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1460","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"3206","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"1534","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2214","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"1424","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1998","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2315","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1852","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2165","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"1745","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2173","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2160","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1890","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2126","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2110","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"1936","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2125","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"1504","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2160","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"2029","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1763","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2052","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1938","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1867","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"2309","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1852","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1731","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1683","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"2213","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2228","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2268","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1620","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1488","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1632","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"2180","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2400","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"2232","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"2051","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"3321","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2237","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1926","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1685","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2210","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2739","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"2262","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2154","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1337","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2182","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2432","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1806","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2906","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2071","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1518","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2219","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2354","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2109","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"1824","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2798","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2176","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1713","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2722","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2428","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2146","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"2778","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"1580","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2647","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1826","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"2078","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2228","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"3078","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1506","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1974","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1615","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1532","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1525","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1752","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2693","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"3776","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"3321","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1705","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1798","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"3159","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1909","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1969","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"6578","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1848","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2767","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1775","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"1497","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1938","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1748","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1805","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1713","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2158","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"3635","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2039","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"2219","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1938","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2037","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2062","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2021","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"3078","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1880","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"1626","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2090","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1713","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2018","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"3932","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"1974","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2191","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"1731","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2522","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"1991","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2531","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1703","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1663","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"1518","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1770","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2015","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1683","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2282","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2066","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2037","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2212","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"2998","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2771","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2204","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"1840","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1482","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1882","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2319","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"1916","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"5728","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1596","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2756","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1711","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2433","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2179","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1745","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"1705","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"1950","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2231","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1752","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2000","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2286","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"1796","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1703","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1561","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1796","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2087","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1977","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1902","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2571","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"91","4":"2647","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2821","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"91","4":"1938","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"2409","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"91","4":"2349","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"91","4":"1620","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2412","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2479","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2098","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2300","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2427","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2508","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2173","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2061","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1605","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2593","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2087","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2119","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2799","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2794","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2594","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"1940","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1489","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2399","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2409","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2165","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2494","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2247","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2028","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2337","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2461","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2000","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2163","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2626","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2593","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2282","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2055","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"1696","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"3155","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2222","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"6405","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1924","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"1874","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2022","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1546","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"1840","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2052","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2181","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2481","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"1994","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2699","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2772","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1874","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"NA","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"1983","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2210","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1270","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2000","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"4498","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2553","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2035","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2289","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1949","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2313","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2001","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1935","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2241","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2089","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2040","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2414","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2629","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2517","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"1233","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1673","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"1792","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2595","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2429","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2226","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2457","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2483","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"1719","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2054","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"4198","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2469","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1657","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"1578","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2081","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2409","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2472","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2027","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2768","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2313","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2233","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2146","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2337","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2783","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2076","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2003","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2151","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2536","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1907","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"1512","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2581","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2586","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2644","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2705","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2096","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2988","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2756","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2396","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2681","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2554","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2396","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2722","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2439","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"92","4":"2162","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"1874","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2410","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2256","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2014","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2051","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2757","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2013","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"92","4":"2133","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"92","4":"2303","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"92","4":"2794","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"2378","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2149","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"3562","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"1476","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2133","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"2089","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1822","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2180","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2113","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2147","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1224","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"3338","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2490","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2126","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"3308","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2172","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1923","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2881","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"3388","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2887","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2067","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1790","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2391","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"3129","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1985","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2984","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2720","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2408","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2259","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2268","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"2304","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"3071","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"1540","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1962","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2323","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"1758","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2263","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2495","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2212","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2190","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1891","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2977","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2290","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1983","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1524","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"3226","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1524","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2232","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2212","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2263","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2197","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1709","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2438","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1237","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"2446","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2360","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"2846","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"4446","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2173","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2490","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"2146","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"2247","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2396","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2186","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"1884","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1587","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2130","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2172","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2287","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1809","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2917","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"3341","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2060","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1563","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1524","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2863","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2279","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"3150","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2056","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"3174","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"2173","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2006","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"2527","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1839","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2542","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"1805","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1919","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2031","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2090","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2190","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2790","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1196","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2695","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2067","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1224","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2579","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"1843","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1840","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"3103","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2010","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2113","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2097","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1600","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"3215","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2401","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"5347","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2414","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2426","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2943","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2091","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1227","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"93","4":"2470","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"93","4":"2142","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"3731","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"1799","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1822","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2087","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2580","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1758","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2121","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1494","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1504","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"1885","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"93","4":"2140","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2018","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"93","4":"2837","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2971","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"2370","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"1694","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3195","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"2535","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"4916","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3009","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2178","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2478","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"6621","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2159","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2368","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"4095","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2632","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2662","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"1894","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2920","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"2304","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"1986","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3712","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"1727","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2650","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"1878","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3346","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2658","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2484","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2557","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"3661","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2350","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"1603","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2378","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2951","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"3086","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"3181","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2401","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2812","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"1822","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2557","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"2045","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3467","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"5015","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2584","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2945","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"1931","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2749","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"1686","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"3135","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3164","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"1838","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"2178","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3661","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2326","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2790","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2664","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2931","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2389","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"3267","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"2690","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2110","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2960","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2154","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2045","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2274","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2240","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3559","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2077","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"3794","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"2924","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2550","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"3539","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"3460","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"2542","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2277","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2165","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2722","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3627","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"2151","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2091","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"5314","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2695","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"1884","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2017","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"1727","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2326","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2271","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3396","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"2584","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2878","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2577","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2110","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2367","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2003","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"3483","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"3009","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2632","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3164","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"2151","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2110","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2430","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"3794","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"2204","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"1725","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"1931","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2940","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"1802","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"3204","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2159","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2356","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2729","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2626","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"3112","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2527","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2401","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"1117","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2367","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2278","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2696","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"3311","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2557","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"94","4":"4388","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"3004","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2141","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2755","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2904","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"1802","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"3112","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2712","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"2304","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"1694","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2654","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"1879","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"94","4":"2201","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2258","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"1936","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"2426","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"94","4":"1953","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"94","4":"2469","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3491","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3209","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"3055","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"4694","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"95","4":"2756","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2872","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3043","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3858","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2384","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"4675","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"95","4":"3125","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3292","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2101","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"903","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3331","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3439","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"2851","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3044","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"95","4":"3143","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3289","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"3893","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2305","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"3371","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2307","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2538","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"1491","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3234","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2772","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2884","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3618","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"3773","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2390","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2696","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"95","4":"2801","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2668","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3221","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"1685","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"4066","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"95","4":"5240","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3118","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"1621","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"4694","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"95","4":"3414","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2917","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2671","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"95","4":"2493","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3968","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3893","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2279","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"1544","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2805","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3959","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"1709","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2837","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3575","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"3451","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3844","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3598","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3553","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2711","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"3275","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"4029","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"95","4":"3380","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"4582","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"3759","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3406","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3536","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3959","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3083","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3398","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"4170","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"4297","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2571","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3092","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3237","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"3018","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2214","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2433","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3044","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2516","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2970","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3027","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"5948","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3811","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2360","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2415","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"95","4":"2513","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3117","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"3759","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3179","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2105","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2485","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"2961","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3072","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2779","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3233","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3364","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2430","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"95","4":"2490","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"1235","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"1902","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2381","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2734","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"2722","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"95","4":"3970","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3070","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3598","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"95","4":"3237","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"2191","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3241","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"3120","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2547","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2275","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2626","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2916","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2965","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2599","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3517","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2282","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2435","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2445","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2833","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"96","4":"2939","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"4032","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"96","4":"2364","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2626","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"4956","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"3120","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2253","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3120","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2933","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2648","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2388","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3216","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"2777","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2499","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"2396","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"1868","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2499","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"2275","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2626","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3610","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3354","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2607","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3597","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3108","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"96","4":"2626","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2546","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2806","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2420","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2546","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3108","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"2322","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3717","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2648","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3003","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2773","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3105","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3085","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2596","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"3046","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2296","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"4956","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"2562","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3492","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2664","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2799","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"2302","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3379","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3071","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2414","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3356","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3124","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2349","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2376","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2984","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2568","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3694","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3476","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3851","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"96","4":"3669","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2759","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2191","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2457","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2547","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3795","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2910","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2666","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3261","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3491","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2523","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"2979","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"96","4":"2799","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"3476","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3753","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"4867","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3966","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2904","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2691","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2921","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2321","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"4021","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2648","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2585","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3349","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"2568","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2640","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3122","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2964","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3126","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2664","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2322","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2992","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3300","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2910","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2690","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3330","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"4326","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"96","4":"2991","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2321","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"96","4":"3178","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"2611","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"2551","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"4528","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"3123","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"96","4":"2648","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"3491","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"96","4":"4326","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"96","4":"2447","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"96","4":"3122","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2776","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2391","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2448","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2495","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2503","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2720","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3894","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2277","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2882","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"97","4":"4102","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2373","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2497","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2526","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2279","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2873","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3216","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2882","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"3825","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2533","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2483","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2995","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2373","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"4149","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2974","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2710","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"3148","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2741","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2776","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3430","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2871","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2813","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2655","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3388","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2608","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3461","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3080","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3239","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2978","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2625","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2414","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2782","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2500","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2986","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2785","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2414","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2741","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2642","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2322","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2440","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2550","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2602","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2734","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2845","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2974","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"97","4":"2557","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3105","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2655","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2890","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2841","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2274","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3564","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3742","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3438","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2640","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2500","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2899","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2655","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3108","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2492","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2639","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2783","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2605","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3564","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2607","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2606","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3688","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2270","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3642","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3021","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3068","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2783","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2187","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2988","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2130","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"97","4":"3048","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2786","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"4291","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"1730","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3019","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2448","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3571","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3048","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2893","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2655","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3592","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2774","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3798","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2988","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2474","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2484","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2792","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"4102","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2639","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2658","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"97","4":"2867","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2662","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2642","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2187","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2785","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2497","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"3173","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3053","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2497","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3463","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3603","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"4268","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"19","3":"97","4":"2996","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2710","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"59","2":"18","3":"97","4":"2841","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3097","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"3983","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2373","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2569","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2373","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"19","3":"97","4":"2925","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2448","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"59","2":"18","3":"97","4":"2450","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2492","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"NA","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2358","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"89","4":"4608","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2270","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"89","4":"2350","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2436","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2506","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2351","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2260","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2729","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"3714","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"3976","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2255","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2824","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2758","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2913","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2630","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2270","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"89","4":"2448","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2346","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2426","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2256","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"89","4":"2431","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2932","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2677","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2972","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"89","4":"2411","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2635","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2561","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"89","4":"2845","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2677","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"3992","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2845","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2999","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2814","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2651","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2436","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2751","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2406","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2963","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"3043","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2885","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"89","4":"2752","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2902","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"3196","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"NA","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"4618","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2614","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"3885","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"89","4":"2729","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"3191","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2406","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"3008","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2436","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"89","4":"2503","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"89","4":"3218","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"89","4":"2656","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2620","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2747","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"2480","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"1805","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"90","4":"2730","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"3897","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"90","4":"4114","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"90","4":"2604","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"90","4":"3314","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2992","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"3783","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2416","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2284","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"3097","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2416","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"2698","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2549","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"2730","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2846","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"90","4":"3348","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2646","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2720","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"90","4":"2512","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2850","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"3348","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2628","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"3306","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2416","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2860","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"4368","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"90","4":"3632","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"3816","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"2224","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2373","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2262","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"2961","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2992","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2992","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"2239","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"3278","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"4404","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"90","4":"2331","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2416","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"2437","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"3216","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"3075","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"2758","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"90","4":"2560","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"2774","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"90","4":"3305","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"90","4":"2395","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"91","4":"2753","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2553","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"3116","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2540","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2197","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2292","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"91","4":"2749","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2278","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"3411","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"91","4":"2708","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"91","4":"2507","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"3522","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2247","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"91","4":"2693","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2720","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2361","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2417","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2606","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2726","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2532","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"3027","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2462","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2606","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"3120","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2636","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2014","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"91","4":"3481","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"91","4":"2853","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2599","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2746","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2285","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2735","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"3027","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2144","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"3067","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2939","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2708","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"91","4":"2304","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2536","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2292","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"91","4":"3217","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2053","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2281","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2431","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2576","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"91","4":"2380","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"3239","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"2330","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"91","4":"2802","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2304","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"91","4":"NA","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2330","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"91","4":"2438","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"91","4":"2507","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"91","4":"2705","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"92","4":"3395","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"92","4":"2463","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"92","4":"2535","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"2305","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"92","4":"4949","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2829","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2514","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2346","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2807","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2825","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"3218","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"2948","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2819","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2928","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"3115","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2240","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"2951","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"3070","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"2566","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"92","4":"2724","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"3014","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2677","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"92","4":"2173","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"3395","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"92","4":"2402","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"2967","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2555","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"3280","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"3027","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"4054","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"92","4":"3055","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2728","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"1892","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"92","4":"2775","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2924","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2586","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"3405","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"92","4":"2106","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"92","4":"2539","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"3055","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2682","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"2274","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"3134","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2422","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2535","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"3025","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"2918","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"92","4":"2605","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"92","4":"1892","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"92","4":"2514","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2965","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2170","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2967","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3286","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2319","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"93","4":"3392","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"3274","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"93","4":"3328","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3002","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2630","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"2392","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"3234","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"2597","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3040","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3096","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3220","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3040","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"2837","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2373","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2315","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"4181","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"2887","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3716","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2237","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"93","4":"2711","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"2625","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3652","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"2792","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2791","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"2826","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"93","4":"3359","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"93","4":"3163","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"93","4":"3248","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"2716","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3147","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"3312","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2949","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2170","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"3360","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2400","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3785","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"93","4":"3164","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"3428","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"93","4":"3413","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"93","4":"2711","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2926","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2954","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"2692","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"93","4":"3428","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"93","4":"3652","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"3899","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"3874","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"4338","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"94","4":"3609","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"2396","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"0","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"3451","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"4092","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"0","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"3380","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"3514","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"3688","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"4449","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"4464","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"4678","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"3050","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"94","4":"2717","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"3883","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"3859","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"4678","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"4718","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"94","4":"3424","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"3682","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"2795","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"3473","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"2505","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"3505","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"4407","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"3567","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"94","4":"3615","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"3559","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"94","4":"3567","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"94","4":"4209","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"95","4":"2985","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"95","4":"4020","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"3711","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"5679","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"6365","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"95","4":"3810","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"95","4":"3302","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"95","4":"3485","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"3679","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"95","4":"4235","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"3483","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"95","4":"5363","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"95","4":"3725","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"3233","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"95","4":"3312","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"95","4":"3116","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"4539","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"4971","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"5024","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"95","4":"3964","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"95","4":"3160","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"6186","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"95","4":"3377","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"95","4":"5313","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"95","4":"3622","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"95","4":"3125","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"95","4":"3475","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"95","4":"4068","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"95","4":"5363","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"95","4":"3485","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"2891","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"2415","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"2810","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3171","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"3311","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"2354","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3273","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"4430","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"5681","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"96","4":"3407","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"5627","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"96","4":"3941","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3106","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3260","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"3352","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"4938","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"5128","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"2447","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3246","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3173","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"3685","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"96","4":"4606","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"4388","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3277","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3562","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3260","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"4564","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"18","3":"96","4":"3065","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"96","4":"3844","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"3517","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"6065","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"96","4":"3704","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"96","4":"3356","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3344","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"2932","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3156","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"3383","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3075","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"96","4":"4521","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3306","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"96","4":"3718","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"97","4":"3134","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"2736","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"4066","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"3479","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"97","4":"3047","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"3695","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"97","4":"3047","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"3054","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"4882","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"97","4":"3726","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"3221","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"3873","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"2968","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"2894","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"4051","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"3967","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"3195","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"3963","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"3067","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"3671","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"2833","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"4053","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"3749","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"3160","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"3558","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"4118","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"4773","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"3108","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"3247","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"3175","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"5953","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"62","2":"19","3":"97","4":"3333","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"19","3":"97","4":"4193","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"5076","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"62","2":"18","3":"97","4":"2710","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2165","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2547","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2417","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2074","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2124","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2296","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2017","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2074","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2584","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"1929","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"89","4":"2738","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2738","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2785","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"89","4":"2786","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"89","4":"2026","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2120","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2131","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"89","4":"1642","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"89","4":"2007","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"89","4":"2023","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2583","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2021","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2490","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2555","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2567","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2031","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2591","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"1785","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2207","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2118","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2074","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"1870","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"89","4":"3172","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2290","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2132","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"89","4":"1827","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2045","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2251","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2267","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"1911","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"89","4":"2496","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2165","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2057","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2315","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2828","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"1896","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"4003","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2709","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"89","4":"2102","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2597","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2715","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"1998","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2133","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2350","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"89","4":"2045","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"89","4":"2074","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"89","4":"2155","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"2178","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2311","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"2591","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2331","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"2203","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2972","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"90","4":"2137","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"1804","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2678","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"1495","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"2121","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"1435","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"2237","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"2178","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"2042","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"90","4":"1120","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"90","4":"2104","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"3222","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2249","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"1999","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"90","4":"1984","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"90","4":"2271","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"2639","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2249","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2418","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2311","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"4772","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"4482","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"2142","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"90","4":"2826","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"1865","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2450","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"2738","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"90","4":"3699","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"1817","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"90","4":"1903","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"1847","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2443","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2050","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2592","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"90","4":"2760","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2693","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2418","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"1984","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"90","4":"2303","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"1847","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"1839","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"90","4":"2622","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"90","4":"2565","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"91","4":"2396","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"1703","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2067","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"1369","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2317","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"91","4":"1705","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"2189","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2103","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"91","4":"2271","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"2124","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"91","4":"1891","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"2211","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2074","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1462","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1505","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1734","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"1319","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2464","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"91","4":"2145","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"91","4":"2216","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"91","4":"4066","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2115","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"1925","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"2250","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"91","4":"2813","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2074","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"2228","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"91","4":"2319","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"2332","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"3309","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"91","4":"2255","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"91","4":"2288","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1885","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1567","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"2281","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1992","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2297","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"2468","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"91","4":"2416","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1581","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"1935","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"1358","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"1744","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"91","4":"1627","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"1802","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1660","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"91","4":"2094","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2145","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"91","4":"2423","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"2085","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"91","4":"2638","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"1675","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2396","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1538","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2086","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"91","4":"2124","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"91","4":"2357","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"91","4":"2454","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"91","4":"1881","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1831","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"91","4":"1581","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"91","4":"2456","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"1429","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"1721","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"2752","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"2272","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"1215","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"1880","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"1304","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"1880","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"1836","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"1242","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"1479","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"2439","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"3051","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"2543","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"1658","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"2671","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"2505","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"1559","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"2756","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"1869","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"2637","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"2525","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"3010","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"1678","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"3088","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"2991","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"2036","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"1617","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"1957","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"1936","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"1763","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"1783","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"1652","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"1869","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"2400","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"1862","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"1678","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"2262","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"1420","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"2373","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"1575","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"1909","5":"1","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"2031","5":"1","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"2650","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"92","4":"2359","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"1420","5":"0","6":"NA","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"1091","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"1721","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"1862","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"2257","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"92","4":"2368","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"1621","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"92","4":"2884","5":"1","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"1658","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"92","4":"1843","5":"0","6":"NA","7":"0","8":"0","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1303","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1940","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"93","4":"1927","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"2590","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1899","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"2409","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1710","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"2042","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"3120","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1981","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"2112","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"3851","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"93","4":"2425","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"93","4":"1627","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"93","4":"3344","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"93","4":"1645","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"93","4":"2408","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"2226","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"2967","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"93","4":"3075","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1879","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"93","4":"2463","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"2802","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"1861","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"1560","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"1412","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1609","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1912","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"2561","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"2591","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"2902","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"2402","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"2635","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1984","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"2226","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"1196","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"2933","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"1517","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1415","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"1830","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"1900","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"1861","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"2425","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"1842","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1565","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"2402","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"2164","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"2073","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"93","4":"2397","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1295","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"2456","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"2352","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"1323","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"2073","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"2223","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"1952","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"93","4":"2554","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"1936","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"1761","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"93","4":"2629","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"93","4":"2559","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"1929","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2486","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2610","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"94","4":"2324","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"94","4":"3028","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"3827","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"94","4":"2505","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"94","4":"3028","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2133","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2177","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"3298","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"3042","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"94","4":"2423","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"3785","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2852","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"94","4":"1884","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"94","4":"2080","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"94","4":"2100","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"94","4":"3158","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"94","4":"3652","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"94","4":"3943","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"94","4":"665","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2486","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2965","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"94","4":"2181","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2533","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2440","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"94","4":"2164","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2438","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"94","4":"2993","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"94","4":"3153","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"94","4":"1901","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"94","4":"2904","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"2369","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"94","4":"2212","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"94","4":"2177","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"94","4":"3652","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"95","4":"2564","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"3090","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"2335","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"95","4":"2431","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"2322","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"3478","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"2490","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"95","4":"3169","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"2711","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"3407","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"95","4":"2528","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"95","4":"2455","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"4384","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"3300","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"95","4":"2931","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"2441","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"3590","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"2757","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"2386","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"95","4":"3604","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"2281","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"95","4":"3569","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"2711","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"3681","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"2362","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"95","4":"4201","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"2401","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"2645","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"3046","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"95","4":"2353","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"95","4":"2669","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"95","4":"4744","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"95","4":"2931","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"95","4":"3609","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"4301","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"95","4":"3030","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"4118","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"95","4":"3180","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"95","4":"3169","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"2227","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"95","4":"2333","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"2931","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"95","4":"3941","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"2088","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2854","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"3165","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2903","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"2722","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2825","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2828","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2837","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2271","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2903","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"3956","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"2353","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"2454","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"2981","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"2279","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"2324","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"3653","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2407","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"2248","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"3036","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2500","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2259","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2645","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2444","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"3770","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"3036","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2635","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"3110","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2636","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2622","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"2196","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"1703","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2234","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"2241","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"4064","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"2259","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2566","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2183","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2584","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"2740","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2854","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"2394","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2232","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"1962","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2273","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2618","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2933","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"3641","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2638","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"3370","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2622","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"2935","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"2740","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2497","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"1703","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"96","4":"2740","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"96","4":"2779","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"96","4":"3782","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"96","4":"1735","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"2599","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"3611","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"2863","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3219","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"2678","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"2628","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"2599","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"1886","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"2756","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3699","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"97","4":"1618","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"1886","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3598","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"1759","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"2973","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"4157","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"97","4":"2609","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"2685","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"3480","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"2571","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3905","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"97","4":"3027","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"97","4":"4063","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"97","4":"1618","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3138","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3573","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"2829","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"1636","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"2754","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"2785","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"97","4":"3300","5":"1","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"2050","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"2609","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"2508","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"2762","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"1783","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"3026","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3789","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"2850","5":"1","6":"0","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"97","4":"2904","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"1999","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"3803","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"5828","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"1783","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"1722","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"97","4":"2794","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"3573","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3620","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"97","4":"3397","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3097","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"97","4":"2583","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"1821","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"97","4":"1871","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"97","4":"5586","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"19","3":"97","4":"2628","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3724","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"97","4":"1970","5":"1","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"18","3":"97","4":"3241","5":"1","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"97","4":"3273","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"97","4":"3296","5":"0","6":"NA","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"97","4":"3026","5":"0","6":"NA","7":"1","8":"1","9":"0","10":"0","11":"0"},{"1":"63","2":"18","3":"97","4":"3002","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1"},{"1":"63","2":"19","3":"97","4":"2621","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] --- # Example: Data .pull-left[ <img src="4.2-slides_files/figure-html/unnamed-chunk-25-1.png" width="504" /> ] .pull-right[ .center[ ![](../images/dynarski_hope.png) ] ] .source[Dynarski, Susan, 1999, “Hope for Whom? Financial Aid for the Middle Class and its Impact on College Attendance,” *National Tax Journal* 53(3): 629-661] --- # Example: Regression .smallest[ ```r DND_reg <- lm(InCollege ~ Georgia + After + Georgia*After, data = hope) DND_reg %>% tidy() ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["term"],"name":[1],"type":["chr"],"align":["left"]},{"label":["estimate"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["std.error"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["statistic"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["p.value"],"name":[5],"type":["dbl"],"align":["right"]}],"data":[{"1":"(Intercept)","2":"0.405782652","3":"0.01092390","4":"37.1463182","5":"4.221545e-262"},{"1":"Georgia","2":"-0.105236204","3":"0.03778114","4":"-2.7854165","5":"5.369384e-03"},{"1":"After","2":"-0.004459609","3":"0.01585224","4":"-0.2813235","5":"7.784758e-01"},{"1":"Georgia:After","2":"0.089329828","3":"0.04889329","4":"1.8270364","5":"6.776378e-02"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] -- .smallest[ `$$\widehat{\text{Enrolled}_{it}}=0.406-0.105 \, \text{Georgia}_{i}-0.004 \, \text{After}_{t}+0.089 \, (\text{Georgia}_{i} \times \text{After}_{t})$$` ] --- # Example: Interpretting the Regression `$$\widehat{\text{Enrolled}_{it}}=0.406-0.105 \, \text{Georgia}_{i}-0.004 \, \text{After}_{t}+0.089 \, (\text{Georgia}_{i} \times \text{After}_{t})$$` -- - `\(\beta_0\)`: -- A **non-Georgian** **before** 1992 was 40.6% likely to be a college student -- - `\(\beta_1\)`: -- **Georgians** **before** 1992 were 10.5% less likely to be college students than neighboring states -- - `\(\beta_2\)`: -- **After** 1992, **non-Georgians** are 0.4% less likely to be college students -- - `\(\beta_3\)`: -- **After** 1992, **Georgians** are 8.9% more likely to enroll in colleges than neighboring states -- - .hi-purple[Treatment effect: HOPE increased enrollment likelihood by 8.9%] --- # Example: Comparing Group Means `$$\widehat{\text{Enrolled}_{it}}=0.406-0.105 \, \text{Georgia}_{i}-0.004 \, \text{After}_{t}+0.089 \, (\text{Georgia}_{i} \times \text{After}_{t})$$` - A group mean for a dummy `\(Y\)` is `\(E[Y=1]\)`, i.e. the probability a student is enrolled: - **Non-Georgian enrollment probability pre-1992**: -- `\(\beta_0=0.406\)` -- - **Georgian enrollment probability pre-1992**: -- `\(\beta_0+\beta_1=0.406-0.105=0.301\)` -- - **Non-Georgian enrollment probability post-1992**: -- `\(\beta_0+\beta_2=0.406-0.004=0.402\)` -- - **Georgian enrollment probability post-1992**: -- `\(\beta_0+\beta_1+\beta_2+\beta_3=0.406-0.105-0.004+0.089=0.386\)` --- # Example: Comparing Group Means in R .pull-left[ ```r # group mean for non-Georgian before 1992 hope %>% filter(Georgia == 0, After == 0) %>% summarize(prob = mean(InCollege)) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["prob"],"name":[1],"type":["dbl"],"align":["right"]}],"data":[{"1":"0.4057827"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] -- .pull-right[ ```r # group mean for non-Georgian AFTER 1992 hope %>% filter(Georgia == 0, After == 1) %>% summarize(prob = mean(InCollege)) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["prob"],"name":[1],"type":["dbl"],"align":["right"]}],"data":[{"1":"0.401323"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] --- # Example: Comparing Group Means in R II .pull-left[ ```r # group mean for Georgian before 1992 hope %>% filter(Georgia == 1, After == 0) %>% summarize(prob = mean(InCollege)) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["prob"],"name":[1],"type":["dbl"],"align":["right"]}],"data":[{"1":"0.3005464"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] -- .pull-right[ ```r # group mean for Georgian AFTER 1992 hope %>% filter(Georgia == 1, After == 1) %>% summarize(prob = mean(InCollege)) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["prob"],"name":[1],"type":["dbl"],"align":["right"]}],"data":[{"1":"0.3854167"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] --- # Example: Diff-in-Diff Summary `$$\widehat{\text{Enrolled}_{it}}=0.406-0.105 \, \text{Georgia}_{i}-0.004 \, \text{After}_{t}+0.089 \, (\text{Georgia}_{i} \times \text{After}_{t})$$` | | Neighbors | Georgia | **Group Diff** `\((\Delta Y_i)\)` | |----|--------:|----------:|--------------------------:| | Before | `\(0.406\)` | `\(0.301\)` | `\(-0.105\)` | | After | `\(0.402\)` | `\(0.386\)` | `\(0.016\)` | | **Time Diff** `\((\Delta Y_t)\)` | `\(-0.004\)` | `\(0.085\)` | **Diff-in-diff**: `\(0.089\)` | -- `$$\begin{align*} \Delta_i \Delta_t Enrolled &= (\text{GA}_{after}-\text{GA}_{before})-(\text{neighbors}_{after}-\text{neighbors}_{before})\\ &=(0.386-0.301)-(0.402-0.406)\\ &=(0.085)-(-0.004)\\ &=0.089\\ \end{align*}$$` --- # Diff-in-Diff Summary & Data .center[ ![](../images/dynarski_hope_1.png) ] .source[Dynarski, Susan, 1999, “Hope for Whom? Financial Aid for the Middle Class and its Impact on College Attendance,” *National Tax Journal* 53(3): 629-661] --- # Example: Diff-in-Diff Graph <img src="4.2-slides_files/figure-html/unnamed-chunk-31-1.png" width="1152" style="display: block; margin: auto;" /> --- # Example: Diff-in-Diff Graph (& Counterfactual) <img src="4.2-slides_files/figure-html/unnamed-chunk-32-1.png" width="1152" style="display: block; margin: auto;" /> --- class: inverse, center, middle # Generalizing DND Models --- # Generalizing DND Models - DND can be **generalized** with a **two-way fixed effects** model: `$$\widehat{Y_{it}}=\beta_1 (\text{Treated}_i \times \text{After}_{t})+\alpha_i+\theta_t++\nu_{it}$$` - `\(\alpha_i\)`: **group fixed effects** (treatments/control groups) - `\(\theta_t\)`: **time fixed effects** (pre/post treatment) - `\(\beta_1\)`: diff-in-diff (interaction effect, `\(\beta_3\)` from before) -- - Flexibility: *many* periods (not just before/after), *many* different treatment(s)/groups, and treatment(s) can occur at different times to different units (so long as some do not get treated) -- - Can also add control variables that vary within units and over time `$$\widehat{Y_{it}}=\beta_1 \, (\text{Treated}_i \times \text{After}_{t})+\beta_2 X_{it}+\cdots + \alpha_i+\theta_t+\nu_{it}$$` --- # Our Example, Generalized I `$$\widehat{\text{Enrolled}_{it}} = \beta_1 \, (\text{Georgia}_{i} \times \text{After}_{t}) + \alpha_i+\theta_t+$$` - `StateCode` is a variable for the State `\(\implies\)` create State fixed effect - `Year` is a variable for the year `\(\implies\)` create year fixed effect --- # Our Example, Generalized II .pull-left[ .smallest[ - Using LSDV method... ] .tiny[ .code70[ ```r DND_fe <- lm(InCollege ~ Georgia*After + factor(StateCode) + factor(Year), data = hope) DND_fe %>% tidy() ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["term"],"name":[1],"type":["chr"],"align":["left"]},{"label":["estimate"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["std.error"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["statistic"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["p.value"],"name":[5],"type":["dbl"],"align":["right"]}],"data":[{"1":"(Intercept)","2":"0.418057478","3":"0.02261133","4":"18.4888517","5":"1.734550e-73"},{"1":"Georgia","2":"-0.141501255","3":"0.03936119","4":"-3.5949436","5":"3.281224e-04"},{"1":"After","2":"0.075340594","3":"0.03128021","4":"2.4085706","5":"1.605717e-02"},{"1":"factor(StateCode)57","2":"-0.014181112","3":"0.02739708","4":"-0.5176140","5":"6.047544e-01"},{"1":"factor(StateCode)58","2":"NA","3":"NA","4":"NA","5":"NA"},{"1":"factor(StateCode)59","2":"-0.062378540","3":"0.01954266","4":"-3.1919172","5":"1.423556e-03"},{"1":"factor(StateCode)62","2":"-0.132650271","3":"0.02806143","4":"-4.7271383","5":"2.350298e-06"},{"1":"factor(StateCode)63","2":"-0.005103868","3":"0.02627780","4":"-0.1942274","5":"8.460071e-01"},{"1":"factor(Year)90","2":"0.046608845","3":"0.02833625","4":"1.6448486","5":"1.000745e-01"},{"1":"factor(Year)91","2":"0.032275789","3":"0.02856877","4":"1.1297577","5":"2.586417e-01"},{"1":"factor(Year)92","2":"0.023535865","3":"0.02984597","4":"0.7885776","5":"4.304026e-01"},{"1":"factor(Year)93","2":"-0.045179582","3":"0.03298962","4":"-1.3695089","5":"1.709122e-01"},{"1":"factor(Year)94","2":"-0.060835294","3":"0.03331765","4":"-1.8259178","5":"6.793234e-02"},{"1":"factor(Year)95","2":"-0.078603997","3":"0.03437010","4":"-2.2869877","5":"2.224518e-02"},{"1":"factor(Year)96","2":"-0.096654289","3":"0.03479916","4":"-2.7774893","5":"5.501944e-03"},{"1":"factor(Year)97","2":"NA","3":"NA","4":"NA","5":"NA"},{"1":"Georgia:After","2":"0.091420197","3":"0.04876092","4":"1.8748663","5":"6.087923e-02"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] ] -- .pull-right[ .smallest[ - By de-meaning data, using `fixest` ] .tiny[ .code70[ ```r library(fixest) DND_fe_2 <- feols(InCollege ~ Georgia*After | factor(StateCode) + factor(Year), data = hope) DND_fe_2 %>% tidy() ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["term"],"name":[1],"type":["chr"],"align":["left"]},{"label":["estimate"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["std.error"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["statistic"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["p.value"],"name":[5],"type":["dbl"],"align":["right"]}],"data":[{"1":"Georgia:After","2":"0.0914202","3":"0.005643298","4":"16.19978","5":"1.633762e-05"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] ] -- .smallest[ `$$\widehat{\text{InCollege}_{it}}=0.091 \, (\text{Georgia}_i \times \text{After}_{it})+\alpha_i+\theta_t$$` ] --- # Our Example, Generalized, with Controls II .pull-left[ .smallest[ - Using LSDV method... ] .tiny[ .code70[ ```r DND_fe_controls <- lm(InCollege ~ Georgia*After + factor(StateCode) + factor(Year) + Black + LowIncome, data = hope) DND_fe_controls %>% tidy() ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["term"],"name":[1],"type":["chr"],"align":["left"]},{"label":["estimate"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["std.error"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["statistic"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["p.value"],"name":[5],"type":["dbl"],"align":["right"]}],"data":[{"1":"(Intercept)","2":"0.735574222","3":"0.02990710","4":"24.5953037","5":"1.155308e-121"},{"1":"Georgia","2":"-0.108940276","3":"0.04765262","4":"-2.2861342","5":"2.231699e-02"},{"1":"After","2":"-0.005753553","3":"0.03737027","4":"-0.1539607","5":"8.776512e-01"},{"1":"factor(StateCode)57","2":"-0.043406073","3":"0.03047696","4":"-1.4242257","5":"1.544869e-01"},{"1":"factor(StateCode)58","2":"NA","3":"NA","4":"NA","5":"NA"},{"1":"factor(StateCode)59","2":"-0.053175645","3":"0.02306160","4":"-2.3058092","5":"2.119033e-02"},{"1":"factor(StateCode)62","2":"-0.116104615","3":"0.03283310","4":"-3.5362060","5":"4.121675e-04"},{"1":"factor(StateCode)63","2":"0.007389866","3":"0.03056444","4":"0.2417799","5":"8.089675e-01"},{"1":"factor(Year)90","2":"0.039364315","3":"0.03326291","4":"1.1834297","5":"2.367342e-01"},{"1":"factor(Year)91","2":"0.029227969","3":"0.03347850","4":"0.8730370","5":"3.827140e-01"},{"1":"factor(Year)92","2":"0.051192688","3":"0.03475325","4":"1.4730333","5":"1.408487e-01"},{"1":"factor(Year)93","2":"0.032367485","3":"0.03878507","4":"0.8345346","5":"4.040474e-01"},{"1":"factor(Year)94","2":"-0.019263063","3":"0.03960036","4":"-0.4864366","5":"6.266938e-01"},{"1":"factor(Year)95","2":"-0.049200523","3":"0.04076784","4":"-1.2068465","5":"2.275880e-01"},{"1":"factor(Year)96","2":"-0.071348283","3":"0.04100497","4":"-1.7399911","5":"8.196486e-02"},{"1":"factor(Year)97","2":"NA","3":"NA","4":"NA","5":"NA"},{"1":"Black","2":"-0.093987152","3":"0.02056272","4":"-4.5707541","5":"5.059482e-06"},{"1":"LowIncome","2":"-0.301724263","3":"0.02010515","4":"-15.0073141","5":"4.081902e-49"},{"1":"Georgia:After","2":"0.023436792","3":"0.05841043","4":"0.4012433","5":"6.882701e-01"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] ] -- .pull-right[ .smallest[ - By de-meaning data, using `fixest` ] .tiny[ .code70[ ```r library(fixest) DND_fe_controls_2 <- feols(InCollege ~ Georgia*After + Black + LowIncome | factor(StateCode) + factor(Year), data = hope) DND_fe_controls_2 %>% tidy() ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["term"],"name":[1],"type":["chr"],"align":["left"]},{"label":["estimate"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["std.error"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["statistic"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["p.value"],"name":[5],"type":["dbl"],"align":["right"]}],"data":[{"1":"Black","2":"-0.09398715","3":"0.01273233","4":"-7.381769","5":"0.0007172767"},{"1":"LowIncome","2":"-0.30172426","3":"0.03066188","4":"-9.840369","5":"0.0001846526"},{"1":"Georgia:After","2":"0.02343679","3":"0.01281838","4":"1.828374","5":"0.1270331132"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] ] -- .smallest[ `$$\widehat{\text{InCollege}_{it}}=0.023 \, (\text{Georgia}_i \times \text{After}_{it})-0.094 \text{Black}_{it}-0.302 \text{LowIncome}_{it}$$` ] --- # Our Example, Generalized, with Controls II .font40[ .regtable[
(1)
(2)
(3)
Intercept
0.4058 ***
(0.0109)
Georgia
-0.1052 **
(0.0378)
After
-0.0045
(0.0159)
Georgia x After
0.0893
0.0914 ***
0.0234
(0.0489)
(0.0056)
(0.0128)
Low Income
-0.3017 ***
(0.0307)
Black
-0.0940 ***
(0.0127)
Fixed Effects
None
State & Year
State & Year
N
4291
4291
2967
R-Squared
0.0019
0.0115
0.1036
SER
0.4893
0.4875
0.4731
*** p < 0.001; ** p < 0.01; * p < 0.05.
] ] --- # Our Example, Generalized, with Controls II .center[ ![:scale 60%](../images/dynarski_hope_2.png) ] .source[Dynarski, Susan, 1999, “Hope for Whom? Financial Aid for the Middle Class and its Impact on College Attendance,” *National Tax Journal* 53(3): 629-661] --- # Intuition behind DND .pull-left[ - Diff-in-diff models are the quintessential example of exploiting .hi[natural experiments] - A major change at a point in time (change in law, a natural disaster, political crisis) separates groups where one is affected and another is not---identifies the effect of the change (treatment) - One of the cleanest and clearest causal **identification strategies** ] .pull-right[ .center[ ![](../images/legalmarijuanamap.png) ] ] --- class: inverse, center, middle # Example II: “The” Card-Kreuger Minimum Wage Study --- # Example: ”The” Card-Kreuger Minimum Wage Study I .content-box-green[ .green[**Example**]: *The* controversial minimum wage study, Card & Kreuger (1994) is a quintessential (and clever) diff-in-diff. ] .source[Card, David, Krueger, Alan B, (1994), "Minimum Wages and Employment: A Case Study of the Fast-Food Industry in New Jersey and Pennsylvania," *American Economic Review* 84 (4): 772–793 ] --- # Card & Kreuger (1994): Background I .pull-left[ - Card & Kreuger (1994) compare employment in fast food restaurants on New Jersey and Pennsylvania sides of border between February and November 1992. - Pennsylvania & New Jersey both had a minimum wage of $4.25 before February 1992 - In February 1992, New Jersey raised minimum wage from $4.25 to $5.05 ] .pull-right[ .center[ ![](../images/panj.png) ] ] --- # Card & Kreuger (1994): Background II .pull-left[ - If we look only at New Jersey before & after change: - **Omitted variable bias**: macroeconomic variables (there's a recession!), weather, etc. - Including PA as a control will control for these time-varying effects if they are national trends - Surveyed 400 fast food restaurants on each side of the border, before & after min wage increase - .hi-purple[Key assumption]: Pennsylvania and New Jersey follow parallel trends, - **Counterfactual**: if not for the minimum wage increase, NJ employment would have changed similar to PA employment ] .pull-right[ .center[ ![](../images/panj.png) ] ] --- # Card & Kreuger (1994): Comparisons .center[ ![:scale 25%](../images/CardKreuger1.png) ] --- # Card & Kreuger (1994): Summary I .center[ ![:scale 65%](../images/CardKreuger2.png) ] --- # Card & Kreuger (1994): Summary II .center[ ![:scale 65%](../images/CardKreuger3.png) ] --- # Card & Kreuger (1994): Model .smallest[ `$$\widehat{\text{Employment}_{i t}}=\beta_0+\beta_1 \, \text{NJ}_{i}+\beta_2 \, \text{After}_{t}+\beta_3 \, (\text{NJ}_i \times After_t)$$` - PA Before: `\(\beta_0\)` - PA After: `\(\beta_0+\beta_2\)` - NJ Before: `\(\beta_0+\beta_1\)` - NJ After: `\(\beta_0+\beta_1+\beta_2+\beta_3\)` - **Diff-in-diff**: `\((\text{NJ}_{after}-\text{NJ}_{before})-(\text{PA}_{after}-\text{PA}_{before})\)` ] -- .smallest[ | | PA | NJ | **Group Diff** `\((\Delta Y_i)\)` | |----|---------|-----------|---------------------------| | Before | `\(\beta_0\)` | `\(\beta_0+\beta_1\)` | `\(\beta_1\)` | | After | `\(\beta_0+\beta_2\)` | `\(\beta_0+\beta_1+\beta_2+\beta_3\)` | `\(\beta_1+\beta_3\)` | | **Time Diff** `\((\Delta Y_t)\)` | `\(\beta_2\)` | `\(\beta_2+\beta_3\)` | **Diff-in-diff** `\(\Delta_i \Delta_t: \beta_3\)` | ] --- # Card & Kreuger (1994): Results .center[ ![:scale 65%](../images/CardKreuger5.png) ]